Hi
I need to start multiple Instances of a Process using a Click event of a Submit Button.
Each instance may or May not have the Same data passed at each instance.
The Idea was to have multiple rows for users to fill in data like name, age, city etc .
Each row may have same information or Each row may have Different information.
Scenario 1 : There are 2 Rows and each row has same information. Same info is repeated.
Then, when the user clicks on Submit, it should raise 2 separate cases with the 1st case has 1st row as Data and 2nd case has 2nd row info as Data.
Scenario 2 : There are 2 rows of Data and each row has different records.
On clicking Submit, the 1st case should be raised with the 1st row information,and the 2nd case should have the 2nd row as information or Data.
Now, I use a Living app Page(Application Page) outside portal to instantiate a process.
And there in the Submit Button, I set the Action as POST and pass values like
< return “/bonita/API/bpm/process/” + process.id +“/instantiation”; > to instantiate the process once.
What Should I be doing to raise Multiple instances ( Cases) and How to pass different set of data for each instance /case raised using a Single Button click instance.
Kindly Help
Thanks