Post Provisioning operation- workflow - Catalog Task activity makes the workflow stuckIssue If a workflow is added as Post Provision Operation, and Catalog Task activity is used on the workflow, then when launching the Cloud Catalog Item from Cloud User Portal, the post provision workflow will get stuck on the Catalog Task, even if the task is already closed. As a result, the provisioning will get stuck at post provision stage.ResolutionOpen out of the box business rule: SNC - Run parent workflows Then add below after the if section: else { var grnew = new GlideRecord('wf_workflow_execution'); grnew.addQuery("sys_id", current.parent.toString()); grnew.query(); if (grnew.next()) { new Workflow().broadcastEventToCurrentsContexts(grnew, 'update', null); } }