Skip to Content
0
Former Member
Feb 17, 2011 at 04:12 AM

Interactive ALV list Problem

66 Views

Hi All

I have developed ALV report which is working fine

while i double click on one record i need to call another transaction code i.e "COHV" which is also working fine

and the value is not population to that transaction code.

I have written code like this

CASE r_ucomm.
    WHEN '&IC1'.

      READ TABLE ta_final INTO wa_final INDEX rs_selfield-tabindex.
      IF sy-subrc = 0.
        IF rs_selfield-fieldname = 'AUFNR'.
          SET PARAMETER ID 'ANR' FIELD wa_final-aufnr.
*          GET PARAMETER ID 'ANR' FIELD rs_selfield-value.
          CALL TRANSACTION 'COHV'." AND SKIP FIRST SCREEN .
        ENDIF.
      ENDIF.
  ENDCASE.

this is not working

now i came to know that is t-code for a report selection screen how to pass the value to that

Please help me

Surendra