cancel
Showing results for 
Search instead for 
Did you mean: 

Dimension Description

Former Member
0 Kudos

Is there anyfunction to get the Dimension Description in SAP Lumira Designer Studio 2.1??

EX: Dimension type: Entity

Dimension name: R_Entiry

Dimension description: Entities for Rate Application

Dim ID = 2

Now, I need to get the Dim Description where DIM ID = 2 - any standard function or any other way to get the description of a dimension ??

I know that we are able to get it in this way :

var Desc_1 = '';
var Desc = KPI_1_VALUE.getMembers("_cewm8EFuEein5PDd1bxF1w",1);
Desc.forEach(function(Dim_Desc, Dim_i)
{
if (Dim_i==1) {Desc_1 = Dim_Desc.internalKey;}
} ); TEXT_1.setText(Desc_1);

But Is there any faster way ?

Thank you for your help.

sapna_jgurudutt
Active Contributor
0 Kudos

Hi,

What is the exact version, SP level and Patch Level you are using for Lumira Designer?

Thanks & Regards,

Sapna

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

No idea, Where I can find this info??

Do you know maybe how to select the dimension filtered by other dimension?

var member = DS_1.getMember(‘customer_Name’ , {“customer_id” : “153”});

and display selected cusomer Name : member.text.

Any idea ??