Skip to main content
August 21, 2023
Question

Redirect user from record list to interface

  • August 21, 2023
  • 9 replies
  • 0 views

I want to redirect user to my interface instead of summary page. How can we achieve it? Below the screenshot from where currently i am redirecting user to record summary page but now i want to redirect user to interface.

9 replies

August 21, 2023

using startprocesslink i am able to redirect to some other interface.

a!startProcessLink(label:"test",processModel: cons!PDB_PROJECT_SUMMARY_VIEW),

ignacio.moran
August 21, 2023

Hi Palasha, the best way following Appian best practices would be to create a new view for the record which contains your interface. Once you create the view, then you will be able to use the "dashboard" attribute in the a!recordLink() function.  

The dashboard attribute would be the URL Stub of your view.

Take a look to this documentation: 

https://docs.appian.com/suite/help/23.2/Record_Link_Component.html

I hope it helps. 

August 21, 2023

Currently, we have implemented in the same way by we have to achieve some additional functionality which is not possible to achieve through this way so have to use interface directly.

August 22, 2023

Thank you ignacio.moranmathieud0001 and stefanh0002 for your suggestions.