cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 
Read only

Issue with map layers without data

0 Likes
1,128

Hi Experts,

After upgrading Lumira Designer from 2.2 to 2.3, we had a problem with the map.

It shows error :"Could not find member "Unscheduled Off-Hire" of dimension "_mzTL0GJ-EeilqNQcuKS7hQ" in selection "{"Keyfigures": "_qi4b8GJ-EeilqNQcuKS7hQ", "_mzTL0GJ-EeilqNQcuKS7hQ": "Unscheduled Off-Hire"}". It may have been filtered out.".

The application worked correctly in version 2.2 and showed an empty map if no data. How can we solve this problem? Application shows error even if layer without data invisible.

SAP Lumira Designer Release 2.3 SP2 Patch 1 (Version: 23.2.1)

Thanks
Julia

View Entire Topic
mario_panzenboeck
Contributor
0 Likes

Hello Julia,

it seems that you are using a data selection and when the query result is empty the selection string couldn“t be found.

Create a small script and check if the DataSource Result is empty and in that case change the layer to invisible.

if (DS_1.isResultSetEmpty();)

{

MAP_1.setLayerVisible(layerId, isVisible);

}

Give it a try and let me know if this is solving your problem.