Approval Related List with a Relationship
November 22, 2016
Tags: ServiceNow Related List Approvals Relationship
When implementing an approval workflow in ServiceNow you may consider adding a related list showing all the related approval records on approving record.
Out of the box you cannot add the related list as the approval record (sysapprover_approval) uses a Document ID field rather than a reference. However you can create a relationship between the two table which will allow you to add the related list. The relationship is just a set of queries on the approval table to filter out irrelevant records.
Create a Relationship with the following values
- Name: [Your table name] Approvals
- Applies to table: [Your table name]
- Queries from table: Approval [sysapprover_approval]
- Query with:
(function refineQuery(current, parent) {
current.addQuery('source_table', parent.getTableName());
current.addQuery('document_id', parent.getUniqueValue());
})(current, parent);