Hi All. I am fetching some rows from a table and storing each column in a partic

Hi All. I am fetching some rows from a table and storing each column in a particular process variable. The values are being stored in the process variable, separated by a comma. Now how would I extract or use one such value from the process variable.Say there are 3 values in one process variable and I would one to use each of them individually, how should I proceed? I have tried using some functions like split() but haven't been successful.

OriginalPostID-157905

OriginalPostID-157905

  Discussion posts and replies are publicly visible

Parents
  • Hi, yes the varaibles appear comma delimited in monitor mode - you will also notice them semicolon delimited in the variables tab of the designer interface, under that process instance. What are you attempting to do with those 3 variables once they are populated exactly?

    Also, you will not need the split() function - split() takes an input of text (single valued) and creates an array of items as a multiple variable - which you already have.
Reply
  • Hi, yes the varaibles appear comma delimited in monitor mode - you will also notice them semicolon delimited in the variables tab of the designer interface, under that process instance. What are you attempting to do with those 3 variables once they are populated exactly?

    Also, you will not need the split() function - split() takes an input of text (single valued) and creates an array of items as a multiple variable - which you already have.
Children
No Data