Shipment Cost for an STO/ Outbound Delivery

Hello All,
We are trying to configure shipment cost for STO. We are facing an issue as explained below. Let me know if anyone of you faced a similar issue and if you have ideas for the fix -
In our scenario the Shipment cost calculation is done on the following basis -
1) Flat Rate - For example for transporting of goods from new york to atlanta.
I did complete the configuration for shipment cost and I am able to get shipment cost in the STO. Here is an example of where I am stuck -
1. I created outbound delivery # 1 (partial quantity) for the sto (with 2 line items). When I create shipment cost document, it allocates the shipment cost to the 2 line items proportionately. eg. 100$ is distributed as 50$ each.
2. Now, when I create a new outbound delivery #2 for the rest of the quantity and try to create shipment cost, it distributes based on the ratio of the quantity shipped. This is how it distributes -
(Quantity shipped in OBD#2/ Total STO Quantity) * Shipment cost from first OBD (=50$).
What we want is the exact distribution of 50$ for the second OBD as well.
Appreciate your help!!
Thanks in Advance
Piyush

Got it....SAP NOTE - 907632 fixed the issue.

Similar Messages

  • Can we make two shipment cost for one outbound delivery

    Hi team,
    Can we make two shipment cost for one outbound delivery?
    Need your suggesstions.
    Regards
    Venkat Ramana

    Hi
    I do not think that you will get a reply now as it has been too long.
    Maybe the answer is not known.
    However as the forum is growing and it takes so much time to get through all of the pages it would be nice to keep it current so could you please close your thread and either re-open a new one (this might help as people are more likely to look at curret ones) or try another forum.
    This will make life easier for everyone
    Regards
    Frenchy.

  • Shipment cost for individual deliveries

    Hii there
    I have a scenario wherein a shipment has multiple delivery and it has a shipment cost document made for that.
    This shipment cost document will have shipment cost for all the deliveries in the shipment.
    What i need to find out is individual shipment cost for each delivery. Is there any way from where we can fetch this amount.
    Thanks & Regards
    Gaurav Manocha

    When creating the billing document the individual cost can be copied from the shipment cost doc to the billing document, see http://help.sap.com/saphelp_erp60_sp/helpdata/en/5f/e411bb044411d2bf5d0000e8a7386f/frameset.htm
    /Torben

  • CC STO- Outbound delivery to trigger GR(107)

    Hi all,
    I am building a scenario
    Cross company STO - outbound delivery - should trigger Idoc to post the Goods receipt against the STO(PO)in the same box (client) for different company code /plant (receiving).
    Is this possible in Standard , what is the message type or Idoc type
    Please throw some light on the possibilities.
    Thank you.

    Use Inbound delivery to receipt the goods through VL32N transaction.You told serial number is not copying  from outbound delivery.In that case check the program is there any custom logic you can use to copy outbound to inbound delivery serial number.

  • CC STO- Outbound delivery to trigger GR  in the system

    Hi all,
    I am building a scenario
    Cross company STO - outbound delivery - should trigger Idoc to post the Goods receipt against the STO(PO)in the same box (client) for different company code /plant (receiving).
    Is this possible in Standard , what is the message type or Idoc type
    Please throw some light on the possibilities.
    Thank you .
    Edited by: satheesh on Oct 19, 2010 5:27 PM

    Hi,
    Error message VL609 is designed to prevent PGI before picking was
    complete. If not, posting cannot be carried out unless you
    change delivery quantity. Partial postings are not possible!
    Function 'copy picked quantity as delivery quantity' could be used.
    To sum up, It is not be possible to goods issue a delivery that is not
    fully picked and for that reason error message VL 609 is issued.

  • Goods Issue for a Return Outbound Delivery for both Sales Returns

    Hi gurus..
    tell me the approch for the following development....
    custom transaction to perform a Goods Issue for a Return Outbound Delivery for both Sales Returns and Consignment Returns (Pickups) process within a lean warehouse in SAP.
    it is vry urgnt
    thnks

    I seem to have found the information I required here:
    http://wiki.sdn.sap.com/wiki/display/Snippets/Simulating+the+Sales+Cycle+with+BAPI's
    I'm going to keep this post active because I'd still like answers to my questions and any advice that you might be willing to share in regards to what I am trying to do.
    Edited by: Mikael Nensén on May 18, 2011 3:52 PM

  • Bapi for vl01no create outbound delivery without order reference

    Hi Guru's, i need help, I'm looking for BAPI VL01NO
    Any suggestions?
    Thanks for everything
    Edited by: GaBo_s Gabo on Sep 22, 2009 8:48 PM

    Hi,
    Following is the sample code for creation of outbound delivery Using BAPI 'BAPI_DELIVERYPROCESSING_EXEC'
    Which may be helpful.
    PARAMETERS: p_vbeln LIKE vbak-vbeln.
    DATA: BEGIN OF t_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng 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 kwmeng matnr werks
    INTO TABLE t_vbap
    FROM vbap
    WHERE vbeln = p_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-kwmeng.
    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.
    READ TABLE t_created INDEX 1.
    WRITE: / 'Delivery ', t_created-document_numb, ' created'.
    Let me know if any issues.
    Thanks & Regards,
    Naveen

  • FM for migo against outbound delivery

    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    I am using this FM for migo against outbound delivery can i get waht parameters i have to pass
    for this FM for outbound delivery

    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    itab-move_type  = '101'.
      itab-mvt_ind    = 'B'.
      itab-plant      = 'FD11'.
      itab-material   = '0000900152'.
      itab-entry_qnt  = '1.000'.
      itab-move_stloc = 'FG'.
      itab-stge_loc   = 'FG' .
      itab-po_number  = '5500004086'.
    itab-DELIV_NUMB = '0171000465'.
    itab-DELIV_ITEM    = '10'.
      itab-PO_ITEM    = '10'.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    Error in function
    Material document data and PO data do not match (Material)
    i am getting this error
    help me

  • BAPI for creation Partial Outbound delivery

    Hi Guru
    Please suggest me any BAPI's for creating Partial Outbound Delivery
    I am working on BAPI_OUTB_DELIVERY_CREATE_SLS           but its creating full delivery
    Pls suggest me anythg..
    Best Regards
    Subham Arya

    Hi
    For finding the right BAPI, have a look at the following blog:
    /people/g.koopmann/blog/2010/03/07/using-bapis
    Best regards,
    Guido Koopmann

  • Single STO Outbound delivery not creating for different lines in PO.

    HI ALl...
    1... I  have 2 different ST PO which raised by other plant(plant is same), and it contains different line item.
    When try to do outbound delivery in VL10B, it is creating seperate outbound delivery doc to each item, but not created single doc for all items.
    Please let know, if any thing needs to be done, to get create single outbound delivery for all the items in PO.
    2... Is it possible to pick the Price automatically ( MAP of the supplying plant material), while create Billing in VF01.
    Regards
    Chandradhara...

    HI..
    I have checked and corrected Delivery date/ loading group and Transportation group, now it is coming single delivery document.
    OTHER REQUIREMENT IS;
    We need MAP of the Supplying Plant to be picked will do billing for PRICE condition. What settings should be done
    Regards
    Chandradhara

  • STO - outbound delivery partially do PGI in warehouse

    Based on the STO, we are creating outbound delivery,  most of the outbound delivery has nearly more than  200 line items, out of 200,  nearly 120 line items TO created and  confirmed, now the user wants to save PGI for only  confirmed 120 line item, but system wouldn't allow us to confirm partial PGI, for these user have to delete the remaining 80 items  then only system allow to do the PGI.
    Is there any possibilities to save the outbound delivery partially, then for the next time when we open the same outbound delivery remaining unconfirmed line item have to show, and it allow us to save the remaining items.
    Thanks in advance
    regards
    Shivani

    Hi,
    Error message VL609 is designed to prevent PGI before picking was
    complete. If not, posting cannot be carried out unless you
    change delivery quantity. Partial postings are not possible!
    Function 'copy picked quantity as delivery quantity' could be used.
    To sum up, It is not be possible to goods issue a delivery that is not
    fully picked and for that reason error message VL 609 is issued.

  • Shipment cost for third party

    Hi,
    for the third party business (where the vendor delivers the material to customer directly), we want to bring the freight at customer invoice level and post to COPA.  we don't follow shipment document creation for this. we create a PO and an inbound delivery with respect to PO and GR with respect to inbound. we enter the freight cost as a condition in the PO. during invoice verification this is posted in FI. finally we create a customer billing after this.
    But if we want to bring the same freight to customer invoice, how can this be possible?
    Even if we follow shipment creation and shipment cost creation for inbound delivery, how can we bring the freight cost in a customer billing document which is with respect to sales order?
    Regards
    Karthik

    hi
    please give steps properly which ur following
    also you can include  freight by creating freight condition and maintaining VK11
    for more prompt reply post this to SD-Billing forum
    regards
    kunal

  • Cost center field in outbound delivery item level.

    I want to make Outbound Delivery without Sales order referance - VL01NO
    In Outbound Delivery, Goto > Item > Financial Processing, there is Cost center field.
    AS a CO user's requirements, I have to input this field.
    But I can not put in there, because it is not active - just display ; screened.
    I want to use this cost center field.
    How can I do it?
    Regards.

    Hi
    The Cost Center Determination settings is in OVF3 -  but there are some cases where the Cost Center must be exceptionally changed. 
    If the document category for order type in IMG VOV8 is defined to be "I" which belong to order type FD - Deliv.Free of Charge, then the field cost center is active for input during transaction VA01. 
    Alternatively, you can specify an order reason and assign a cost center to an order reason. 
    However the standard SAP works only at the header level though, so it would not work if cost center is needed on the line item. 
    The cost center are assign for such business transactions as :
    - Free deliveries
    - Returns
    - Deliveries of advertising materials
    You can also make cost center allocation dependent on the order reason, for example:
    Order reason: Damage in transit
    Order reason: Free sample
    Both the IMG settings are done in transaction OVF3, either with/without the order reason.
    Regds
    MM

  • Urgent - STO Outbound delivery

    Hi friends,
    Can anybody tell me in outbound delivery for STPO why the system is allowing to post GI more than STPO quantity ? is their setting customization.I have lots of STPO having GI  quantity in outbound delivery greater than STPO.
    Regards,
    Sachin.

    Hi
    I think you have allowed Over delivery Tolerance to STO....
    In OLME -
    > PO -
    > Setup STO -
    > In Maintain One step method and Overdelivery tollerance......for your Supplying Plant and Receiving Plant combination, Dont allow any Over delivery Tollerance....
    Rewards if useful
    Regards
    s.Baskaran

  • Shipment cost for multiple condition type is not working

    Dear Experts
    I am doing inbound transportation,I have a freight condition, FRB1, and two fixed cost condition type ( ZX01 and ZX02).
    I maintained 3 condition type under T_06, and created condition record.
    Now when I am doing shipment costing system is taking the last assigned condition type relevant condition record value, however it is pulling the other two condition type in the pricing procedure and with information message.
    Could some body suggest how to bring all 3 condition type value effective for shipment cost.
    Thanks & Regards
    Sudhansu

    Hi Durga,
    Most importantly whenever we create a condition type with statistical check box it means that value will not be included in Net price calculation this is the only purpose of statistical check box.(Like any freight charges it will go to your stock a/c even though statistical check box is there in your Pricing procedure)
    When you create condition type for any charges with Cond.category B Delivery costs and Accrual check box in M/06 by default it will go to stock account, but you can restrict that by using a functionality
    Check this link for complete process
    http://wiki.sdn.sap.com/wiki/display/ERPLO/PostingplanneddeliverycosttoNon-inventoryaccount

Maybe you are looking for

  • How can I  move the 'Itune music file' to another disk

    Hello I am using ITUNE in a Winfow XP environnement. I am running out of space on my C disk. How can I move my ITUNE music file C:\Documents and Settings\Yves\My Documents\My Music\iTunes\iTunes Music to another bigger partition on the same computer?

  • How do I delete a folder that won't delete?  When I send to trash, it just reappears.

    How do I delete a folder that won't delete?  When I send it to trash, it just reappears.  I have restarted my computer and tried, and it still won't go to trash.

  • Unix Executable Files how to open

    I have a disc from a design company which contains many Unix Executable Files. I have no idea what the content files extensions are and some of the files are quite large. The cotents are important for my job. Is there any way I can open these files?

  • Storage of Java object in table column

    Hello, We have developed an application that requires some Java objects to be stored in tables. With JDataStore, Cloudscape or InstantDB the operation is rather straightforward. We can use something like: pstmt = conn.prepareStatement("INSERT INTO TA

  • Distribute​d System Manager trend y-axis scale

    I've been trying to monitor some boolean shared variables in the Distributed System Manager.  I've been looking at the trend, but I can't find a way to change the y-axis scale from 0-100.  With that scale, I can't see if a value switches from 0 to 1.