Display TS_ID and TS_UUID in Reports

Hello!

Is there a way to display TS_ID and TS_UUID fields on the SBM UI using the reports?

Thanks!

Tags:

Parents
  • 0

    You can create a Query View Advanced Report, aka Advanced XML Report.  Your query inside that will need to return the TS_ID and TS_UUID columns twice; once with the "TS_ID" or "TS_UUID" alias, and again with a different name, such as "TS_TS_ID" or "TS_TS_UUID" (yes, "TS_" is repeated)

    The "TS_ID" and "TS_UUID" aliases are "consumed" by the XML report.  Add entries to the "<fields>" section to display the duplicated colums, for example the "TS_TS_ID" alias can be displayed as "TS_ID".

    Why do you want to do this??

Reply
  • 0

    You can create a Query View Advanced Report, aka Advanced XML Report.  Your query inside that will need to return the TS_ID and TS_UUID columns twice; once with the "TS_ID" or "TS_UUID" alias, and again with a different name, such as "TS_TS_ID" or "TS_TS_UUID" (yes, "TS_" is repeated)

    The "TS_ID" and "TS_UUID" aliases are "consumed" by the XML report.  Add entries to the "<fields>" section to display the duplicated colums, for example the "TS_TS_ID" alias can be displayed as "TS_ID".

    Why do you want to do this??

Children