Hi,
I would like to do the follow after clicked the 'Tick'
1. SubmitForm
2. Run the FLOW
3. Navigate to next Screen
However, it returns error as shown below
1. SubmitForm (Success, and write to MSSQL)
2. Run the FLOW (Failed)
3. Navigate to next Screen (Success)
Anybody can help?
Thanks in advance
Sam
Solved! Go to Solution.
Once the form is submitted the information in ComboBox becomes cleared. Therefore no data is being passed to your Flow. However, you can access data from the last successful form submission using the LASTSUBMIT property. Instead of the ComboBox1 you will need to reference fieldname though.
For example: let's say ComboBox1 submits information to the applicant field. To retrieve the applicant displayname and pass it to the flow you should change your RUN code to this. Note: applicant appears to be lowercase so I did not capitalize the fieldname
'DB-LeaveApplication2'.Run(Form1.LastSubmit.applicant.DisplayName)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Once the form is submitted the information in ComboBox becomes cleared. Therefore no data is being passed to your Flow. However, you can access data from the last successful form submission using the LASTSUBMIT property. Instead of the ComboBox1 you will need to reference fieldname though.
For example: let's say ComboBox1 submits information to the applicant field. To retrieve the applicant displayname and pass it to the flow you should change your RUN code to this. Note: applicant appears to be lowercase so I did not capitalize the fieldname
'DB-LeaveApplication2'.Run(Form1.LastSubmit.applicant.DisplayName)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi @samsam
When you want to take actions after a form has been Submitted you should put those actions into the Form's "OnSuccess" Property. Then these actions will only happen if the Submit was successful, as you don't want to navigate away if there are validation errors on your form.
As @mdevaney says, you should use the FormName.LastSubmit.FieldName construct to get the data to pass to your Flow.
User | Count |
---|---|
196 | |
124 | |
88 | |
49 | |
42 |
User | Count |
---|---|
284 | |
163 | |
138 | |
75 | |
73 |