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

Report Vs Module-pool

Former Member
0 Likes
599

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
543

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..

3 REPLIES 3
Read only

Former Member
0 Likes
544

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..

Read only

Former Member
0 Likes
543

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

Read only

Former Member
0 Likes
543

Hi,

I solved my problem .

Thanks for ur replies.

lakshmi.