2009 Oct 06 8:13 AM
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
2009 Oct 06 8:16 AM
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
2009 Oct 06 8:16 AM
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.
2009 Oct 06 8:18 AM
2009 Oct 06 8:20 AM
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.