HI Experts,
i will working for that simple alv display the report . when ever user double click on that go to next scren . i will work for ECC 6.0 and function module is REUSE_ALV_LIST_DISPLAY i will write the logic is
at user-command
SET PARAMETER ID 'LIF' VALUE FVAL.
CALL TRANSACTION 'LF03' AND SKIP FIRST SCREEN.
so any body plz help me.
advance thanking u.
Hi
try this code...
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = W_PROG I_CALLBACK_USER_COMMAND = 'PICK' I_STRUCTURE_NAME = 'EKKO' TABLES T_OUTTAB = T_EKKO EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2 . IF SY-SUBRC <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. *&--------------------------------------------------------------------* *& Form pick *&--------------------------------------------------------------------* * -->UCOMM text * -->SELFIELD text *---------------------------------------------------------------------* FORM PICK USING COMMAND LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD. READ TABLE T_EKKO INTO FS_EKKO INDEX SELFIELD-TABINDEX. CASE COMMAND. WHEN '&IC1'. SET PARAMETER ID 'LIF' VALUE FS_EKKO-EBELN. "here write your field name CALL TRANSACTION 'LF03' AND SKIP FIRST SCREEN.
Add a comment