Record not opening in Site

HI All,

I m trying to open record summary view in SITE from interface using below code:

a!gridColumn(
              label:"Type",
              value:a!linkField(
                links: a!safeLink(
                  label:fv!row.requestId,
                  uri: "https://XXX/suite/sites/facilitator"&                
                  a!recordLink(
                    /*label:fv!row.recordType,*/
                    recordType: cons!requestRecordType,
                    identifier: fv!row.requestId
                  ).@attributes.@anyAttribute._recordRef & "/view/summary/",
                  showWhen:true()

                )
              )
            ),

Although I m trying to access the link using admin id I am getting below error

Please suggest how to rectify this error. I have given security setting for every object i.e: interface, site, application,datastore, record n all

Thanks,

Ankita Singh

  Discussion posts and replies are publicly visible

Parents Reply
  • We have a dashboard where after applying filters and then clicking search button we are getting records that is being displayed in grid layout a section below the filter section.

    So we want to the user to be able to view the summary of that record on the same interface once he click on record link.

    So on trying record link it's leading the user to new window tab that too in tempo so just to provide consistency in the interface i want to get it opened in site. It would be great if there is any way to provide the user feasibility to open the record details on the same interface.

    Thanks,

Children