Dear Amit,
You can achieve this by building a string via the compute string.The Compute string is defined via the <compute-string> element under the mail element of data schema.
Example: Suppose we have recipeint table
<srcSchema name="recipient" namespace="nms">
<element name="recipient">
<compute-string expr="@lastName + ' ' + @firstName +' (' + @email + ')' "/>
...
</element>
</srcSchema>
Result: Krishna Gupta (krishna.gupta@xyz.com)
By using Compute string we can show necessary fields out of all for all records in a interface view.
Regards,
Krishna Gupta
Clik here to view.
