‎2008 May 14 11:53 AM
Hi Experts,
My requirement :
When iI click on the emp id in the list then a module-pool prgm is called where i need to carry the particular emp id into to the module-pool screen where i am clicking .
How to bind the emp id into the call transaction(module-pool)
Thanks in advance.
lakshmi.
‎2008 May 14 12:07 PM
Hi,
I think for empid you will have some parametrid.that you can check thru se11 tcode .
assign that empid value to paramert id.
in the user-command of the report program write some code like
call transaction 'Ztran_emp'.
If empid field is not in initial screen then add skip initial screen to the call transaction stmt after tcode.
Thanks
Parvathi
Please reward points if helpful..
‎2008 May 14 12:07 PM
Hi,
I think for empid you will have some parametrid.that you can check thru se11 tcode .
assign that empid value to paramert id.
in the user-command of the report program write some code like
call transaction 'Ztran_emp'.
If empid field is not in initial screen then add skip initial screen to the call transaction stmt after tcode.
Thanks
Parvathi
Please reward points if helpful..
‎2008 May 14 12:44 PM
Hi,
Please try this..... pass corresponding empid to EID field and then call transaction.
SET PARAMETER ID 'EID' FIELD LV_EID.
CALL TRANSACTION <tcode> AND SKIP FIRST SCREEN.
If its useful reward points
‎2008 May 17 2:12 PM