‎2006 Nov 25 3:47 AM
When trying to open a contract from a program I am facing problem.
The Transaction is VA43 for which I write the following lines:
SET PARAMETER ID 'AUN' FIELD lv_vbeln.
CALL TRANSACTION 'VA43' AND SKIP FIRST SCREEN.
where lv_vbeln is defined :
DATA: lv_vbeln LIKE vbak-vbeln
MY PROBLEM is that VA43 doesnt get the value I sent it. Even checked in Debug. Pl. let me know what should be done.
‎2006 Nov 25 3:54 AM
Hi,
use the following..
SET PARAMETER ID <b>'KTN'</b> FIELD VBAK-VBELN.
Thanks,
Naren
‎2006 Nov 25 3:51 AM
‎2006 Nov 25 3:52 AM
Use KTN as parameter id...
The following parameters are available for the individual document types:
AFN - Inquiry number
AGN - Quotation number
AUN - Order number
LPN - Scheduling agreement number
KTN - Contract number
AMN - Assortment number
‎2006 Nov 25 3:54 AM
Hi,
use the following..
SET PARAMETER ID <b>'KTN'</b> FIELD VBAK-VBELN.
Thanks,
Naren