Hi,
I have a grid, where in a dynamic link will be there. If i click on the link, the selected row should be passed as parameter to another process model.
In the 1st process model, i have added process variables.
if i click the link in grid, nothing is happening.
how to achieve this?
Discussion posts and replies are publicly visible
a!dynamicLink( saveInto: a!startProcess( processModel: <Add your PM constant>, processParameters: { processVar1: fv!row } ) )
If you want to directly go to the start form of that process, I recommend a a!startProcessLink() instead of a a!dynamicLink().
yes..navigation happens..but im getting the below error in target while loading target process model
You need to mark that variable as "parameter" in the process properties.
It is working.Thanks