Legal Service Delivery - External Signatory Details to NDA generation

Aaron Duncan
Mega Sage

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.

AaronDuncan_0-1736790326319.png

This is where it should generate.

 

 

AaronDuncan_2-1736790400374.png

 

1 REPLY 1

Sanyam Bhagat
Tera Expert

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;