[SOLVED] Group error in the log

Hi,
my sitemap looks like this
sitemap default label=“Home” {
Group item=LivingRoom{
Frame label=“Reciver” icon=“receiver” {
Switch item=VSX923_Zone1Power
Switch item=VSX923_Zone1SetInputSource mappings=[06=“Yes”, 15=“AppleTV”, 22=“PlayStation”]
Slider item=VSX923_Zone1VolumeDimmer
Setpoint item=VSX923_Zone1VolumeDb minValue=-80 maxValue=0 step=1
Switch item=VSX923_Zone1Mute mappings=[ON=“Mute”, OFF=“Un-Mute”]
}
}
Text item=iPhone_Home
}

and i got the below errors

2019-01-04 16:56:29.409 [INFO ] [el.core.internal.ModelRepositoryImpl] - Refreshing model ‘default.sitemap’

2019-01-04 16:56:29.516 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:29.520 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:29.523 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:29.527 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:56.851 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:56.854 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:56.858 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:56.862 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:56.997 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:57.001 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:57.005 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:56:57.009 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:57:27.353 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:57:27.360 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item ‘LivingRoom’ for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:57:27.365 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

2019-01-04 16:57:27.372 [ERROR] [ui.internal.items.ItemUIRegistryImpl] - Cannot retrieve item for widget org.eclipse.smarthome.model.sitemap.Group

can anyone explain why i have the errors?

There is probably an error in your items file and it’s not loaded
What does the logs say when you save the items file?

this is my item file
/Living Room Reciver/
String VSX923_DisplayInformationDisplayInformation “Display” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:displayInformation#displayInformation”}
Switch VSX923_Zone1Power “Power” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:zone1#power”}
Dimmer VSX923_Zone1VolumeDimmer “Volume” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:zone1#volumeDimmer”}
Number VSX923_Zone1VolumeDb “Volume” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:zone1#volumeDb”}
Switch VSX923_Zone1Mute “Mute” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:zone1#mute”}
String VSX923_Zone1SetInputSource “Input” (GlivinRoon) {channel=“pioneeravr:ipAvr2014:5F9EC1B3-ED59-79BB-4530-745e1c317d54:zone1#setInputSource”}

/Barak’s Iphone/
String BatteryStatus “Battery Status” {channel=“icloud:device:8389ea07:d7b5aab3:batteryStatus”}
Location BarakLocation “Location” {channel=“icloud:device:8389ea07:d7b5aab3:location”}
Switch iPhone_Refresh “Force iPhone Refresh” {channel=“icloud:device:8389ea07:d7b5aab3:location”, autoupdate=“false”}
String iPhone_Home “Barak Home”

haven’t got any error while saving

i have removed the group and seems like everything is OK now, why?

Because the group wasn’t defined?

Your sitemap entry -

This tells the UI to find and display a Group type Item named LivingRoom.

This error message tells you that a group called LivingRoom cannot be found.

So we need to look at your Items file.
The items you have shown us do not include any group called LivingRoom.
So, there’s the problem.

Some of the Items you’ve shown us have (GlivinRoon)
That means they should be made members of a group called GlivinRoon - but there isn’t one of those either.

You have to define Groups just the same way as you define an Item.
An example items file

Group mygroup "this is an example group"
Number thisItem "this is a group member" (mygroup)
Switch thatItem "another group member" (mygroup)

To show the group on a sitemap, this is all that is needed

Group item=mygroup

The UI will display the member items

thanks, that solved the issue