2008 Nov 08 6:06 AM
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?.
2008 Nov 08 6:24 AM
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?.
2008 Nov 08 6:15 AM
Function code for double click is 'PICK', SEARCH the forum with PICK for more examples.
Regards
Karthik D
2008 Nov 08 6:24 AM
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@
2008 Nov 08 6:26 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |