How to auto populate "Assignment Group" field present on the RITM record ['sc_req_item' table]Issue The requirement is to auto-populate the "Assignment Group" field present on the 'sc_req_item" tableResolutionThis can be achieved by adding a "Run Script" activity to the workflow that is associated with the catalog item or Create a before insert business rule on 'sc_req_item' table with following script which basically auto populates the "Assignment Group" field with Fulfillment group that is defined on the Catalog item. //Set fulfillment group from item definitionif(current.cat_item.group){current.assignment_group = current.cat_item.group;}