Creating document list in DSP and passing to flow service

Hi All,

I have a dsp page which returns some values from a db in a table like structure (with text boxes as inputs). My question is, I can populate more rows but how do I append these rows to the underlying document list and then pass the new list to a flow service??

Thanks

hi JP,

i had the same problem and what I did was to write a small java script within DSP that concats the multiple values into a single string delimated by comma (,)
with the flow (invoked from DSP), I used “pub.string.tokenize” to break the comma delimated string into string list.

hope this helps.