How to link to a process dashboard from process backed record

I have a process backed record type with grid style record list.  Building an interface and wanted to provide a link from the first column so it can take the user to the process dashboard. How this can be achieved? I tried using the below in summary view.

rule!formattedLinkToDashboard(rf!pp.id,""). It doesn't seem to work and returns a blank page.

Also, in interface, this is what  i have.

a!gridTextColumn(
label: "PR Number",
field: "MilestoneSchedule.ReqNumber",
data: index(local!datasubset.data.MilestoneSchedule, "ReqNumber", null),
links: a!forEach(
items: local!datasubset,
expression: a!recordLink(
label: "Go to record view",
recordType: cons!MP_ALL_MILESTONE_SCHEDULES_RECORD,
identifier: fv!identifier,
dashboard: "summary"
)
)
)

  Discussion posts and replies are publicly visible

Parents
  • troubleshooting...

    from the docs, the following is all you need to construct a link to process-backed record.

    =a!recordLink(
      label: "Employee",
      recordType: cons!PROCESS_RECORD,
      identifier: "268435504",
      dashboard: " _KcRefg"
    )

    in isolation, can you get the following to work?

    a!recordLink(
    label: "Go to record view",
    recordType: cons!PROCESS_RECORD,
    identifier: /*test with a good known identifier*/
    /*you should be able to omit the dashboard parameter because you're only passing in the default right now*/
    
    )

Reply
  • troubleshooting...

    from the docs, the following is all you need to construct a link to process-backed record.

    =a!recordLink(
      label: "Employee",
      recordType: cons!PROCESS_RECORD,
      identifier: "268435504",
      dashboard: " _KcRefg"
    )

    in isolation, can you get the following to work?

    a!recordLink(
    label: "Go to record view",
    recordType: cons!PROCESS_RECORD,
    identifier: /*test with a good known identifier*/
    /*you should be able to omit the dashboard parameter because you're only passing in the default right now*/
    
    )

Children
No Data