Hi there,
I have a scenario where i need to change the display name of a record field value. Is it possible to do that while configuring 'Reporting Record Types' ?
ex. my record filed has the value 'SME' but i need to display it as 'Subject Matter Expert' (there is no related table to fetch the expanded value) on the frontend while we display the report. Is it doable in EUR?
Thanks in Advance!
Discussion posts and replies are publicly visible
You can have a logic to pass the short form and get desired text to display. Please check the example below
a!localVariables( local!references:{ a!map( short:"ABC", Full:"Apple Banana Carrot" ), a!map( short:"SME", Full:"Subject Matter Expert" ), a!map( short:"SPD", Full:"Space Patrol Delta" ) }, index( local!references.Full, wherecontains( "SME", local!references.short ), null ) )
Hi Soma, Thanks for the suggestion. But in EUR App, i don't find a way to call expression rules which has rule inputs.
However, this issue is now resolved by making use of 'custom Record Fields'.
Thankyou!