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

Urgent help

Former Member
0 Likes
614

HI,

I need help in interactive ALV Repot. When i executed the report, it is displaying the material Doc number ,material etc in grid layout.

my requirement is , when i double click on material Document number , it has to show the sales order number, salesorder item and Delivery number. Same thing is required for when i click on material also.

please help me in this.

regards,

Ram

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
597

Hi,

Check the following link:

http://www.sap-img.com/abap-function.htm

Regards,

Bhaskar

HI,

I need help in interactive ALV Repot. When i executed the report, it is displaying the material Doc number ,material etc in grid layout.

my requirement is , when i double click on material Document number , it has to show the sales order number, salesorder item and Delivery number. Same thing is required for when i click on material also.

please help me in this.

regards,

Ram

3 REPLIES 3
Read only

amit_khare
Active Contributor
0 Likes
597

Create hot spot and call it in USER command in the ALV event.

Regards,

Amit

Read only

Former Member
0 Likes
598

Hi,

Check the following link:

http://www.sap-img.com/abap-function.htm

Regards,

Bhaskar

Read only

Former Member
0 Likes
597

create hotspots for those field.

sample code......

case r_ucomm.

when '&IC1' .

read table outtab index rs_selfield-tabindex.

case rs_selfield-fieldname.

when 'VBELN'. "material doc

set parameter id 'AGN' field rs_selfield-value.

call transaction 'VA23' and skip first screen.