on ‎2017 Jun 08 8:12 AM
Hi,
I have packed material in shipment document and on the basis of the packing material I want to determine freight in the shipment cost document.
But, while creating shipment cost document, system is unable to determine the packaging information and hence not determining the freight.

With regards,
Samyak
Request clarification before answering.
Hi,
"on the basis of the packing material"
So I assume your calculation base is C - Handling units or E - per handling unit. Is the ShipMatlType in the condition type correct? This must be the packaging material type of your packaging material.
Otherwise a more detailed information about the log would probably be helpful.
Brgds
Juergen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you check whether condition record is maintained for that combination ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can use include "ZXV54U03" for determine packing material in cost calculation. The code is below.
FIELD-SYMBOLS: <wa_vbplk> TYPE vbplk.
READ TABLE i_refobj-vbplk INDEX 1 ASSIGNING <wa_vbplk>.
IF sy-subrc IS INITIAL.
c_komp-vhilm = <wa_vbplk>-vhilm.
ELSE.
CLEAR c_komp-vhilm.
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 39 | |
| 26 | |
| 21 | |
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.