
Announcements
Patch(
'Review Findings',
ForAll(
colReviewLinesOriginal,
{
'Review Line': LookUp(
'Review Lines',
'Review Line - ID' = colReviewLinesOriginal[@'Review Line - ID']
),
Visit: LookUp(
'Visit Overview',
'Visit Overview' = gblVisitOverview
)
}
)
message": "Prepare statement failed: SQL logic error (1) - no such column: new_reviewline0.new_ReviewArea"
ClearCollect(
colReviewLinesTemplate,
//This filter isn't required from a process perspective, but without it the patch below will still fail.
Filter(
'Review Lines',
Status = 'Status (Review Lines)'.Active
)
);
ForAll(
colReviewLinesTemplate,
Collect(
colReviewLinesPlaceholders,
{
reviewLine: ThisRecord,
reviewLineVisit: First(colVisitOverview)
}
)
);
Patch(
'Review Findings',
ForAll(
colReviewLinesPlaceholders,
{
'Review Line': reviewLine,
Visit: reviewLineVisit
}
)
)