Application Development 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: 

ALV REPORT (urgent)

Former Member
0 Kudos

In alv report how to link to particular transaction code plz Explain with the code

3 REPLIES 3

Former Member
0 Kudos

Hi,

Please refer to the link below :

http://www.sapdev.co.uk/reporting/alv/alvgrid_enhanced.htm

Thanks,

Sriram Ponna.

P.S. Don't post the duplicate query.

Former Member
0 Kudos

try

FORM user_command USING r_ucomm LIKE sy-ucomm

rs_selfield TYPE slis_selfield.

CASE r_ucomm.

WHEN 'BACK' OR 'CANC' OR 'EXIT'.

LEAVE TO SCREEN 0.

WHEN '&IC1'.

READ TABLE itab INDEX rs_selfield-tabindex.

SET PARAMETER ID 'MAT' FIELD ITAB-MATNR.

SET PARAMETER ID 'WRK' FIELD ITAB-WERKS.

SET PARAMETER ID 'CSV' FIELD ITAB-STLAN.

CALL TRANSACTION 'CS03' AND SKIP FIRST SCREEN.

ENDCASE.

*ENDFORM. "USER_COMMAND

Former Member
0 Kudos

Hi,

Please refer to the link below :

http://www.sapdev.co.uk/reporting/alv/alvgrid_enhanced.htm

Thanks,

Sriram Ponna.

P.S. Don't post the duplicate query.