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

Issue with map layers without data

0 Likes
1,070

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

Accepted Solutions (0)

Answers (3)

Answers (3)

0 Likes

hello julia_gorelova !!

Have you got any solution to your issue

0 Likes

Hello, Rajesh!
No, I can`t find. I solved this problem by writing a script. For example, I wrote a script where all map layers become invisible if the result set is empty after filtering the data source.

0 Likes

Hello Mario!

I had already tried to do this, but it didn't work. The error is displayed even if the layer is hidden.

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.