Service Catalog - Flow not triggering for itemsSummaryThe flow is not showing on the requested item after submitting the request. InstructionsThe Request approval was not set to approve by the default workflow when the request got created. The reason for not triggering the approval is the request is not set to approval from the workflow.It should be set from the default workflow or it can customized with the simple business rule.Sample code: var gr = new GlideRecord('sc_request');gr.get('614b59271bc46010411e80f4464bcb95');gr.approval='approved';gr.update();