I have a document having three string fields of a employee or student. I need to append the details of each employee and store it in a string list and displays the same as output .
Help out this newbie… I have tried some ways but not working out
Thank You in Advance:)
Your description of the requirement is ambiguous, so I assume that you have a Document List with 3 String variables for each employee/student in that list.
If so, then this is how -
- Loop over the DocList Input array and add the next steps inside the loop
- Invoke pub.string:makeString and map the 3 String variables (using the Index map property) to concatenate with a separator
- Map this concatenated String to a target String List via one of these options -
3.a Use the Output array feature (loop property)
3.b The Index feature with a counter variable (map property)
3.c Invoke pub.list:appendToStringList service (not a preferred option)
If you are using makeString, you need to know the number of String variables to append (it’s 3 in your case), at design-time.
Reference Guides
A. Designer Service Development Help (link)
B. IS Built-in Services (link)
KM
1 Like
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.