‎2010 Sep 20 6:13 AM
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
‎2010 Sep 20 6:34 AM
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