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

alv

Former Member
0 Likes
591

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

1 ACCEPTED SOLUTION
Read only

Manohar2u
Active Contributor
0 Likes
561

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

3 REPLIES 3
Read only

Manohar2u
Active Contributor
0 Likes
562

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

Read only

Clemenss
Active Contributor
0 Likes
561

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

Read only

Former Member
0 Likes
561

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>