Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var sysApp = new GlideRecord('sysapproval_approver');

sysApp.state = 'requested'; //set the state to requested
sysApp.sysapproval = current.sys_id; // set the 'Approval for' field with the current catalog task
sysApp.source_table = 'sc_task'; // set the source table field so that document ID table can be updated properly as it is dependent on source table field.
sysApp.source_table = current.sys_class_name; // set the source table field so that document ID table can be updated properly as it is dependent on source table field.
sysApp.approver = 'sys_id of the person for whom you want to trigger this approval'; // set the approver
sysApp.document_id = current.sys_id; //set the sys_id to populate correct value in the Approving field.

Expand Down
Loading