STO Delivery (NL) Automatic Pickup Billing Type in VF01
Dear friend,
I have created PO for STO and delivery (Delivery Type NL) through billing VF01, working fine. But when I create the Billing VF01, billing type (JEX) is not coming automatically. I am selecting manually the billing type.
I have already maintained the copy control (T-code - VTFL) against Delivery document to billing document. I canu2019t create the sale order type.
Is there any configuration or option to automatic pick up of billing type STO delivery(NL).
Useful answers duly rewarded
Devendra
Former Member replied
Devendra,
We have achieved teh same using USer Exit in Delivery (MV50AFZ1)
Form : FORM USEREXIT_MOVE_FIELD_TO_LIPS
Created one Z Table - ZBLTYP
with fields: Delivery type, WERKS, Prposed Billing Type
Codes for picking up as below:
SELECT SINGLE * FROM zbltyp
WHERE werks = lips-werks
AND lfart = likp-lfart
IF sy-subrc EQ 0.
likp-fkarv = zbltyp-fkarv.
ENDIF.
We have achieved automation based on Plant. If you do not need Plant as criteria then u can drop the logic accordingly.
Your techical person will help you in the same.
Sandeep