Hi all,
I integrated ServiceNow SDIM in Atlas and I need to add a custom field which contains the requested item’s name and description. But I could not find an example velocity expression for this. Is there anyone who has an example? Thanks in advance!
Hi @sahincelik,
Please refer the below link it might be helpful for you!
ServiceNow SDIM - Adding New Custom Attributes - Identity Security Cloud (ISC) / ISC Discussion and Questions - SailPoint Developer Community
Thank you
Refer below velocity template documentation: Apache Velocity Engine - User Guide This guide will help you to build expression that you need.
Thank you.
I found the expression for this.
#foreach($request in $plan.requests) Requested Access Name: $request.resource #if($request.items) #foreach($item in $request.items) Access Details: $item.name = $item.value #end #end #end
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.