cancel
Showing results for 
Search instead for 
Did you mean: 

ALV interactive Report

Former Member
0 Kudos

Dear Expert,

I have one HR Report, In Report there are three radiobuttons, When we are clicking on first radiobutton it is showing Leave data as a leave card which is in Flat report format, And another radiobuttonen is for Displaying ALV Reports.

Now my Requirement is when user ckick on Radiobutton 3, it display some employee data in ALV format, Now user wants when user click on particular employee data in ALV report, It should dislpay data of first radiobutton which i am displaying data in Flat Format,

Can i call radiobutton When user click on any Employee data? Please help me.

I have also done one thing I have seprated Radiobutton 1 data in different report and have assigned tcode as zhr106.

and in my ALV report i used CALL TRANSACTION. Now it is displaying that report but the problem is it is not picking data of first report when it goes to second report, I have attached code below:

FORM user_command USING r_ucomm TYPE sy-ucomm

rs_selfield TYPE slis_selfield.

CASE r_ucomm.

*User clicks a transaction code and that tcode is called from ALV

WHEN '&IC1'.

READ TABLE int_dept INDEX rs_selfield-tabindex INTO wa_dept.

IF sy-subrc = 0.

CALL TRANSACTION 'ZHR106'.

ENDIF.

endcase.

endform.

Please have a look

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

issue Solved by using given below link.

Edited by: shelly Malik on Jul 3, 2009 10:00 AM