Unexpected number of parameters

Hi All,

In the tempo report I am getting the attached error request you to please help in this regards.

Thanks & Regards
Ambrish

OriginalPostID-154943

OriginalPostID-154943

  Discussion posts and replies are publicly visible

Parents
  • I had a similar requirement to show a link to record dashboard summary / views on grid. Here is how I implemented it.


    a!gridTextColumn(
    label: "Action",
    field: "name",
    data: if(
    rule!APN_isEmpty(
    local!data
    ),
    {},
    repeat(
    length(
    index(
    local!data,
    "name",
    {}
    )
    ),
    "View"
    )
    ),
    links: apply(
    a!safeLink(
    URI: _
    ),
    {
    repeat(
    length(
    local!data
    ),
    rule!COMMON_getLinkToRecordDashboardSummary(
    ri!int_applicationId

    )
    )
    }
    )
    )

    Where COMMON_getLinkToRecordDashboardSummary is
    =urlforrecord(cons!COMMON_RECORD_TYPE_APPLICATIONS,ri!int_applicationId).

    You can do apply on COMMON_getLinkToRecordDashboardSummary to generate link for different application dashboard summary.
Reply
  • I had a similar requirement to show a link to record dashboard summary / views on grid. Here is how I implemented it.


    a!gridTextColumn(
    label: "Action",
    field: "name",
    data: if(
    rule!APN_isEmpty(
    local!data
    ),
    {},
    repeat(
    length(
    index(
    local!data,
    "name",
    {}
    )
    ),
    "View"
    )
    ),
    links: apply(
    a!safeLink(
    URI: _
    ),
    {
    repeat(
    length(
    local!data
    ),
    rule!COMMON_getLinkToRecordDashboardSummary(
    ri!int_applicationId

    )
    )
    }
    )
    )

    Where COMMON_getLinkToRecordDashboardSummary is
    =urlforrecord(cons!COMMON_RECORD_TYPE_APPLICATIONS,ri!int_applicationId).

    You can do apply on COMMON_getLinkToRecordDashboardSummary to generate link for different application dashboard summary.
Children
No Data