Shipping Agent Service left blank defaults to DHL Intl...

yuppicideyuppicide Member Posts: 410
edited 2009-12-31 in Navision Attain
If we forget to put Shipping Agent Service on a Sales Order and print it (or Packing List), it will default to DHL Intl. Is there any way to fix this?

I went into the C/AL Code for Sales Header and found the following:
IF "Shipment Method Code" = '' THEN
  CLEAR(ShipmentMethod)
ELSE
  ShipmentMethod.GET("Shipment Method Code");

//BMIVO 10/04/02
ShipAgtSvcCode.SETFILTER(Code,"Sales Header"."Shipping Agent Service Code");
IF ShipAgtSvcCode.FIND('-') THEN
  Desc := ShipAgtSvcCode.Description;

The customer card shows UPS and GROUND.

On Picking Sheet it prints out blank.. I notice it's missing the second part of code after //BMI..

I would rather it populate blank than DHL.. we hardly ever use DHL. I only noticed this today while putting paperwork in a box to ship and saw DHL.. We don't have DHL pickup and I don't feel like dropping anything off.. it's about 5 or 7 minutes past my house.

Comments

  • matttraxmatttrax Member Posts: 2,309
    It would appear that you have a blank code with a description of DHL International. Just delete that entry from your available Shipping Agent Services, or change it from blank to DHL.
Sign In or Register to comment.