I'm using the LastSubmit function to grab the ID (OnSuccess Property) and then using Patch Function to update SharePoint Column called TicketID.
TicketID created is for example CAT-000"ID"
All of the above steps are working, but I want to show the TicketID created to the user after they click on Submit Button
Problem is the LastSubmit + Patch functions take longer to run than code execution, so the TicketID field is blank (even though it is created on the backend)
I'm using this function to call the TicketID after the Patch Function
Set(varTicketID, "Formname", LastSubmit.TicketID)
I'm not able to get the TicketID show on the App
Thanks