- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2024 10:48 AM
Hi All
I am trying to create a email client template which shows up on all catalog_tasks under certain conditions, everything works except I am not able to display the Universal request number instead of the sctask number, I tried ${parent.parent.number} field but returns a empty value, also tried ${universal_request.number}, i received the same empty value, if I use ${number} it shows the Sctask number. How can I access the UR number? I tried the same in Requested Item table, and i was able to show the Universal request number there.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2024 11:29 AM
Hey @gramalingam
I think you need to dot walk through the universal_request field to get the UR number. so for example:
current.universal_request.number
If you need this to be dynamic, then you probably need an Email Script where you check if universal_request is empty. If it is, then just use current.number.
Hope this helps!
~Nick

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2024 11:29 AM
Hey @gramalingam
I think you need to dot walk through the universal_request field to get the UR number. so for example:
current.universal_request.number
If you need this to be dynamic, then you probably need an Email Script where you check if universal_request is empty. If it is, then just use current.number.
Hope this helps!
~Nick