
Hi
I'm trying to use three screen which is for three different forms (i,e three separate SharePoint list).
So depending on the request user will get a submit or arrow button (to go to the second screen). So the same will happens in the second screen too.
So submit button will submit all the three forms depending on the request.
Is it possible to do this or do i need to use 3 forms on the same screen.
The requirement is the user no need to create three separate request but to be able to submit one request to create the three requests. Hope what I'm saying make sense.
Just to be clear, three screens will not have the same forms
Can guide me ? Maybe I can use Patch instead of Submit(Form). If so how to get the user entries of the previous screen?
I think you might have two ways, the first way is to collect every form details in a collection, and then on the last button use patch function and patch all details from the collections that you filled on each screen,
OR
you can have one submit button and on the OnSelect property :
SubmitForm(Form1);
SubmitForm(Form2);
SubmitForm(Form3)
PS : make sure that details are not cleared when you navigate to the next screen before you use one button to submit all forms in a different screens.