Shipping Point Data

Hi,
  Shipping point data in R/3 For 2lis_01_s005 data source is showing zero records but values available in tables please help me in this reagrd
Prakash Bakthavachalam

hi yosuf,
Pl go to OVL2 ( Maintain shipping point determination ).for the combination of
shipping conditions ( from customer master, shipping tab) +
loading group ( from material master) +
plant ( delivering plant )
> shipping point
Maintain this.  Your issue will be fixed.
Pl reward if useful.
Thanks,
Sadhu Kishore

Similar Messages

  • Invoice List - Shipping Point (ShPt) VF24

    Good day, I run a invoice list t-code VF24, I get the results and because I need to process invoices for a same plant. So when I process the invoices into 1 invoice, everything works fine. When I cancel the invoice that I have just created, the ShPt(shipping point) does not show on the Invoice list (VF24). Can you advise me urgently on what needs to be done.

    The reason for this is that the invoice list has
    no item data. Please look at VBRP for any invoice list using transaction
    SE16.You will see there is no data, there is only header data recorded
    (VBRK).
    So as no item data was copied from the invoice to the invoice list
    (via item copy control), the shipping point data (an item field) is
    not copied across.  This is standard.
    So when you then cancel the invoice list, there is no shipping point
    data to write back to VKDFS.
    Please run the report RVV05IVB to resolve this

  • Loading Date\Time per Shipping Point

    Hello all
    we need to fill SO with certain values: on item level  "Loading Date" field (there should be value of next day after SO creation) and "Loading Time" ("_00:00_" value). These two fileds should be filled only for certain shipping points.
    Is it possible?

    Hi,
    It is not that easy.
    The time mentioned in the Delivery or Transportation scheduling mentions the lead time and not the date . The dates are decided by delivery scheduling namely backward or forward scheduling. In your case, if you want to control this in masterdata, you have to  maintain the procurement type of material as either inhouse  production or outward procurement. In either case, you have maintain the production or procurement lead time as just one day. In this case, the next day becomes the material availability date (MAD). The same date will also be updated as Loading date. Based on the loading leadtime maintained in the shipping point, the further dates will be decided.
    So the production or procurement lead time will decide when ur MAD will be and based on that ur loading date will be updated. Maintain ur masters accordingly in material and ur reqmt will be fulfilled.
    Hope this helps

  • Very urgent : shipping point and delivery creation date

    Hi :
    I have a custom table with fields :
    belnr, posnr, btyp, aufnr, ebeln, ebelp, livbeln, liposnr,matnr,wadat,kunnr,werks,bmeinh,getri,inaktiv,wabukz,erdat,aedat,loekz.
    Custom Transaction with fields :
    vbeln (field name belnr) , aufnr, delivery vbeln ( field name livbeln ),werks, mat .avail.dat ( mbdat ), transport.plan date(tddat),
    matnr, and sales order item (posnr).
    I have to select sales order , item from custom table based on plant (werks) shipping point , and delivery creation date.
    how can i relate shipping point and delivery creation date to my query.
    For delivery creation date, it should be selected based on current date+-2 and should choose MBDAT OR TDDAT which ever is earlier based on current date.
    I would appreciate if anyone can give me som idea and full points r rewarded.
    Thx.
    Rag

    Hi,
    Try this:
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep
    <b>on vbapvbeln = vbepvbeln and vbapposnr = vbepposnr</b>
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    regards,
    Anji

  • Shipping point , delivery creation date

    Hi :
      I have a custom table with fields :
    belnr, posnr, btyp, aufnr, ebeln, ebelp, livbeln, liposnr,matnr,wadat,kunnr,werks,bmeinh,getri,inaktiv,wabukz,erdat,aedat,loekz.
    Custom Transaction with fields :
    vbeln (field name belnr) , aufnr, delivery vbeln ( field name livbeln ),werks, mat .avail.dat (  mbdat ), transport.plan date(tddat),
    matnr, and sales order item (posnr).
    I have to select sales order , item from custom table based on plant (werks) shipping point , and delivery creation date.
    how can i relate shipping point and delivery creation date to my query.
    For delivery creation date, it should be selected based on current date+-2 and should choose MBDAT OR TDDAT which ever is earlier based on current date.
    I would appreciate if anyone can give me som idea and full points r rewarded.
    Thx.
    Rag

    Hi Pankaj,
    Please try to use BAPI 'BAPI_DELIVERYPROCESSING_EXEC' for creating delivery form sales order , you can pass value and create delivery.
    you can refer below code, it may be helpfull for you to create delivery.
    DATA: BEGIN OF t_vbap OCCURS 0,
            vbeln LIKE vbap-vbeln,
            posnr LIKE vbap-posnr,
      zmeng LIKE vbap-kwmeng,
            matnr  LIKE vbap-matnr,
            werks  LIKE vbap-werks,
          END OF t_vbap.
    DATA: t_request TYPE STANDARD TABLE OF bapideliciousrequest
          WITH HEADER LINE.
    DATA: t_created TYPE STANDARD TABLE OF bapideliciouscreateditems
          WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    SELECT vbeln posnr zmeng matnr werks
           INTO TABLE t_vbap
           FROM vbap
           WHERE vbeln = v_vbeln.
    LOOP AT t_vbap.
      t_request-document_numb = t_vbap-vbeln.
      t_request-document_item = t_vbap-posnr.
      t_request-quantity_sales_uom = t_vbap-zmeng.
      t_request-quantity_base__uom  = t_vbap-zmeng.
      t_request-id = 1.
      t_request-document_type = 'A'.
      t_request-delivery_date      = sy-datum.
      t_request-material = t_vbap-matnr.
      t_request-plant = t_vbap-werks.
      t_request-date = sy-datum.
      t_request-goods_issue_date = sy-datum.
      t_request-goods_issue_time = sy-uzeit.
      APPEND t_request.
    ENDLOOP.
    CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
         TABLES
              request      = t_request
              createditems = t_created
              return       = t_return.
    READ TABLE t_return WITH KEY type = 'E'.
    IF sy-subrc = 0.
      MESSAGE e208(00) WITH 'Delivery creation error'.
    ENDIF.
    COMMIT WORK.
    Regards,
    Prasenjit

  • Shipping point and delivery creation date

    Hi :
    im selecting sales orders , items and schedule line
    from a custom table based on plant, shipping point and delivery creation date. 
    Is there any relation between Schedule lines and delivery creation date.
    For delivery creation date d_date = SY-DATUM,  and should select Mat Avail dt MBDAT or Trans. planning dt TDDAT which ever comes earlier.
    vbep-edatu = itab-d_date.
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep on a1posnr = vbepposnr
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    can anyone help me with this select statement.
    Thanks.
    Raghu

    Hi,
    Try this:
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep
    <b>on vbapvbeln = vbepvbeln and vbapposnr = vbepposnr</b>
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    regards,
    Anji

  • How to find the shipping point creation Date and time

    Hi All,
      Could you please help to solve this issue.
       Some of the users created shipping point, Now I have to find out in which date and time the shipping points were created, is there any table to find. please help me.
    Regards,
    Muralikrishna

    hi Murali,
    first define and assign shipping point in enterprise sructure in define shipping point EC07 and assign in OVXC
    goto OVL2 and assign the shipping points
    The following are used for the shipping point determination:
    1. Shipping conditions - Proposed from CMR. The entry in VOV8 for the sales document type if there overwrites the entry in the shipping conditions mainatined in the CMR.
    2. Loading group - Proposed from the material master record.
    3. Plant - proposed from CMIR - if not found then CMR - if not found then MMR.
    But you should first define and assign the shipping point in the "enterprise structure" otherwise you will not be able to do the shipping point determination.
    IMG - logistics execution - shipping - basic shipping functions - shipping point & goods receiving point determination - assign shipping points.
    Shipping point definition:
    IMG - enterprise structure - definition - logistics execution - define, copy, delete, check shipping point. You have to define the shipping point here for the particular plant.
    Shipping point assignment:
    IMG - enterprise structure - assignment - logistics execution - assign shipping point to plant. Here select your plant and assign the shipping point to the same.
    hope this helps,
    cheers,
    Hema.

  • Bapi for creation of delivery by using SO,shipping point,delivery creation date

    Hi experts,
    I am looking for bapi that takes sales order,shipping point and delivery creation date and generates delivery.
    I have tried with bapi GN_DELIVERY_CREATE but i am not able to understand whether this bapi is used for inbound or outbound deliveries.If this bapi is ok then what are the mandatory fields for this bapi.
    Regards,
    Pankaj Jain

    Hi Pankaj,
    Please try to use BAPI 'BAPI_DELIVERYPROCESSING_EXEC' for creating delivery form sales order , you can pass value and create delivery.
    you can refer below code, it may be helpfull for you to create delivery.
    DATA: BEGIN OF t_vbap OCCURS 0,
            vbeln LIKE vbap-vbeln,
            posnr LIKE vbap-posnr,
      zmeng LIKE vbap-kwmeng,
            matnr  LIKE vbap-matnr,
            werks  LIKE vbap-werks,
          END OF t_vbap.
    DATA: t_request TYPE STANDARD TABLE OF bapideliciousrequest
          WITH HEADER LINE.
    DATA: t_created TYPE STANDARD TABLE OF bapideliciouscreateditems
          WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    SELECT vbeln posnr zmeng matnr werks
           INTO TABLE t_vbap
           FROM vbap
           WHERE vbeln = v_vbeln.
    LOOP AT t_vbap.
      t_request-document_numb = t_vbap-vbeln.
      t_request-document_item = t_vbap-posnr.
      t_request-quantity_sales_uom = t_vbap-zmeng.
      t_request-quantity_base__uom  = t_vbap-zmeng.
      t_request-id = 1.
      t_request-document_type = 'A'.
      t_request-delivery_date      = sy-datum.
      t_request-material = t_vbap-matnr.
      t_request-plant = t_vbap-werks.
      t_request-date = sy-datum.
      t_request-goods_issue_date = sy-datum.
      t_request-goods_issue_time = sy-uzeit.
      APPEND t_request.
    ENDLOOP.
    CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
         TABLES
              request      = t_request
              createditems = t_created
              return       = t_return.
    READ TABLE t_return WITH KEY type = 'E'.
    IF sy-subrc = 0.
      MESSAGE e208(00) WITH 'Delivery creation error'.
    ENDIF.
    COMMIT WORK.
    Regards,
    Prasenjit

  • Shipping point is missing from automatic delivery for external operation

    Hi All,
    I have tried to do one operation vy external processing. All the configuration and master data done. But during the goods receipt for the material from vendor after processing (t code MIGO) system is providing message as "Shipping point is missing from automatic delivery".
    1. In the control key, automatic GR is not there, so from where automatic delivery is coming?
    2. I have maintained the shipping point for the plant as plant in SPRO>LOG Exe> Shipping> Shipping point and goods receiving point determination> Assign good receiving point for In bound deliveries.
    Please provide the solution.
    Thanks
    Krishna

    Dear friend,
    As far as i know:
    1. check out the shipping point assignment to plant : t-code OVXC ;  just in case make sure your shippong point is correct - goto spro->enterprise strucutre->definition->logistics execution->def.,copy,del,check shipping point
    2. make sure your SC (shipping condition) and loading group are correct in the "Shipping point determination";
    also make sure you did GR points assignment correctly (the next item in IMG)
    good luck!

  • Shipping Point Determination for Sub contracting Process

    Dear Experts,
    While processing the GR for a Sub Contract Purchase Order, we are getting an Error  'VL 100 - Shipping Point XXX doesn't exists'
    However, I am not understanding where from this Shipping point is picked.
    Checked the Shipping point determination based on Loading Grp, Shipping conditions & Plant. But that is a different shipping point, and it is being picked while processing the outbound delivery for sending components thru 541 Movement.
    It is clear that the Shipping point XXXX is not existing, but not sure, as where from that Shipping point is being determined while doing GR
    Request for your inputs please
    Thank you,
    Best Regards,
    Ramakrishna Mangena

    Hi Ramakrishna ,
    What u earlier said is perfectly right : Shipping point determination based on Loading Grp, Shipping conditions & Plant
    Check the following :
    Are u posting GR through VL31N .
    If yes, just check the receiving pt entered in Header Data - Shipment Tab.
    Regards
    Ramesh Ch

  • KE24 no shipping point for STO(Stock Transport Order)

    Dear All:
    When I run KE24(account based), I found some of the data without "shipping point" value. Most of these records are from STO orders.
    May I ask if there is any solution for this issue?
    Thanks and Best Regards,
    Harrison

    Hi, This situation in ONLYfor STO orders.
    For other orders, it is normal.
    Therefore, I do NOT think this is because COPA fields are NOT maintained.
    Thanks for your reply
    Harrison

  • Controlling PO incoterms/delivery address from SO shipping point

    Hi,
    We want to be able to create sales orders with individual Purchase orders ( Purchase orders created with sales order as account assignment - one PO for SO/SO Item )
    We want to select freely between multiple shipping point in different countries within the same plant ( in free trade zones )
    What is the best way to ensure that the purchase order reflects the different shipping point ? As this is DDU, the Vendor needs to know where to send the goods. You could imagne that the Incoterm 2 would be dynamically set according to the shippingpoint, but the Incoterms in the PO are static - header from vendor master, item from inforecord. Also is the PO delivering address not updated.
    We are afraid that the vendor sends the goods to one place and the DSP will attempt to pick up at another ...

    Thanks much for your time!
    All i need is 2 W/days for picking and 2 W/days for loading from the shipping point. Do i need to delete duration also? i have deleted the workign times. Also , i do not need anything from Routes as well. I maintain duration , do i need to maintain them in days for all the possible routes ?? Since my pick/loading times are based on shipping points only , do i have to maintain this data for routes and wt grps ?
    Really appreciate ur sharing ur experience!!
    -Amit

  • How to make Shipping point mandatory in VT01N transaction

    my requirement is when we goto transaction VT01N and provide TransportPlanningPlant
    and Shipment type , and click on delivery there is a field Shipping point which i need to make as mandatory.
    or if the user wants to continue without Shipping point  it should give some message and further processing should not be done.
    is there any user exit/badi for this?
    please let me know if there is any way other than transaction varient.

    These are the BADIs/User Exits available. Also check for Enhancement points.
    Enhancement
    V56USVDP                                Preparation for updating new objects for transport?
    V56USVDO                                Update new objects for transport
    V56USTAT                                User-individual definition of transportation planning status
    V56UNUMB                                Shipment number allocation
    V56UDLUP                                Obsolete as of 4.6C: Delivery Update on Delivery Routines
    V56UCHCO                                Check shipments are complete
    V56UCHCH                                Shipment processing: Check whether changes were made
    V56TDLIF                                Filter Delivery Items for Shipment
    V56SLDET                                Shipment processing: Leg determination
    V56MVT04                                Extensions for Collective Processing of Shipments
    V56LOCID                                Shipment Processing: Determine Location Identification
    MV56AINI                                Initialization of transaction control for transportation
    V56AFCCH                                Shipment processing: Check function code allowed
    V56AGTAR                                User Exit for Filtering Shipping Unit Calculation
    V56ARCHV                                Customer-spec. checks for archiving shipments
    V56ATKTX                                Change the number of lines for text input in shipment
    V56BMOD                                 Transportation processing: Field modification
    V56DISTZ                                Shipment Processing: Determine Distance
    V56FCOPY                                Shipment processing: Copy delivery data
    V56FSTAT                                Shipment processing: Activities when setting a status
    V56L0001                                Status of Shipments for a Delivery
    V56LDELI                                Read Delivery Data for Shipment Processing
    Business Add-in
    BADI_LE_SHIPMENT                        BadI: Shipment Processing
    BADI_V56N                               User Exit Transport - Message Determination
    Alistair

  • Shipping in shipping point from plant and storage location is not possible

    Dear Experts,
    i am trying to configure STO with delivery scenario in my company
    after creating PO (sto UB) and delivery through vl10b when i try to do picking in vl02n and when i enter storage location its giving error
    "shipping in shipping pointxx from plant xxxxand storage location xxxx is not possible"
    i ve checked all settings
    1.plant and sh point assignment
    2. ovl2 sh point determination
    3.ovl3 picking location determination
    4 all master data cust n mat for loading group and shipping cond
    not able to find any solutions plz help
    Regards
    Supriya

    Check your entries in following options in SPRO path:
    IMG - MM - Purchasing - Purchase Order - Set Up Stock Transport Order - Setup Stock Transfer b/w Storage Location - Setup Storage-Location-Specific Shipping Point Determination
    Option 1: Define Rule for Determination of Shipping Point
    Option 2: Assign Shipping Points According to Storage Location (this should be there, if in Option 1 Determin. Rule; Shipping Point is L: Storage-Location-Specific Shipping Point )
    Regards
    JP

  • SHIPPING POINT AND STORAGE LOCATION DETERMINATION IN DELIVERY

    i made configuration setting for shipping point and storage location determination during delivery process. still system is not proposing this data during delivery.
      due to this reason lot of time is consuming during delivery creation.
    plz suggest the complete configuration flow for this determination.

    Dear Ram,
    Can you please specify the configuration that you have made? And which storage location determination rule are you using for your Delivery Type?
    Regards,
    Amitabha

Maybe you are looking for

  • Creating a new domain tree under the forest

    Hi I have one primary domain and one additional domain at moment so I want to create a new domain tree under the forest however during the configuration it gives me the below message ? the last time I installed without tick marking "Create DNS Delega

  • BDC OK CODE FOR ENTER NOT RECORDING

    I m creating a BDC Programme for uploading OLD PO date from excel to SAP System. All PO's are Service PO. PO's date and Delivery Date is in back date. My programme working fine. But i have to press enter manually due to   PO  Date = back date and Del

  • ITunes crashes when connected to 5th gen iPod, not other iPods

    iTunes 6.0.1 crashes EVERY time it starts up with the new 5th gen iPod. Works fine with other iPods, or no iPod at all. Reinstalled iTunes and restored to version 1.0 iPod form the 11-17-2005 iPod updater. Reset nvram, fixed disk permissions, reboote

  • Business partner. Hide bookmarks

    The Business partner exists in role "Sold-To party". How I can exclude from visibility of some tabs (bookmarks): For example - 'Status', 'Documents', 'Pharmaceuticals', 'Long texts' and others. Or necessary to use technology BDT? Thanks a lot.

  • Burning Directly to DVD

    I have a fully automated Keynote presentation (timed music and slides) which I need to burn directly to a DVD. In the past I have been unhappy with using iDVD for various reasons. What would be the best way, and provide the highest quality, to burn t