‎2006 Jul 22 3:16 PM
hi to all,
hi Manohar,
plz help me in alv,
after getting alv list out put when i double click on sales order field
it should display all my alv out put fields
in vertical way.
Message was edited by: sun deep
‎2006 Jul 22 3:23 PM
ALV interactive reports
Sample report
http://www.sap-img.com/abap/an-interactive-alv-report.htm
http://www.sap-img.com/abap/sample-programs-on-alv-grid.htm
You can activate hotspot in layout.
Regds
Manohar
‎2006 Jul 22 3:23 PM
ALV interactive reports
Sample report
http://www.sap-img.com/abap/an-interactive-alv-report.htm
http://www.sap-img.com/abap/sample-programs-on-alv-grid.htm
You can activate hotspot in layout.
Regds
Manohar
‎2006 Jul 22 5:50 PM
sun deep,
could you please explaion what you want?
after getting alv list out put...hould display all my alv out put fields
What does that mean?
If your ALV output list does not show all fields of your output table, then a layout (variant) is active or something is wrong with the field catalog.
So this question is not general but specific and can be answered knowing specificv context as display table structure and field catalog contents.
Regards, Clemens
‎2006 Jul 22 8:03 PM
Hi Sun deep,
You need to handle the double click event in this case...
If you are using ALV grid,
Set a event handler..
SET HANDLER gr_event_handler->handle_double_click FOR gr_alvgrid .
Handle the event in a form..
FORM handle_hotspot_click USING i_row_id TYPE lvc_s_row i_column_id TYPE lvc_s_col is_row_no TYPE lvc_s_roid.
If its a ALV list,
handle it in the event
AT LINE SELECTION
Once this is done, you need to call a screen where you populate the row data where you double clicked into the respective fields in the pop up screen.
Regards,
Tanveer.
<b>Please mark helpful answers</b>