2007 Dec 21 8:58 AM
Hello,
We are trying to get the internal order field from a SD order to FI into the segment field when doing the SD billing.
We believe that the right user exit is EXIT_SAPLV60B_004, but since we have no experience with the include ZXVVFU04, we don't know how to write the enhancement...
existing code :
&----
*& Include ZXVVFU04
&----
The following is moreless the logic we would like to get in this code:
IF BKPF-BLART = 'RV' AND BSEG-KOART = 'D'
BSEG-SEGMENT = 'BSEG-AUFNR'
Can anybody please give me a hint on how to write the code in this include?
Thank you very much in advance!
2007 Dec 21 10:26 AM
Hi Lan,
I don't know if it is the right exit, but your coding could be:
IF XACCIT-BLART = 'RV' AND XACCIT-KOART = 'D'
XACCIT-SEGMENT = XACCIT-AUFNR.
ENDIF.
Regards,
John.
2007 Dec 21 10:26 AM
Hi Lan,
I don't know if it is the right exit, but your coding could be:
IF XACCIT-BLART = 'RV' AND XACCIT-KOART = 'D'
XACCIT-SEGMENT = XACCIT-AUFNR.
ENDIF.
Regards,
John.
2007 Dec 21 8:08 PM
Thank you very much, this pointed me in the right direction!
2007 Dec 21 12:42 PM