Application Development and Automation 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: 
Read only

Solution Manager

Former Member
0 Likes
444

Hi Gurus's

Please tell me in The Solution-manager i.e in the report

RSTWB_USER_WORK_LIST

hOW TO GIVE THE PARAMETER AS SELECT-OPTION AND RUN THE TRANSACTION TO GET THE DETAILS MULTIPLES.

Thanks

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
418

Hello Arbind

Before making a z-copy of the standard report analyze it whether the data you are interested it are somehow accessible from outside (e.g. when they are exported to the ABAP memory).

If so then you can write a simple report having just the selection-screen of the standard report (parameter replaced by select-option).

Within this frame report you LOOP over the new select-option and call the standard report via SUBMIT... AND RETURN.

You collect the returned data for each run and afterwards gather the data together.

Regards

Uwe

2 REPLIES 2
Read only

Former Member
0 Likes
418

Hi,

In standard report we cannot pass multiple values to a parameter variable,

we can copy to Z... and change the variable to select-options OR declare

ranges for the parameter variable and use it in the select query.

Read only

uwe_schieferstein
Active Contributor
0 Likes
419

Hello Arbind

Before making a z-copy of the standard report analyze it whether the data you are interested it are somehow accessible from outside (e.g. when they are exported to the ABAP memory).

If so then you can write a simple report having just the selection-screen of the standard report (parameter replaced by select-option).

Within this frame report you LOOP over the new select-option and call the standard report via SUBMIT... AND RETURN.

You collect the returned data for each run and afterwards gather the data together.

Regards

Uwe