Opening the Record summary View link from email

Hi,

I have a scenario,

If anyone opens an email( contains one URL) and If they click on that link(Record summary view URL) then it should be directly navigated to that particular record summary view.

How can we append that unique Identifier to the record summary URL? 

Your suggestions are valuable

Thanks In Advance,

 

 

Thanks, And Regards,

Aswini

  Discussion posts and replies are publicly visible

Parents
  • Hi Aswini,
    If you have unique id(identifier) in process model which is triggering the email then you can pass that unique id into an expression rule .The expression rule will return a record summary link appended with unique id.
    You may refer below code to create exp. rule.

    with(
    local!siteUrl: cons!YOUR_SITE_URL,
    local!sitePage: cons!YOUR_SITE_PAGE,
    local!record: index(
    index(
    a!recordLink(
    recordType: cons!RECORD_TYPE,
    identifier: ri!uniqueId
    ),
    "@attributes"
    ),
    "@anyattribute",
    null
    )._recordRef,
    local!siteUrl & "/page/" & local!sitePage & "/record/" & local!record & "/view/summary"
Reply
  • Hi Aswini,
    If you have unique id(identifier) in process model which is triggering the email then you can pass that unique id into an expression rule .The expression rule will return a record summary link appended with unique id.
    You may refer below code to create exp. rule.

    with(
    local!siteUrl: cons!YOUR_SITE_URL,
    local!sitePage: cons!YOUR_SITE_PAGE,
    local!record: index(
    index(
    a!recordLink(
    recordType: cons!RECORD_TYPE,
    identifier: ri!uniqueId
    ),
    "@attributes"
    ),
    "@anyattribute",
    null
    )._recordRef,
    local!siteUrl & "/page/" & local!sitePage & "/record/" & local!record & "/view/summary"
Children
No Data