Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

multiple variants to a report

Former Member
0 Kudos

Hi,

Is there any command to pass multiple variants to a report?

Here is the situation, i have a selection screen where i can select 5 different variants for a report and when i execute i should be able to pass the functionality of all the variants to a standard report at once. Is that possible? Can i use SUBMIT command to pass multiple variants?

Thanks,

Bhuvan.

1 REPLY 1

Former Member
0 Kudos

You can submit it 5 times from a driver program:


REPORT ztest.
submit zprog 
  USING SELECTION-SET var1
  and return.
submit zprog 
  USING SELECTION-SET var2
  and return.
.
.
.
submit zprog 
  USING SELECTION-SET var5
  and return.

Rob