BPM Data Form Button Call another Data Form

HI,
I am just getting started learning about Data Forms. My goal is to ask a user if they want to use the Data Form to enter part number information or just go to the Part Maintenance screen. We don’t have configurator so we are trying to develop a mini custom one. I have the BPM form firing that asks them if they want to use the configurator form but I don’t know how to make an answer of YES launch the next form. The instructions (little blurb) in the ICE book are clear as mud.
Thanks
Melissa

Have 2 Data Forms
In your BPM call the First One then in the same BPM use a conditional check and if the value of CallContext.ButtonValue = 1111 (Or whatever the value you assigned to yes) then call the other BPM Data form.
So rather than having the first Data Form call the Second Data Form, let the BPM workflow take care of that for you

3 Likes

Thanks :slight_smile: