‎2008 Sep 15 11:13 AM
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
‎2008 Sep 16 4:32 PM
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
‎2008 Sep 16 3:44 PM
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.
‎2008 Sep 16 4:32 PM
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