Hi,
I am having a report with ALV Grid control and upon clicking material it should call a Transaction (Ex MM03) and the corresponding matnr should appear in the called transaction selection-screen.
How can I do this.
right now, I have used ALV Grid Hotspot = 'X'.
and in the User Command in the event "&IC1" ,
IF rs_selfield-value IS NOT INITIAL.
CASE rs_selfield-fieldname.
WHEN 'MATNR'.
SET PARAMETER ID 'MAT' FIELD WA_TAB-MATNR.
CALL TRANSACTION 'ZLEU01' .
endcase.
endif.
but I couldn't get the result, which I want.
Can you pls help me.
Regards,
Srinivas