Application Development and Automation 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: 
Read only

Drill down using CL_SALV_TABLE

Former Member
0 Likes
1,217

Hi,

I want to create a drill down report. I am using CL_SALV_TABLE.

In my requirement I want to show another ALV when I am click on Material field in current displaying ALV. It should take it to another ALV, has related fields to Material.

How can I do using CL_SALV_TABLE

Thanks,

Bharani

1 REPLY 1
Read only

Former Member
0 Likes
686

Hi,

see the below example of oops concept

http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=60654876

and try to call agian CALL METHOD ref_grid->set_table_for_first_display inside the module exit input.


CASE ok_code.
    WHEN 'EXIT' .
      CLEAR ok_code.
      LEAVE PROGRAM.
   WHEN 'DOubleclick"
  ENDCASE.
endmodule.                 " exit  INPUT

Prabhudas