Tempo Report which has in the first column a link to the related process record

Hi, I am trying to do a Tempo Report which has in the first column a link to the related process record (the grid without links works). I wrote this SAIL but the link shows only in the first row.


= with(
local!datasubset: rule!getAllInvestments(
a!pagingInfo(
startIndex: 1,
batchSize: - 1,
sort: {
field: "InvestmentMain.InvID",
ascending: false
}
)
),
a!gridField(
totalCount: local!datasubset.totalCount,
columns: {
a!gridTextColumn(
label: "ID",
data: local!datasubset.data.InvestmentMain.InvID,
links:a!recordLink(
recordType: cons!INVESTMENT_RECORD,
identifier: local!datasubset.identifiers
)
),
a!gridTextColumn(
label: "Amount",
data: local!datasubset.data.InvestmentMain.BusinessUnit,
alignment: "RIGHT"
)
},
value: a!pagingInfo(
startIndex: local!datasubset.startIndex,
b...

OriginalPostID-97197

OriginalPostID-97197

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data