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

Click events

Former Member
0 Likes
514

Hai All,

I have developed a program which displays the following:

Billing Doc.No

Material Number

Material Description

Quantity

My requirement is when i double click the billing doc no (VBELN) it should go to VF03 transaction to view the other details of that billing number.

How can i do this?.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
485

Hi Vennila,

If you report is normal classical then follow the below hint.

DATA : G_LOCAL TYPE <tablename>-<VBELN>.

AT LINE-SELECTION.

READ LINE SY-LILLI FIELD VALUE ITAB-VBELN.

G_LOCAL = ITAB-VBELN.

CALL TRANSACTION VF03.

if you dont want first screen then use.

CALL TRANSACTION 'VF03' and skip first screen.

Cheers!!

VEnk@

Hai All,

I have developed a program which displays the following:

Billing Doc.No

Material Number

Material Description

Quantity

My requirement is when i double click the billing doc no (VBELN) it should go to VF03 transaction to view the other details of that billing number.

How can i do this?.

3 REPLIES 3
Read only

Former Member
0 Likes
485

Function code for double click is 'PICK', SEARCH the forum with PICK for more examples.

Regards

Karthik D

Read only

Former Member
0 Likes
486

Hi Vennila,

If you report is normal classical then follow the below hint.

DATA : G_LOCAL TYPE <tablename>-<VBELN>.

AT LINE-SELECTION.

READ LINE SY-LILLI FIELD VALUE ITAB-VBELN.

G_LOCAL = ITAB-VBELN.

CALL TRANSACTION VF03.

if you dont want first screen then use.

CALL TRANSACTION 'VF03' and skip first screen.

Cheers!!

VEnk@

Read only

0 Likes
485

Thank you venkat. Thanks for your timely help.