I'm attempting to navigate to the ViewTicketScreen for the ticket being submitted, so that a PDF can automatically be emailed upon submittal. Here is the code I currently have:
Collect(
'FCR SKU List',
col_SKUs
);
SubmitForm(Form2);
ResetForm(Form2);
ResetForm(Form2_1);
Set(RunFlow,true);
Clear(col_SKUs);
ClearCollect(
AllTickets,
'RequestTickets'
);
Navigate(ViewTicketScreen,ScreenTransition.Fade);
The problem is that when I am navigated to the ViewTicketScreen, it is taking me to an older ticket and not the one currently being submitted.