I'm using Retrieve Business Process Variables to get records from a Forms table. The end goal is to get tokens that include delimited values. Some parts of the record will be single value, such as vendor number and GL Date, but other parts of the record will contain multiple values, separated by a delimiter.
If I loop through the table using For Each Row, the data looks like this:
I only care about \account and \total and the goal is to get values that look like this:
Account: 2230.8620/2230.8515
Total: 4995.00/17.76
I'll use these values in tokens to pass to a SQL stored procedure:
@VendorNumber: 999999
@GLDate: 8/2/2023
@Account: 2230.8620/2230.8515
@Amount: 4995.00/17.76
So, my question is how to update the token values for Account and Amount (Total) to include multiple values separated by a delimiter?
Thanks!