Getting "Workflow undefined, maybe missing global qualifier" error while submitting requestIssue While submitting a record producer or from backend the below error is shown:"Workflow undefined, maybe missing global qualifier" Note: Well it will not impacting the flow but still this error should not come on the page.ReleaseAllCauseIn a custom business rule could see they are starting the workflow. The workflow will anyways start when the record is inserted based on the condition why explicitly again a BR is present to do the same?Custom business rule with below code logic: var wflw = new Workflow();wflw.startFlow(wflw.getWorkflowFromName('<item/record producer name'), current, 'update'); Note: Deactivating the business rule resolved the issue.ResolutionModify the business rule according to the requirement.