How to update RITM & REQ fields from the catalog item's workflowSummaryHow to update RITM & REQ fields from the catalog item's workflowInstructionsREQ's fields: add a run script activity on the cat item's workflowthis workflow runs against the RITM's recordwith that said, we need to query for the REQ record on the [sc_request] table using the value in current.requestand then glide record update for the update to take effect RITM's fields: For the RITM, it's much easier because the RITM's fields can be accessed via the current variableso if we wanted to update the short description, we would do the following:current.short_description = "Some new short description";we do not want to do an current.update() here, becuase the workflow will do it for us when it ends