Multi Select while form interconnction without using temp table.

SYS1902

Member
How we can pass multiple values while form interconncetion. without using temp table.
I have one find browse form and headerless detail form. I want to display the multiple values selected on grid into headerless detail while form interconncetion.
 
I can't think of a way, unless you create caching BSFNs.

But there's no harm in a workfile, providing you use it correctly

Depending on what the key to the file is, if it's simple, like AN8 you could add them a UDC and then re read back the UDC in the next screen?

No harm in a workfile though
 
You could also convert the values into strings and concatenate them together with a delimiter into a single large string (make sure it is big enough for the number of selections) that you feed to the FI. I have done this on multiple occasions for certain applications (with custom NERs to create / parse the delimited string).

I try to avoid temp tables like the plague as well.
wink.gif
 
Back
Top