‎2007 Dec 17 12:00 PM
Dear All
The Devlopment All Tcodes are assign single screen
which will i select tcode that tcode run
how will assign all tcodes?
Thanks and Regards
Suresh
‎2007 Dec 17 12:30 PM
Hi Suresh,
All T-codes are will be present in Table TSTC. Write a qurey slecting all the t-codes from the TSTC and display every tocde in one screen. After clicking on particular t-code that t-code should be saved in one variable and then use call transaction statement give the varible name in single codes in which the t-code saved and it will run that t-code.
<b> hope this will help u some...</b>
reward points if useful
Regards,
sunil kairam.
‎2007 Dec 17 12:47 PM
Hi,
REPORT zstemp.
PARAMETERS : tcode LIKE tstc-tcode.
DATA:itab LIKE tstc OCCURS 0 WITH HEADER LINE.
START-OF-SELECTION.
SET PARAMETER ID 'TCD' FIELD tcode.
CALL TRANSACTION tcode . " 'XK03'.
SELECT * FROM tstc INTO TABLE itab UP TO 1000 ROWS.
LOOP AT itab.
WRITE:/ itab-tcode.
ENDLOOP.
Please use copy the above code in se38 and run once and then change according to your requirement...
Thanks
Sivaparvathi
Please reward points if helpful..........
‎2007 Dec 18 3:49 AM
hi Siva Parvathi
Thanks for your replying
i want module pool program
Thanks Regards
Suresh
‎2007 Dec 18 5:03 AM
A module pool program is easy
create a screen 100
add module pbo name module pbo_100.
and a pai module module pai_100 just after the respective event statement in flow logic of the screen
in the main report call the screen first
and call module pbo as
module pbo_100 output.
enter the desired code here where what you need to be done that is the above code
endmodule.