2015 May 19 10:34 AM
|
2015 May 19 10:44 AM
Hi Priya,
use set parameter id in the program RBNK_MERGE_RESET and
get parameter id in your program to fetch screen input's.
Regards,
Ashish
2015 May 19 11:25 AM
2015 May 19 11:20 AM
Hi Priya,
Try to access the data in the ABAP stack, as its a standard program you will not be able to use SET PARAMETER ID/ GET PARAMETER ID as an option.
Best Regards,
Debo.
2015 May 19 11:35 AM
Hi Debo,
Can you please help, how to use the ABAP Stack?
Regards,
Priya
2015 May 19 11:50 AM
Hi,
So, try in the new debugger. On your right panel you get to see the ABAP stack(Memory) wherein you can try to find the selection screen values. I am not sure, but this should be the right approach if you are not trying to modify or enhancing the standard program.
BR,
Debo
2015 May 19 11:30 AM
Hi,
You can try this way.
As you are calling standard program so try for implicit enhancements.
And take values and store values either by using IMPORT/EXPORT or SET PARAMETER/GET PARAMETER.
or...store values in a custom table and after returning to the actual program read values from the custom table.
Regards
Raj
2015 May 19 3:29 PM
2015 May 19 1:37 PM
Can you explain what would you like to achieve after capturing the selection screen values?
Thanks,
Juwin
2015 May 19 2:15 PM
HiJuwin,
1. I will run my custom program.
2. In that custom program I will call the report rbnk_merge_reset using submit the statement
3. Then the user will enter the selection screen values and run the transaction.
4. Then it will return back to my custom program.
5. Then I want to use that selection screen values to fetch some data in standard tables.
Regards,
Suresh
2015 May 19 2:45 PM
What you could do is to create same selection screen as in rbnk_merge_reset then call it whenever user want to go to this program, but in submit use WITH SELECTION-TABLE addition passing all variables from your own select options. This way you have all the values directly in your program.
2015 May 19 3:50 PM
Hi Priya,
As per me, method given by Łukasz Pęgiel is the way forward.
Thanks,
Juwin
2015 May 19 3:26 PM
HI Priya in My opinion you could.
1-Copy the standard program and get the screen value by code when it is executed.
and use the new way to import to memory.
See the examples of this link.
or.
2-create a enhacement in standard program and get the screen value by code when it is executed
and use the new way to import to memory.
See the examples of this link.
I think could to work .
hope helped you.