Dynamic selection values in report

jde1228

Active Member
Can anyone tell me how to get the Dynamic selection values a user gives it before running a report. I would like the values to be printed on page header.
Thanks,
 
jde1228,

I didn't know the answer in general.

1.) You can figure out what data items are used in selection using the
CheckDataSelection/Sequence
system function.

2.) If it is not a general requirement then there are two ways to solve the problem:

I.) Promt for selection values in the Processing option, drop the user selection in the init section of your driver section and build the selection with ER, playing with
ClearUserSelection
SetSelectionAppendFlag
SetUserSelection
system functions. This way you can print PO values.

II.) Create an interactive form to prompt for slection values and call the UBE via form interconnect and drop the user selection in the init section of your driver section and build the selection with ER, playing with
ClearUserSelection
SetSelectionAppendFlag
SetUserSelection
system functions. This way you can print RI values.

Hope could be a bit help.

Zoltán
 
Thanks for your response. Actually, I knew the PO workaround but I was just wondering if there is anything we use to print the values user dynamically selected at run time.
 
Back
Top