I am trying to create a link between a Report to Record. Having two reports (PQR

I am trying to create a link between a Report to Record. Having two reports (PQR and XYZ) and records (PQR and XYZ) respectively. Both reports having same ID. Link between same report and record is working fine (i.e., from report PQR -> record PQR and from report XYZ to record XYZ). While trying link between report PQR -> record XYZ throwing an error "The record data does not exist, has been deleted, or you do not have sufficient privileges to access it. (APNX-1-4205-006)" as the ID is same its throwing error.

a!recordLink(
label: "Go to record view",
recordType: cons!XYZ
identifier: _,
dashboard: "summary"
)

OriginalPostID-156909

OriginalPostID-156909

  Discussion posts and replies are publicly visible

Parents
  • When I pass the process ID at identifier as below.
    links: apply(
    a!recordLink(
    label: "Go to record view",
    recordType: cons!siteViewCustLoc,
    identifier:"2782",
    dashboard: "summary"
    ),

    local!datasubset.identifiers
    )
    In interface its showing below error,
    "Could not display interface. Please check definition and inputs.

    Interface Definition: Expression evaluation error at function 'apply' [line 86]: A rule or function reference is expected as the 1st parameter. "
Reply
  • When I pass the process ID at identifier as below.
    links: apply(
    a!recordLink(
    label: "Go to record view",
    recordType: cons!siteViewCustLoc,
    identifier:"2782",
    dashboard: "summary"
    ),

    local!datasubset.identifiers
    )
    In interface its showing below error,
    "Could not display interface. Please check definition and inputs.

    Interface Definition: Expression evaluation error at function 'apply' [line 86]: A rule or function reference is expected as the 1st parameter. "
Children
No Data