This is just my sample form:
The data source is a Sharepoint list.
Someone from the organisation would fill the Title, Description, Category and Assigns it to a manager. On the click of Manager Approval, I have used deeplinking to send the manager a link to the form.
When the manager opens, the form they would fill the sub category and Evaluation comments. Once they choose a manager approval, on click of submit to exec approval the form should be emailed to the person chosen in the manager approval.
My form works for the first half where its Assigned to a Manager and the manager can open the form and can view the selections. The Sharepoint list gets updated with the item.
Once the manager fills the details, and submits to exec approval it erases the category selections (multi select check boxes).
I’m using a Submit Form function on the Submit to Exec Approval.

On Select of manager approval which is the first half, I’m using the formula below
SubmitForm(Form2);
CheckboxPA.Run(Form2.LastSubmit.ID);
On select of the Submit to Exec Approval, how do I retrieve the Sharepoint list ID of the particular record to be updated?