The 7.9 SAIL Receipe: Display Data with CDT Fields from a Record in a Grid

The 7.9 SAIL Receipe: Display Data with CDT Fields from a Record in a Grid
forum.appian.com/.../SAIL_Recipes.html

says "Let's use the process-backed record from the Records Tutorial. ", but the Records Tutorial doesn't use a CDT.

And the resulting SAIL Code below doesn't work when I adapt to a Record using a CDT.

How do you adapt this approach, for that matter anything produced by the Report Builder to a CDT?

Thanks,
Gregg


load(
local!pagingInfo: a!pagingInfo(
startIndex: 1,
batchSize: 20,
sort: a!sortInfo(
field: "expenseItem",
ascending: true
)
),
with(
local!datasubset: queryrecord(
cons!EXPENSE_REPORT_RECORD,
a!query(
selection: a!querySelection(columns: {
a!queryColumn(field: "expenseItem"),
a!queryColumn(field: "expenseAmount"),
a!queryColumn(field: "pp.initiator", alias: "initiator")
...

OriginalPostID-152536

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data