Shipping point query

HI Gurus,
I want to understand how does the system calculate the time when we maintain " Determine Load. Time" and "Det.Pick/Pack Time" as "Default from Shipping point" in the maintain Screen.
Kindly explain.
Thanks in advance.
REgards,
Rianka.

Dear  rianka,
In defining shipping point only you will tell to the system that weather the picking/packing/loading times have to be taken from the shipping point or by route.
If you select default from shipping point it considers only the shipping point scheduling.
Thanks&Regards
Raghu.k

Similar Messages

  • Customer shipping point details

    Hello All,
    I am trying to create sap query containing customer shipping point details.The format is like..
    comp code, cust no, cust name,house bank, shipping point, name of the agent,route etc.
    what are the tables I can use. please help
    Srinivas

    Hi,
                                                            Table             Field
    Company Code                              BKPF              BUKRS
    Customer No.                                BSEG              KUNNR
    House Bank                                  BSEG              HBKID
    Shipping Point                             V_TVST           VSTEL
    Agent Name                               V_TVPG_TK     PARGR  (Partner)           
    Route                                          V_TVRO_COM ROUTE
    Regards,
    Sadashivan

  • 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

    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

    v_date = sy-datum + 2.
    SELECT vbeln posnr
                  from zxxx
                  into table i_zxxx
                  where werks IN s_werks
                   AND  vstel IN s_vstel
                   AND  erdat =  v_date
                  AND   ( mbdat >= sy-datum OR
                              tddat >= sy-datum ).
    SORT i_zxxx.

  • 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 to flow automatically in vl01n

    Dear Sdities,
    1. I've done OVL2-Shipping point determination.. That's y Shipping point determination is happening & flowing to sales order.
    But
    When i go to Vl01N, thr shipping point i've to put manually
    Can u plz reply where is the setting for Shipping Point to Come automatically in VL01N- after creating Sales order.
    Kindly Responr
    Thanks & Regards,

    Hello,
    The configuration what you have done in OVL2 is correct, which determines the shipping point in sales order.
    But when you use VL01N, shipping point will never come automatically, since at the time of your tcode entry of VL01N, there is no link between the sales order & the delivery transaction.
    So you will have to enter the shipping point manually.
    Additionally if you want, not to enter shipping pint manually, do one thing:
    Goto VA02 & enter your sales order & press enter. On the upper left hand side you see "Sales Document"
    Click on it & you will see "Deliver". Here if you click on deliver it will take you directly to delivery creation without having to enter shipping point manually.
    Hope this resolves your query
    Regards,
    Dhananjay

  • How are shipping point and delivery note connected ?

    I wanted to understand how is shipping point connected to process of creating delivery notes....can we configure sap using SPRO such that the delivery note creation happens automatically for certain shipping point once the order is created and saved ....and for certain shipping point the delivery note is not automatically created ( assuming we are using the same order type) but the determination of automatic DN creation is done by the value of the shipping points ??

    Actually what is shipping point?
    Shipping point is an independent org.unit which is linked to the plant and represent the point of departure or receipt of materials.
    Normally lot of shipping points are assigned to the plant.
    Relation:
                   Actually a delivery is created from a single shipping point only.. That is the reason when u complete the sales order, at the time of creating the delivery note, u are forced to enter the shipping point, without that the system willn't proceed further.
    Determination:
    It is determined with the formula of shipping conditions + loading grp + deliv. plant
    Answering to ur 2nd query,
    when u are creating the delivery from the sales order screen (by going to menu bar and click delivery), the system automatically assumes the shipping pt is from the sales order.
    But if u enter the different shipping point in delivery note creation, the system will thro an error that delivery split due to diff. shipping points.
    Hope i clarify ur queries, ur further queries are welcomable.
    Reward points if useful...
    regards
    Kaleeswaran

  • Different shipping point for returns delivery

    How do i assign a different shipping point for returns delivery when the material was actually shipped from another shipping point?

    Hi Salag,
    As our expert suggested by using 2 shipping point you can create delivery. Delivery will create based on single shipping point.
    In you scenario if you want to ship the return goods with different shipping point then go with new configuration.
    For Normal sales order OR maintain the shipping condition 01 in the respective sales document type OR
    For  returns order maintain the shipping condition 02 in the respective sales document type RE.
    When comes to shipping point determination shipping point will determine based on
       Order:        SC Loading Group Plant -- Proposed S.P -- Manual S.poimt
        OR    :        01 0001AAAA -
    >     XXXX             --- YYYY
        RE     :        020001AAAA -
    >    YYYY
    If you don't want to go with different SC then manually change the Shipping Point in Returns sales order before creating delivery.
    I hope it reaches to ur requirement. revert in case of any query..
    Regards
    Durga Sana

  • Shipping point at storage location level in ME2O

    hi Guys,
    I am using stock transport orders at storage location level, and it works fine, we have a customizing point to configure shipping point at storage location level.
    My doubt is if we can use also shipping point det. at storage location level for creating Deliveries for Subcontracting process in ME2O.
    It works only If I customize the shipping point det. at plant level, not considering the customizing at storage location level.
    kind regards
    Brian

    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

  • 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

  • How to trun off batch determination for certain shipping points ?

    During Delivery Notes creation we would like to turn off the batch determination on basis of certail shipping points. can some please guide what is the best way to do it. We do not want it turned off for all the shipping points but for a special ones.
    The idea is when we create Delivey for certain shipping point we do not need to fill in the batch code and yets save, pick confim, goods issue during delivery creation process....
    we have sepcial shipping points for consignment process and for them we need to skip the batch determination......
    Thanks in advance
    Rajey

    I don;t think you  can control based on shipping point because batch creation is controlled at movement type level

  • 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!

  • InterCompany Stock Transfer - shipping Point

    Hello
    How sales area and shipping point are determined in delivery document for intercompany stock transfer process.
    regards
    Prashant

    Hi Prashant,
    Material should exist in both the plants (Delivering  & Ordering),
    Internal customer should be assigned to the ordering plant ( MM -> Purchasing -> Purchase Order -> Setup stock transport order -> assign the internal customer to the ordering plant and assign the Sales area of the internal customer.
    Tcode : OMGN
    Assign its Sales area to the delivering plant
    Assign the document type and Delivery type  NB and NLCC
    Assign the Supplying plant --> Receiving Plant --> NB 
    Take the delivering plant and assign the sales area.
    Vendor master has to be created and assaign the supply source ( Delivering Plant).
    Create a puchase order ME21N ---> Save
    Delivery VL10 G ---> Calculation rule (appropriate) --> Assaign the purchase order number here and execute.
    Select the Delivery creation line and do the back ground process.
    Start the log display and see the delivery document number by the documents button
    Goto VL02N --> do picking and PGI --> Then do the MIGO with respect to the delivery document.
    Billing (Intercompany pricing conditions should be set).
    Thanks & Regards,
    Pankaj Mahajan

  • 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

  • Shipping point was not determine in the order with material determination.

    Hi,
    I´m using material determination for my sales order, and i need to determine the Shipping point with storage location configuration. So when I add the material number, the quantity and the storage location the material determination runs and in the second line determined the shipping point it is not filled. Any body knows how can I fix this problem?
    Best Regards

    Hi
    The shipping point will be determined on the basis of shipping condition, loading group and the delivering plant.
    The storage location dependent shipping point determination is used only in delivery documents and not in sales orders (Assign Shipping Points According to Storage Location).
    To activate this you must first Define Rule for Determination of Shipping Point, wherein you can assign the rule to the delivery document only and not to the sales order.
    If you say that you are getting the shipping point determined based on the number of the material, the quantity and the storage location entered(though it is not) then here note that you are entering the storage location only to the material entered and not to the material determined. When the system determine the alternate material then the shipping point will be determined on the basis of shipping condition, loading group and the delivering plant as per SAP standard process.
    Try by entering the storage location to the material determined and check whether you can get the shipping point or not and let the forum know the result.
    Hope this helps you.
    Regards
    Rajkumar K

Maybe you are looking for

  • CS6: lost previews and thumbnails

    Surprisingly this is not in the FAQ section: how do you folks get around the problem of having no previews when opening a file from Windows Explorer? I realise Adobe wants us to use Bridge but I'm sure I am not alone in finding this unstable and slow

  • Updating A Remote Database Copy

    I have a SqlExpress DB on my server.  I have a remote copy for security/backup reasons.  Because the DB file(and .bak file) is about 2 Gb, it take a while to copy the whole thing to the remote machine.  I believe there is a way to use the log file to

  • Simulate Dynpro application in mac  :: Very Urgent

    hi experts, I have developed Dynpro Application in windows enviornment. One of the intended client uses safari on mac OS. How can i make my dynpro application work on mac os ? any idea plz help thanks in advance, nikhil

  • Exporting foxpro's database

    I wanted to export foxpro's database into oracle 8i please let me know the procedure. it is urgent

  • Reg ID deletion after essbase startup

    Dear Experts, OEPM 11.1.1.2 - It is a standalone installation and didn't externalize users to shared services We have defined one ID during essbase startup after installation as "admin" and now is it possible to change this ID with Different Name? i