Hi, Yes I followed the instruction from beginning to end. For this test, the Triggering table is called Process and the column triggering the change is the Process Status. The record starts with Process Status set to 'Process Started', and the change that triggers the process is to go from 'Started' to 'In Progress'. These are the outputs I got from the URL recommended to find the StageID's for these two stages:
"@odata.etag": "W/\"3899021\"",
"stagename": "Process Started",
"processstageid": "255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e"
"@odata.etag": "W/\"3898419\"",
"stagename": "In Progress",
"processstageid": "9829544e-395f-4d71-8aee-1b9e9f59e09a"
So, after the trigger and setting up the variables, the switch is equal to the first stage: 255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e. It correctly routes me to the first stage path in the flow. I then set the variables as follows:
vTraversePath -- gets the Process Started ID: -- 255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e
vProcessDetails -- gets a concatenation of the first two stages -- this is the output from the variable step:
concat(variables(255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e, ‘,’,9829544e-395f-4d71-8aee-1b9e9f59e09a))
vProcessStageID is set to the 'In Progress' ID 9829544e-395f-4d71-8aee-1b9e9f59e09a
The Update a Row fails with this message:
"error": {
"code": "0x80060441",
"message": "Record for entity 'appbms_process' is not in the traversed path 'concat(variables(255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e, ‘,’,9829544e-395f-4d71-8aee-1b9e9f59e09a))'. Please contact your system administrator.",
"@Microsoft.PowerApps.CDS.ErrorDetails.0": "appbms_process",
"@Microsoft.PowerApps.CDS.ErrorDetails.1": "concat(variables(255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e, ‘,’,9829544e-395f-4d71-8aee-1b9e9f59e09a))",
"@Microsoft.PowerApps.CDS.InnerError.Message": "Record for entity 'appbms_process' is not in the traversed path 'concat(variables(255fb74d-45ab-a5b2-6c8d-5ce28bd7dd8e, ‘,’,9829544e-395f-4d71-8aee-1b9e9f59e09a))'. Please contact your system administrator."
}
This is how I set the Update a Row up: