Legal Service Delivery - External Signatory Details to NDA generation

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2025 09:47 AM
I am attempting to generate the Signatory Details on the contract, but when I set up the participant to put in the Name, Title, and Email from the catalog item, it doesn't set into the contract itself.
From the OOB Catalog Item, I have a participant called Vendor Representative Signatory, and following the description ServiceNow put in, it should set the information in, but it's not.
This is where it should generate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2025 02:22 PM
Try the below script once:
var ext_sign_Values = taskGr.variables.external_signatory_details;
var ext_sign_Array = JSON.parse(ext_sign_Values);
// Iterate through the rows
for (var i = 0; i < ext_sign_Array.length; i++) {
var row = ext_sign_Array[i];
// Access individual row values
var ext_Participant = {
//user: 'userSysId',
participantName: row.name,
participantEmail: row.email,
participantTitle: row.title
};
}
return ext_Participant;