Skip to main content
February 14, 2024
Question

How to link for Summary page of recordtype

  • February 14, 2024
  • 2 replies
  • 0 views

Hi [mention:126a676c85024855948336691b0a7b92:e9ed411860ed4f2ba0265705b8793d05] ,

I want to click the id number in which it should take me to the summary view of the particular page.This everything happens in send email smart service.Could you please help me.

Thanks,

Priyadharshini,S

    2 replies

    mathieud0001
    February 15, 2024

    I'm not [mention:126a676c85024855948336691b0a7b92:e9ed411860ed4f2ba0265705b8793d05] but I would recommend using the urlforrecord function:

    https://docs.appian.com/suite/help/23.4/fnc_scripting_urlforrecord.html

    If you want a Sites URL instead of the Tempo url, you can simply do some simple string substitution.

    a!localVariables(
      local!recordUrl: urlforrecord(
        recordType: 'recordType!{6c4d2c05-9651-42b9-af61-86a7c7a1d68b}ECP Organisation',
        recordIds: 1
      ),
      substitute(local!recordUrl, "tempo/records/item", "sites//page//record")
    )
    

    stefanhelzle0001
    February 15, 2024

    Thanks [mention:f5e81b8502fa4e77ad12697686a4fc56:e9ed411860ed4f2ba0265705b8793d05] for helping out :-)