Failing widget error when submitting order guideDescriptionOrder guides are not working when triggered from Lifecycle events.Steps to Reproduce 1) Create an Order Guide record2) Setup variable of the order guide: (this is the KEY)a) create a variable with type=requested_forb) set the default value to be 'javascript:gs.getUserId();' (this is the customer setup)3) create a hr template where hr_task_type=submit order guide, order_guide=newly created order guide from step 14) create an Activity where activity_type=employee, employee activity=hr task, hr task template=newly created template from step 35) create an HR Case with the above setting and check the behavior on service portal. we can see the same behaviorTo reproduce this issue more easily with the help of our hr demo data:1) Modify our OOB Order guide "New Hire Office Desk Request" (cf89d19c3b18081452ca655593efc4ce) by adding a new variable with step 2 from the above reproducible steps2) Create a new activity in Pre-hire activity set from our OOB LE Type "New Hire Onboarding (Demo)" (a889edd83b14405052ca655593efc458). Set HR template="Select Desk Type for your workspace"3) Create a new onboarding case and check the behavior on service portalWorkaroundAs a workaround, can we suggest the customers to clone the OOB SC Order Guide widget and create a custom widget. In that custom widget, please change below Server Script code (around line no. 10)Existing: `data.sys_id = $sp.getParameter("sys_id") || localInput.sys_id || options.sys_id;`New: `data.sys_id = localInput.sys_id || options.sys_id || $sp.getParameter("sys_id");`Related Problem: PRB1578491