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

getting internal table from standard report

Former Member
0 Likes
1,778

Hi experts.

Is there any way that i call wage type reporter (report name : H99CWTR0 and tcode : PC00_M11_WTK ) from a z program and get the internal table for further processing without displaying the alv of standard progam. I need the output of the standard progam as input data for processing of zprogram.

Thanks

1 ACCEPTED SOLUTION
Read only

rainer_hbenthal
Active Contributor
0 Likes
1,142

If there are no exits or BADis to store the iunternal table somewhere else you dont have a chance except of chekcing how the internal table is filled, maybe there are some function mdules or methods you can use.

Hi experts.

Is there any way that i call wage type reporter (report name : H99CWTR0 and tcode : PC00_M11_WTK ) from a z program and get the internal table for further processing without displaying the alv of standard progam. I need the output of the standard progam as input data for processing of zprogram.

Thanks

3 REPLIES 3
Read only

rainer_hbenthal
Active Contributor
0 Likes
1,143

If there are no exits or BADis to store the iunternal table somewhere else you dont have a chance except of chekcing how the internal table is filled, maybe there are some function mdules or methods you can use.

Read only

Former Member
0 Likes
1,142

Check the last post of this thread

[]

Read only

Former Member
0 Likes
1,142

One way is that u copy the entire program.

or u can try calling the program using submit

SUBMIT ... EXPORTING LIST TO MEMORY

exporting list to memory stores the basic list for the program accessed in the ABAP Memory. It can only be used together with the addition AND RETURN

then u can use The function module LIST_FROM_MEMORY loads the list from the ABAP Memory to an internal table of the row type ABAPLIST.