What is wrong with this statement?

What's wrong wit this statement?

I have an expression that contains:

                    a!gridLinkColumn(
label: "Title",
field: "title",
                     data:apply(a!safeLink(uri:_,label:_),merge(urlforrecord(cons!SR_ER_DATA,dataSubset.data.srid),dataSubset.data.title))
)

and my column comes out with the literal for he link i.e.
[@attributes=[@anyAttribute=[_cId:1__er_test@0@3_2__safelink_0], @nil=], uri=scrippsnetworksdev.appiancloud.com/.../summary, label=DIY Video Integration]...

OriginalPostID-90812

OriginalPostID-90812

  Discussion posts and replies are publicly visible

Parents
  • A minor change like this did work for me in v7.3 tempo report. an additional apply for urlforrecord(). Try and let me know if this helps
    apply(
                                   a!safeLink(uri: _, label: _),
                                   merge(
                                             apply(fn!urlforrecord(recordType: cons!MMS_MeetingDataType_VSAK, recordIds: _), local!datasubset.data.ProcessID),
                                             local!datasubset.data.Subject)
    )
Reply
  • A minor change like this did work for me in v7.3 tempo report. an additional apply for urlforrecord(). Try and let me know if this helps
    apply(
                                   a!safeLink(uri: _, label: _),
                                   merge(
                                             apply(fn!urlforrecord(recordType: cons!MMS_MeetingDataType_VSAK, recordIds: _), local!datasubset.data.ProcessID),
                                             local!datasubset.data.Subject)
    )
Children
No Data