What INCLUDE calculates total Weight on Outbound Delivery?

Hi,
We have a bug in our Outbound Delivery "total weight" calc on the Item Overview tab.
I need to locate the logic that calculates this value.
Can someone please tell me the Include or Module where I might find the code that calculates this.
The Delivery Program seems to be SAPMV50A, but I don't know how to locate the module or user-exit/enhancement within that program that calculates the value for this field.
Hope that makes sense...thank you for your help.
Andy
Edited by: Andrew Brusko on Nov 17, 2011 2:48 PM
Edited by: Andrew Brusko on Nov 17, 2011 2:49 PM

Hi Andy,
You may go ahead to find out what technical field that total weight belongs.
Then either search that element in your program and put break point at every where it is used through out or crerate a watch point to trigger when the value at the total weight field gets populated.
Please analyze this way to get your answer.
Hope this helps.
Thanks,
Sourya Prakash.

Similar Messages

  • What is the total weight and dimentions of a Mac Pro with retina 13"? Including any extra delivery packaging (i.e box, bubble rap, etc)? Thx

    What is the total weight and dimentions of a Mac Pro with retina 13" including any extra delivery packaging (i.e box, bubble rap, etc)? Thx

    What is the total weight and dimentions of a Mac Pro with retina 13" including any extra delivery packaging (i.e box, bubble rap, etc)? Thx

  • Handling unit weight into outbound delivery weight?

    Hi,
    I would like to transfer the total of my Handling unit weight to my outbound delivery weight. This is at this moment copied from the Sales order. How can I change that SAP will use the weights of the HU? Anybody?
    Thank you,
    Eric van Zundert.
    Edited by: eric van zundert on Feb 25, 2008 2:49 PM

    Dear Eric,
    if you also want to add the weight of the packaging materials to the weight of the delivery, you will have to create a delivery item for the packaging materials. Please check note 831204 for the necessary settings.
    I hope I could help you with this.
    Regards,
    Ely

  • Empty field "Net weight" in outbound delivery

    Hi SAP Gurus,
    I have problem with field "net weight" (NTGEW, table LIPS) in outbound delivery (VL03N). This filed is empty nevertheless this field is filled in material master data. Where could be problem?
    Thanks
    Lukas

    Dear Lukas,
    this might be issue at internal program level , so We cant able to judge where exactly issue is coming , kindly replicate the same scenario in Quality system and debug with the help of ABAPER .then you will get the idea where the issue is coming .
    Regards,
    C.B Reddy

  • Weight from Handling Unit not copied into outbound delivery weight field.

    Hi,
    We create handling units with hupast and with a weight interface. If we select the HU in the outbound delivery, we need the total weight of all HU displayed in the outbound delivery. This is not happening. The total weight which is shown is the weight of the material master.
    How can we put HU weight in the outbound delivery?
    Thank you,
    Eric van Zundert.

    hi Eric,
    you habe to do this with a user exit.
    In the deliveries, there is only one good userexit at the time save dcoument prepare. -- there is a oss - note for it.
    I copy at every save the sum of the HU-weights in the fields of likp.
    Additionally at time of goods out - boocking, i collect the LIKP-weight upon all positions of the lips, so that the sum of lips-weights will give the likp-weight.
    You need to do this, because in invoice, the weight is taken as sum of the positions and the following processes of export will also take the weight of the invoice-position.
    hans

  • How to add Total Quantity in Inbound and Outbound Delivery screen

    Hi,
    I want to add Total quantity field in Inbound and Outbound Delivery screens.
    In document flow i can see the line item quantities in ALV Format, but if i select Display the totals above the entry check box
    in Change Layout--> Display, i didn't see any totals displayed.
    Please help me on this?
    Regards
    Bhuvana

    Hi
    If the field is a customer field, see BADI 'LE_SHP_TAB_CUST_HEAD'
    Regards
    Eduardo

  • What is the total price for an iphone 5 including tax

    what is the total price for an iphone 5 including tax

    Depends upon the model you want, and where you live.  Quit trolling.

  • Total weight in delivery document

    Hi gurus,
      1. how total weight in delivery document is determined when i am doing multiple orders in single delivery.
      2. My requirement is to delete a delivery documnet but it was not deleting, i analised that " total weight in delivery document " usually determined " as "KG" but instead of "KG" UOM is determined as 3"(cubic inches).
    anybody help me in this issue to solve this.
    regards,
    kishore.

    Dear Kishore
    Your UoM in delivery will always flow based on the weight details you maintain in material master Basic Data 1. 
    In Delivery, you cant change the weight but can change in sale order.
    Thanks
    G. Lakshmipathi

  • Maximum "Total weight" LIKP-BTGEW in delivery

    The business requirement is as follows u2013 If the Total weight LIKP-BTGEW u2013 in the delivery, at header level - is greater than X kg. Then the user cannot save the delivery (i.e. create a delivery). The user shall get a popup saying u201CDelivery can not be created / saved because the Total weight is greater than X kgu201D
    Which program and userexit can I use?
    Many thanks, in advance!

    Hi
    Related with USEREXIT_MOVE_FIELD_TO_LIKP. It's true that this subroutine was designed to provide our own additional fields. If we modify standard field (not advisable), note says:
    If standard fields of the structure LIKP are changed, you may have
    to carry out determinations and checks that have already been
    performed again to avoid data inconsistencies. Therefore, analyze
    the dependencies before you change standard fields in the table
    LIKP in this exit.
    It goes on:
    Data from preceding documents should be prioritized and transferred
    using the copy control.
    so, the solution to solve it in copy rules in my opinion is the proper solution. I'm not sure if LIKP-BTGEW is populated in this moment
    So, create your own subroutine (999 for instance) with a coding as this:
    FORM bedingung_pruefen_999  USING bp_subrc LIKE sy-subrc.
    * Perform all checks as in routine 001
      perform bedingung_pruefen_001 using bp_subrc.
      check bp_subrc = 0.
      IF likp-btgew > your_weight.
        perform message_handling in program (programmname)
                                           using posnr_low
                                             '001'
                                             'E'
                                             'ZVL'
                                             'excess of weight'
                                             space
                                             space
                                             space.
        bp_subrc = 1.
        EXIT.
      ENDIF.
    ENDFORM.
    where you must create your own message ZVL in SE91 or other.
    Other suggestion is set a warning message in copy rules, and set the error message when you save it (think that it could be modify in a future). So use the USEREXIT_SAVE_DOC_BEFORE_PREP
    Purpose
    This routine can be used for the final change of all delivery data. At the
    time of the call, the delivery is complete and consistent; only the
    document number has not yet been determined in the creation case and the
    final processing of the requirements has not yet taken place. Therefore,
    changes to the delivery at this time must be made with particular care
    because no subsequent checks can prevent possible data inconsistencies.
    Since requirements processing has not yet occurred, this user exit is, in
    particular, suitable for changes relevant for requirements when the
    delivery is saved.
    Remeber to avoid messages during PGI. As it says:
    Display of messages
    With the output of messages or user dialogs, you must make sure that this
    exit can be run both in the dialog and in the background. In particular,
    during goods issue posting, messages or user dialogs must never be output
    because this may result in incorrect material documents.
    Regards
    Eduardo
    Edited by: E_Hinojosa on Nov 14, 2011 12:14 PM

  • You Can't Calculate Totals on that!...SO #@!%#! WHAT, YOU GREAT PILE OF !@#

    In Access you have an asterix which represents every field in the table. Useful if you want to see all the data in a table for a single record. I've done it a million times before.
    So why is it telling me that I can't calculate totals on the *, so I should remove it from the query grid and replace it with the fields I want and calculate totals then.
    I DON'T WANT TO CALCULATE ANY #!@%#@!! TOTALS!!
    I AM PUTTING THE FIELDS I #@!%$#! WANT - I WANT ALL OF THEM!! I JUST DON'T WANT TO DOUBLE CLICK 30 TIMES WHEN ONCE WILL DO!
    It's driving me insane because I'm going through hundreds of Oracle tables and it takes so long to browse to the record I'm looking for and it should work to use the asterix, I've done it so many times before.
    How do I override this utterly unhelpful behaviour? Am I stuck in some sort of "Queries will only calculate Totals! mode that I don't know about?
    I know, I know, Access is a micro$loth invention, not Oracle, but we have to use an ODBC link to the SQL database via Acces and it's going to kill me.
    Unless I slam my PC into my neighbour's head first!
    Any help greatly apprciated.
    Sorry for the rant!
    Cheers
    IsNull

    IsNull wrote:
    Cheers,
    I am serious and I know this isn't an Access site, and I know there are differences between SQL in Access and SQL in Oracle, and I'm trying to get funding to do some proper SQL and VBA training, but if anyone can help I'd be very grateful.What? with the funding? Sorry, there's a credit crisis doncha know! ;)
    In the Access/ODBC/Oracle query design view you can create a query by linking fields in tables and then choosing fields you want to output in the query results. At the top of each table is an asterix which uses all the fields from the entire table in a query and outputs the data from all the fields. I'm looking through various tables to find useful fields and using one particular record as my example so I get consistent data output.
    Now, I can look in the actual linked tables and see what they contain, but I want the data for a single record, not the general table contents and there are hundreds of thousands of records. So I'm using the query design to search for the data for a single record and using only one table per query. But if I double click on the asterix to indicate "Use All Fields from this Tabel" I get the "But you can't calculate totals on that!" message. If I add them all individually I get an "Illegal use of LONG data".I once looked at Access, many moons ago. Didn't like it.
    However, from what you describe, it would seem that you need to somehow join the tables as you're doing, but also apply some restrictions on the data so that you're not trying to retieve all the rows back. As for it's error complaining about the totals, I would expect something like you've got an aggregate function in there and things aren't being grouped together. Either that or there's some "setting" somewhere that automatically tries to total things, which hopefully you could turn off. The best thing is to take the error message/number and lookup what that means via some website/documentation that lists Access errors and how to resolve them.
    You'll be lucky to find anyone here who will know (or care about) Access.

  • Total weight of the packed item at the delivery

    There is packing in delivery at our case and I have to have the total packed weight of the material. This means that the total weight of the material and the packing materail of the item. From which table I can have the total gross weight?

    Hi,
    Did you try with VEKP and VEPO?
    Regards

  • Does item category TAS allow to create Outbound delivery doc?

    Hi experts,
    I have a problem with the delivery creation.  The scenario is:
    Our vendor missed to deliver a part to us. Say for example he missed to delivery the screw (used to adjust the time) in the wrist watch. This part is supposed to be assembled together with the wrist watch & delivered to our customer.
    Now we need to deliver this missed part to our customer. The initial watch has been shipped to the customer without the screw. But the cost of the screw is already included in the total cost of the watch.
    Now the vendor is going to send us this screw.  So my requirement is to create a subsequent free of charge kind of sales order that triggers a PR to the vendor & once this PR is converted to PO, on the PO
    the Free Item will be ticked as the Vendor charged us for the whole wrist watch. This is also a kind of subsequent free of charge delivery by the vendor.
    When I use item category TAS it does generates the PR & I converted this to a PO to this vendor. I also did the GR for this PO.  But when I create outbound delivery for this subsequent free of charge sales order,
    it says the item is not relevant for delivery.
    Could you tell me how to handle this situation & what item category to use which will allow me to create
    Outbound delivery so that I can proceed to post goods issue & create 0 dollar invoice?
    Thanks for your help.
    Regards,
    Pri

    Check the item category configuration for TAS. It does not have the tick for 'Item relevance for delivery'.
    This can be seen in the following path:
    IMG > Sales and distribution > Sales > Sales documents > Sales document item > Maintain item categories.
    The idea of having a 3rd party sale (with item category TAS) is that the item is directly delivered from your vendor to customer. When you perform goods receipt of the PO, it will not ask for a storage location, since the product does not enter the plant premises.
    This is a one step method to dispatch goods directly. Hence the outbound delivery is not required once GR is done.  The next step is to enter a vendor invoice followed by customer billing document.
    If you check the accounting part of the GR material document it will be
    Cost of goods sold DR
    GR/IR clearing account CR
    However, in your case, since the material is a FOC, there should not be an accounting document, and hence no vendor invoice verification / customer billing.
    In standard, the item category TAS is relevant for billing. Hence if you do not require billing (being FOC), I suggest you use another item category (a copy of TAS) without billing relevance. I guess everything else should fall in place.
    Regards,
    Aroop

  • Outbound Delivery Scheduling Discussion

    Hello Folks,
    I am about to work on a assignment to setup and configure the outbound scheduling for delivery documents. The reason I start this post is to get input from you all experts on what are the steps involved and what kind of considerations should be kept in mind while working on this.
    We will be doing shipping point based scheduling.....
    So far I have noted down the following activities which need to be carried out :
    1) Transportation zones
    2) No of routes / route determination
    3) combinations of departure/destination countries
    4) departure/receiving zones
    5) what shipping conditions
    6) different means of transport
    7) transportation groups
    8) weight groups definition ( if applicable )
    9) combination of shipping point and destination countries
    10) decision on load time, pick/pack time at shipping point level.
    11) Master Data : assignment of transportation zones to ship-to's
    Pl advice further on what other activities should be done in preparation for carrying outbound delivery scheduling...
    Apart from the activities if you have any comments/concerns that should be kept in mind then kindly share that also.
    Thanks In Advance!!
    Your inputs will really help me in getting to a foolproof solution..

    Hi,
    u2022Different Times involved in delivery scheduling-
         Pick/Pack Time
         Loading Time
         Transportation Time
         Transit Time
    u2022Shipping point calculate: - Pick/Pack Time, Loading Time
    u2022Route calculate: - Transportation Time, Transit Time
    Backward scheduling- system confirms the quantity of delivery on the basis of customer request delivery date.
    Forward scheduling- system confirms the quantity on the basis of New Material availability date.
    Precise scheduling-the system calculates and displays the results of scheduling down to minute. If you have maintained the working times of the shipping point, the system performs precise scheduling.
    Daily scheduling: - the system uses days, hours, and minutes for calculation, but only displays the resulting dates.
    Route schedule: - the route is used to determine the transportation lead-time and transit time. For Transportation lead-time precise scheduling uses the working times of the shipping point; daily scheduling uses the factory calendar of the shipping point. For the transit time both types of scheduling use the factory calendar of the route to determine when route is used.
         You can use the route schedule to organize outbound deliveries from a particular shipping point to different ship to party.
          The route schedule generally contains: Route, Departure date and time, list of ship to party and itinerary (optional)
         You can use route schedules in sales order, stock transfer and outbound deliveries.
         In customizing, you define whether a route schedule should be assigned for each shipping point, order type, purchasing doc. type (Delivering plant) and delivery type.
    Picking location / storage location determination: - MALA, RETA, MARE
    u2022     MALA: - determination based on the shipping point, the delivering plant, and the storage location (Material master-plant data/storage 1)
    u2022     RETA: - Determination based on the delivering plant, situation, and the storage condition.
    u2022     MARE: - First MALA then RETA
    Thanks
    Bhushan

  • Problem with IDoc for an outbound delivery

    Dear All,
    I am facing a problem with the IDoc defined for an outbound delivery.
    Scenario:
    Implementation of a small enhancement for an IDoc (DESADV, DELVRY01) created for an outbound delivery (in VL02N).
    What I did:
    I implemented the EXIT_SAPLV56K_002 exit in the V56K0001 enhancement, activated in SMOD, assigned V56K0001 component in CMOD and acivated it. Then I put a breakpoint on the ZXTRKU02 include. For me everything in SMOD and CMOD looks OK.
    I have also created a partner profile, port, outbound message config. (message DESADV, basic type DELVRY01, application V2, output message type LAVA, process code DELV. function module used for this process code is IDOC_OUTPUT_DELVRY).
    What I can do:
    I can issue an IDoc message, it looks ok and contains the standard data.
    Problem:
    It seems that the enhancement does not work. Finally I put there only one line of code to avoid a program bug and just to check . The system does not stop at the breakpoint (set on the ZXTRKU02 include in the EXIT_SAPLV56K_002 exit).
    Am I using the proper exit? I appreciate any suggestions.
    Thanks,
    Grzegorz Skorus

    Hello Grzegorz
    Not an expert on this, but noone is responding so I thought let me try and help you. You seem to be doing the right things as mentioned in OSS note 1498409.
    Firstly since this can be called form Shipment Idoc also, you may need to make a differentiation by the interface parameter 'MESSAGE_TYPE' or segment name. See the attached OSS note, though it belongs to older releases,  it may help you.
    Also help says 'The callup of this function module is programmed for each enhancement of the internal table for the IDoc (in other words, when you add an extra segment'. So may be you need to add an extra segment/field to make it work.
    Futher  the user exits are replaced by BADIs. May be you should use exit_badi_v56k.
    Hope this helps and others will pitch in.
    1498409 - Valuation Type unavailable when creating deliveries using IDOC
    631913 - Exit after formatting delivery IDoc type DELVRY

  • Control Over Outbound Delivery/ System based release strategy for Outbound

    Hi All,
    I am working on one scenario to control the outbound delivery
    AS IS : Sales Employee  A accepted Order on 6th ,Decu201908 for customer B and order quantity 2 Product ABC to deliver on 15th u2019Decu201908 .
    in between Sales Employee B accepted Order on 10th ,Decu201908 for customer C and order quantity 2 Product ABC to deliver on 12th u2019Decu201908.
    In this circumstance the Sales Employee B delivering the products to Customer C on 12th u2019Decu201908 ,which the products  kept for Customer B. and Sales employee A not able to deliver the goods to Customer B on promised date.
    TO BE : How do I control the Sales Employee B should not pick the goods which are reserved by Employee A for customer B.
    I would request you to give me the possibilities to control the OBD
    Thanks in advance.
    Regards,
    Padma
    Edited by: Padma Priya on Jan 6, 2009 7:50 AM
    Edited by: Padma Priya on Jan 6, 2009 7:52 AM

    Dear Padma
    Go to material master and check what availability check you have maintained.  Then go to OVZ9, select that availability check with the combination of  "A" and execute.  There tick the box Include sales reqmts  so that stock will be reserved whoever creates the order first. 
    In your case, if Sales Employee A creates the sale order first and stock is available, then stock will be reserved for that order only and it cannot be diverted to subsequent orders, unless the first created sale order is deleted.
    In this, there is also one constraint.  Even if order is not confirmed by customer, some sales people will create a dummy sale order and reserve the stock for them.  So in that way, some control should be there in such a way that orders can be created by any sales persons but the deletion option can be given to some higher officials.  This basis can very well do.
    thanks
    G. Lakshmipathi

Maybe you are looking for