Get row data
This is pre-built Action located under the Element, instructs the Avo Assure to fetch the data from row or index from the web-based table and save the result in dynamic variable.
Syntax:
Input value: <Row Value> or <index;Row index>
<Row Value> (Required)
Row value: Provide the specific row value to retrieve entire row data
<index;Row index> (Required)
index: This is standard syntax for retrieving the row data {index;Row index} Row index: Specify the row index/number of the row you want retrieve.
Output Value:
<Dynamic Variable>(Optional)
This variable holds the data that has been retrieved.
<Dynamic Variable>(Optional)
This variable stores the status as true or false
Example 1
Get row data using row value (ORD1023) The Get Row Data action takes the value from the Input Value column (ORD1023) and retrieves all cell values from the row where this value is found. The retrieved row data is stored in the {RowData} variable, while the execution status is stored in the {Status} variable, with the following possible values:
Success – if the row is found and data is retrieved. Failure – if the row is not found or an error occurs

Example 2
Get row data using row index (index;2) The Get Row Data action takes the value from the Input Value column (index;2) and retrieves all cell values from the specified row index. The retrieved row data is stored in the {RowData} variable, while the execution status is stored in the {Status} variable, with the following possible values:
Success – if the row index exists and data is retrieved. Failure – if the row index is invalid or an error occurs.

Last updated