Hello,
Automation cannot filter specific rows in the child table from the data in the parent table.
The app has a parent table (purchase history) and one child table (details), which are connected by ref.
The child table has an id column for the parent table, which is a one-to-many relationship.
When the parent table is updated, an update event occurs and the following actions are taken:
-
Extraction of target rows
Do this: execute an action on set rows
Referenced Rows:
SELECT (details [status], AND ([_ THISROW]. [Id] = [id], [status] = âopenâ)); -
Set of data
Do this: set the values of some columns in this row
Set these columns: [status] = âcloseâ
However, it seems that the extraction is not successful even if I use the column [status] of the child table.
How can I update the status of a child table?