Reporting : How to show English Description of member in Cube view instead of Default Description?

NV
New Contributor

I am trying to create a Cube view report that should show English Description of Entity members istead of default Description. Is there any XF member property function to do the same or any other solution?

 

Thanks,

Neha

2 REPLIES 2

NicolasArgente
Valued Contributor

Hi NV,
Check that the user you are impersonnating has the required culture under System.
Go to your cube view and check Current under Culture.

NicolasArgente_0-1680261439771.png

 

Connect with me on:
LinkedIn: https://www.linkedin.com/in/nicolas-argente/
Website: https://aiqos.io
If you want to lift yourself up, lift up someone else.

ChristianW
Valued Contributor

With this, you can only change all cubeview descriptions to the selected culture, but if you use:

Ud1#[Ud1Member].base:name(|MfUd1Desc|) or f#[FlowMember].base:name(|MfFlowDesc|)

You can still show the description of the other dimensions.

With:

name(XFMemberProperty(DimType=Account, Member=|MFAccount|, Property=Text1), name(XFMemberProperty(DimType=Account, Member=|MFAccount|, Property=AccountType)

you can access member properties like Text1 or AccountType (including Description).

I wasn't able to access a culture with name(), but there might be a solution for it as well.

Cheers

Christian