I have been looking everywhere for information on how to implement this into an application/workflow but I can't seem to find anything.
I have a mileage/travel expense application that goes basically as follows:
Filled out by employee
Sent to manager for approval
Sent to payroll
When filled out by employee, they add a row for each time mileage needs to be accounted for. So, there could be 2 on the same day, but separate destinations. For example:
date starting point end destination mileage reinbursement
10/4/18 A B 20 $10.00
10/4/18 C D 15 $7.50
10/5/18 E F 10 $5.00
This form is built with a list view, editable, with add, save, delete, and edit rows buttons.
I would like the workflow to essentially send a "read only" copy of what was just filled out, the one sigular instance, for approval to the manager. Right now, I tried a non editable list view calling "get list" method which returns ALL items ever saved in the smart object. I only want what was stored in that particular instance, which is where they GUID would come in handy. My header essentially will have the employee name, and current date.
I just cannot find much information to walk me through how exactly to start that process.
Any help is appreciated.