Skip to main content
July 26, 2022
Question

process model navigation

  • July 26, 2022
  • 5 replies
  • 0 views

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?

    5 replies

    harshitb6843
    July 26, 2022

    a!dynamicLink(
      saveInto: a!startProcess(
        processModel: ,
        processParameters: {
          processVar1: fv!row
        }
      )
    )

    stefanhelzle0001
    Brainy
    July 26, 2022

    If you want to directly go to the start form of that process, I recommend a a!startProcessLink() instead of a a!dynamicLink().

    July 26, 2022

    yes..navigation happens..but im getting the below error in target while loading target process model

    harshitb6843
    July 26, 2022

    You need to mark that variable as "parameter" in the process properties.