Can not route back to list of records with filters when use startProcessLink to start interface

Certified Associate Developer

Hi,

In record type, I use a!startProcessLink to start interface from a item of record list. 

It must be that: Once "yes" button of Form is clicked user is routed back to list of records with filters being intact he has already applied for in client. 

But, when "Yes" button of form is clicked, it dose not like that, even that it can't return route list of record.

I don't know how to fix it.

  Discussion posts and replies are publicly visible

Parents Reply
  • Let's get the basics clear here. 
    Appian's record has 2 different interfaces that we are mixing up here. 

    1. Summary Interface
    2. Related Action interface. 

    You do not need a!startProcessLink to open a summary dashboard. Neither for a record action. But the difference between the two is. 

    Summary Dashboard is used when you want to show read-only information to the user about the record on which they have clicked. You can add it to the record itself. No need of a process

    Record Action is used to update the record (hence an editable form) which you can add in a process and then add the process to the record again. 

    So I don't find a need to use a!startProcessLink() here. 

Children