Good Evening folks,
I have requirements where we have multiple values which needs to be displayed to business users or Data Governance team.
Current Configuration : <field>start date</field><optional>, <field>end date</field></optional><optional>, <field>data value 1</field></optional><optional>, <field>data value 3</field></optional>
Values displayed in UI : 2016-09-21, 9999-12-31, 1111111, X, AAA, BBB-CCC-AAA
We are looking if there is way to configure in Inspector UI configuration file to display values like below :
Expecting Values to display in UI : start date : 2016-09-21, end date : 9999-12-31, idnumber : 1111111, Type: X, Model : AAA, Make : BBB-CCC-AAA
Is there any way we can configure the MDM project (inspector.arm file) to display above format.
Any input would be appreciated.
Answer by spiggle (82) | Sep 22, 2016 at 12:07 AM
When you look at the Inspector configuration it looks like the default is showing you your fields delimited by commas, in fact the commas are the literals that will be output. The default is comma separated, but you can simply change this to whatever you want, and as with comma separated you can make the literal optional based on whether the field exists or not.
eg
start date : <field>start date</field><optional>, end date : <field>end date</field></optional><optional> ..... and so on
Answer by Venkat Podatharapu (101) | Sep 22, 2016 at 04:34 PM
Thank you Very much Piggle, it works as per expected use case.