27-04-22 06:24 PM
Answered! Go to Answer.
27-04-22 09:31 PM
27-04-22 08:40 PM
27-04-22 09:31 PM
28-04-22 09:22 AM
//Attribute holds the value provided to the action: v3k1
i += Attribute.length + 2 //i is set to the character after: v3k1">
value = XML.substring(i) //value is set to: v3val1</key>
value = value.substring(0, value.indexof("""")) //right side of value is truncated to the first "
//if value = "v3val1"</key> then the result is " (I guess single " will be ignored in BP the result is therefore empty)
//if value = v3val1</key> then the result is v3val1</key> (ie until EOL) since no " is found
28-04-22 11:55 AM
29-04-22 08:17 AM
18-10-22 03:25 PM
<Field Name ="id" ><Value>12345<Value></Field>
<Field Name ="cycle-id" ><Value>67891<Value></Field>
Thanks in Advance!18-10-22 04:13 PM
18-10-22 05:59 PM
<Field Name ="id" ><Value>12345</Value></Field><Field Name ="cycle-id" ><Value>67891</Value></Field>
18-10-22 06:53 PM
<Fields>
<Field Name ="id" >
<Value>12345</Value>
</Field>
<Field Name ="cycle-id" >
<Value>67891</Value>
</Field>
</Fields>
And here's what my Get Elements call looks like: