New planned goods issue date during delivery creation due to changed route

Hello All,
I have defined 2 routes with different values for transit time and transporation lead times. I have configured routes such that in order creation - route A is determined and while delivery creation due to weight group - delivery B is determined.
Now for Route A i have maintained transit time of 3 days and Transportation lead time of 4 days and for Route B it is 1 day each.
Delivery scheduling is active for the order type.
Now when i create the order with a delivery date of say 05/24/2010 then (route A with transit time of 3 days) is determined and the planned goods issue date of 05/21/2010 is in the order.
Now while creating delivery (Route B which has transit time 1 day) is determined due to the weight group. But the planned goods issue date is still the same 05/21/2010 as in order.
I am assuming that since the route B has a route of 1 day so the planned goods issue date should be re-determined to 05/23/2010? IS there no scheduling done during delivery creation even though route and subsequently transit time has changed?
Please let me know the answer to this...
Thanks
Shobhit

Hi ,
You can use TA - MASS . Enter object type - BUS2032(for sales orders) on initial screen and select sales item data.
Next screen enter selection fields like sales order no and items. After giving order no and item range , execute and enter all new values for any item data fields. After pressing button "carry out mass change", don't forget to press save button.

Similar Messages

  • Actual goods issue date required to be equal to planned goods issue date

    Hi All,
    Can anybody tell me on what basis does the actual goods issue date get determined and what needs to be done if we want to restrict the actuall goods issue date to be equal to the planned goods issue date?
    Avinash

    Avinash,
    Can anybody tell me on what basis does the actual goods issue date get determined
    ???? It is the date that the goods are actually issued from stock, e.g. whatever the date was when the delivery was actually issued, that is the date that is normally written to this field in the delivery.
    what needs to be done if we want to restrict the actual goods issue date to be equal to the planned goods issue date
    That's a pretty restrictive criteria.  Basically, you are telling the warehouse that they are not able to issue the goods early or late.  In companies I have seen, that would constitute a lot of deliveries.  Hope your customers don't need the parts....
    Anyhow, the restriction would have to be against the goods issue transactions being used by the warehouse.  I don't believe there is any standard configuration that creates such a restriction, so it would require custom development.  If you pursue this restriction, make sure you leave yourself some kind of override.
    In many companies, this problem is handled through policy and procedure.  Warehouse manager simply creates a policy about early and late goods issues.  The system will track discrepancies in the case the policy is not followed.
    Best Regards,
    DB49

  • Want to change Del Date and Goods Issue date in Delivery scdl tab of PO

    Hi Gurus,
    I am in a situation wherein i need to change the Goods Issue date in Delivery schedule tab of Purchase Order and make it equivalent to Delivery date in the same tab.
    Currently the Goods issue date that is taken by default will always be one day after the Delivery date.
    Where is the control for this???
    Regards,
    Trishul

    Hi Jürgen,
    Thanks for your response. You are right. The Process is STO.
    The delivery has not been created as yet.  Everything is happening while creating the PO. The settings are such that the delivery date will be taken by the system automatically by doing the Availability check and simultaneously the goods issue date will be updated. But it will be one day later to the delivery date. But i want this to be same.
    Incase if i change the Goods Issue date manually, this is the message i get "Goods issue cannot be carried out in the past"
    Message no. V1062
    Please let me know if i am not clear.
    Regards,
    Trishul
    Edited by: Trishul Das on Mar 17, 2009 4:09 PM

  • Planning Good Issue date and loading date

    Hi All,
    How I can get the planning Good issue date? I found that the loading date is the same as the planned Good issue date, what's the loading time?
    As what I understanding, loading date + loading time = Good issue date,  But I am not sure how to calculate the planned Good issue date.
    thanks,

    Hello Friend,
    It is determined in Shipping Point configuration.The path is as follows SPRO--> Enterprise Structure >Definition>Logistics Execution-->Define, copy, delete, check shipping point and go in detail the concerned shipping point.

  • Planned Goods Issue date

    Hi,
    We have the system set up as follows:
    When the user enters the delivery date, and then material, route determination occurs. If, for example, there is a lead time of two days on the route, the Goods Issue date is set to two date before the delivery date.
    The user can enter many items.
    If, for different reasons,  the lead time is only a day, the user has to drill down on each item multiple times to change the Goods issue date. We are looking for a quick way, something similiar to "Fast change of delivery date" to change the goods issue date.
    Please share your experineces or proposals on the above problem for the user.
    Thanks in advance,
    Finbarr

    Hi ,
    You can use TA - MASS . Enter object type - BUS2032(for sales orders) on initial screen and select sales item data.
    Next screen enter selection fields like sales order no and items. After giving order no and item range , execute and enter all new values for any item data fields. After pressing button "carry out mass change", don't forget to press save button.

  • Change goods Issue date and delivery date

    while crating Sales document through VA01
    i want  to replace goods issue date (VBEP-WADAT ) with my Z calender date.
    so that delivery date(ETDAT) aslo should chaged automatically ( bcz iof the change in goods isuue date ).
    how to achive this ?
    i tryied in  Program    program of MV45AFZZ/ MV45AFZB in the User Exists mentioned below:
    1.     Form Userexit_Check_VBEP
    2.     Form userexit_move_field_to_vbep
    i was able to change goods issue date (VBEP-WADAT )  but  not refleting in output screen,..
    regards,
    ramesh

    Hi Venkat,
      Even it did not update in my user exit when I update from VBEP-WADAT.  So, I did back calculation (considering route lead time) and updated Delivery date field VBEP-EDATU.  It is simple.  I have given the sample code as below.
       if lines( xvbap[] ) = 1 and VBEP-ETENR = '0001' and            "Calculate RDD while the first line item entered
         vbap-route <> space and <<your GI date>> is not initial.    "Only when header RSD is filled
          select single TRAZTD into ws_traztd from tvro
                where route = vbap-route.
          ws_days = ws_traztd / 24 / 10000.
          if ws_days <> 0.    "Only when Transp. Lead time is maintained ( So, will not affect other entities )
             select single FABKL into ws_fabkl from T001W
                where WERKS = vbap-werks.
             CALL FUNCTION 'WDKAL_DATE_ADD_FKDAYS'       "Calculate as per Factory calender
                 EXPORTING
                   i_date        = <<your GI date>>
                   i_fkday       = ws_days
                   i_fabkl       = ws_fabkl
                 IMPORTING
                   E_DATE        = ws_date
                  E_FKDAY       =
                 EXCEPTIONS
                    ERROR         = 1
                    OTHERS        = 2
             IF sy-subrc = 0.
                VBEP-EDATU = vbak-vdatu.   "copy to the first line item
             ENDIF.
          endif.
        endif.    "Route days

  • Actual Goods Issue date and Planned Goods Issue date

    Dear All
    we are loading the january,08 sales  invoice from the legacy system to SAP system through BDC program.
    for this at the time of PGI we are using Actual GI date as month of January, 08 and keeping planned GI date as the system date and at the time of creating sales order, delivery, we are not changing the material available date, loading date, delivery date, at the item level and system taking automatically based on the current date
    when doing PGI system accepting and creating PGI document and billing also creating based on this delivery.
    But dose it give problem in Inventory managements and FI in future, then what would be the right procedure to uploading the back dated invoices in the system.
    Please give me solution for this issue, or what we are doing is the right procedure.
    Thanks In advance

    For those who might come across this note, the design issue was solved by incorporating Rule Groups.
    Problem:
    Need to have 2 different Date references for 0calday, based on the key figures. For example for Sales key figure date it would reference to Actual GI Date. But, for Intake key figure I needed the date reference to be Planned GI date.
    Solution-- applied to the transfer rules of the desired cube:
    1. In the starndard rule group delete the transfer rule for the appropriate key figures. in this case (sales key figure)
    2. In the same rule group map all time characteristics from the cube to Planned GI date from DSO
    3. Create a new rule group in the transfer rule between the DSO and the Info Cube
    4. In the new rule group, create a new rule for the appropriate key figure i.e. sales
    5. In the new rule group, Map the date/week/month/fiscal period to Actual GI date
    6. save/activate
    This solution eliminates the need for changing the data model, which makes everything almost transparent to the report users.
    Hope this helps someone.
    Edited by: Babak Shafiei on Dec 12, 2008 5:23 PM
    Edited by: Babak Shafiei on Dec 12, 2008 5:24 PM

  • Planned Goods Issue Date adds by 7 days

    Hi,
    I have an issue with GI date increasing by 7 days when we do picking by vl06p.
    Delivery copies with the exact dates of the sale order but once the picking happens the GI date adds up to next 7 days. we  have route schedule active, but the Actual PGI was before the Route Schedule date,even then 7 days are added to GI date
    please help

    dear Varada,
          check in the material master whether the planned del time  and GR processing time is mentioned in MRP2 view.
    May be because of that you are having 7 days difference.
    Regards,
    Sudhir

  • Settings in Actual Goods Issue Date for Delivery Document

    Hi Masters,
    We have a Requirement in Which the client wants that while Creating Delivery Document through VL01N the Actual PGI Date Entered should not be before the Panned GI Date it should be only After the Planned GI Date. If the user Tries to Enter the Actual GI Date which is before the Planned GI Date the System should not Accept it and should give and Error.Please tell how to Configure this.
    Thanks in Advance.

    Hi,
    Pls make use of Status profile for the user as well as maintain proper schedule lines
    regards
    DSR

  • What is the difference between delivery date and actual goods issue date?

    Hi ,
    Can you please tell me the difference between Delivery date and Actual goods issue date ?
    Delivery data can be be greater than goods issue date?
    Thanks,
    Ajay

    Hi Ajay,
                  Delivery date means its the original date on which the delivery should be done.Actual goods Issue date is the date on which goods to be delivered according to the purchase order.There can be delay in the delivery so we maintain 2 objects.
    Yes delivery date can be greater than Goods Issue date.
    Hope this clears
    Regards
    Karthik

  • Calculation of goods issue date in scheduling agreements with routes

    Hello together,
    i have a problem with the calculation of goods issue date in scheduling agreements when we use route, because the system ignore the days of transit.
    Example:
    We had customized the route 4711 with a transit time of 3 days. This route would be related to a scheduling agreement. But this setting has no influence to the calculation of the goods issue date for the schedules. The same happens with loading date and so on.
    Can anyone give me a tip, which setting is additional necessary?
    Regards
    Andreas Walter

    Hi,
    check the following settings
    1, Route determination Path : IMG>sales and distribution>Basic function>Routes>Route determination
    2, Activate the route Determination for your sales document type in following path :IMG>sales and distribution>Basic function>Routes>Route Schedule Determination-->Schedule with route schedule for sales document type
    3, Maintain Delivery scheduling and transportation scheduling in the following path:IMG>sales and distribution>Basic function>Delivery scheduling and transportation scheduling>Maintain Duration
    Regards
    Senya

  • Incorrect goods issue date

    Hi All,
    When we run availabilty check, the goods issue date falls on non-working days. We have used Enhancement APOSC002 in APO system to populate shipping calender.
    Any suggestions please.
    Thanks,
    Krishna

    > I have maintained goods issue date in delivery and am creating an invoice for the same delivery, when an idoc is getting triggered am not getting goods issue date in invoice idoc the qualifier would be 035..has anyone come across this issue, all the help will be highly appreciated and rewarded..
    Maybe, you can use custom function exit to transfer date to Idoc? Have you looked at this note:  [Note 127178 - Questions about user exits in IDoc INVOIC01 (FI)|https://service.sap.com/sap/support/notes/127178]
    Regards,
    Jakub

  • Automating Goods issue during Delivery creation

    Hi all,
    We have a requirement to automate the Goods issue creation for certain type of orders when the Delivery is getting created. The orders that need to be automatically Goods issued during delivery creation are identified based on certain plants. These plants are linked to certain output type and in the output type routine is the standard program RVADEK01 with one additonal code for automating the Goods Issue creation.
    We have a custom table that holds the status of orders and there is a code in user exit userexit_save_document_prepare which changes the status of the order as closed when the goods issue is done.
    But when the delivery is saved, in this case when an automatic goods issue needs to happen, when the flow reaches this user exit, the output type code dosenot get executed and the Goods issue is not done and so the custom table will not be updated with the closed status. So we are in need to findout a place where we can update the status of the order in that table.
    The output type code is not executed even before the other user exit userexit_save_document. The output type code gets executed and goods issue is done after the this userexit_save_document when the COMMIT statement is executed in the subroutine BELEG_SICHEN_POST in the include FV50XF0B_BELEG_SICHERN.
    I need help in finding out if any user exit or badi is called after this commit statement, so that I can add my code to close the status of the order in my custom table. Just after this commit the Goods issue happens and the VBFA table gets updated with the 'R' records for goods issue.
    Please let me know if anyone has any idea on this. The ultimate goal is to find some place after the goods issue is done to update the status of the order as closed in the custom table we have.
    Thanks,
    Packia

    Dear Siva,
    As informed yesterday I changed the language from DE to EN, to match the other shipping points settings in table V_TVST, this did not bring the solution.
    Please let me summarize, I am really desparate here:
    This is only IM related, Not WM.
    Picking lists are not printed for any Shipping Point from this warehouse, this is just a small subsidiary of my customer in Finland.
    Issue is not Aut. PGI.
    VP01SHP has not been configured for any shipping points, still there we do get the PR except for the new shipping point.
    In the deliveries of correct processed shipping points  I do not find any picking output type.
    Item category in new shipping is equal to Item category in already existing shipping points, so no need to config here.
    There is no picking block active.
    PR creation happens once I enter the pick qty in the delivery in VL02N. This is the part that we need to have automated.
    Can you please try to help me out?
    Tnx & regards,
    Chris

  • Goods issue dates are different in sales order & delivery

    Hi,
    We have a situation where in sales order schedule line tab goods issue date is 21.30.2011
    but in delivery the planned GI date is 28.03.2011.
    There are two line item in the sales order & in both the line items all the dates are same.
    Same route is there in sales order & delivery.
    In delivery Item category avalability check Off is Y(Do not check avail. when reporting results of pick.request)
    All the dates(delivery,loading,Transportation planning) are different .
    waiting for responce.
    Thanks In advence
    Susrikant

    goods issue date is 21.30.2011
    What was the Actual GI date in delivery??  This should be the same as schedule line date.
    thanks
    G. Lakshmipathi

  • How to fetch post goods issue date and sales order creation date

    Hi All,
    How to find out the difference between SD Sales Order Item Creation Date and final Post goods issue Date. I would like to know how to fetch those dates and what is the relationship between the tables from which i will get the dates.
    Please let me know the solution .
    Thanks in advance.

    Hi,
    Sales order creation date is when u raise a sales order in favor of the customer using VA01.......using ATP logic system purposes the material availability date....
    after saving ur sales order...when u raise the Delivery using VL01n  w.r.t to OR...than u have to perform picking ....In the picking Tab...specify the amount to be picked than press Post Good Issue....means the goods left the company premises ..
    You can the fetch the values using tables-  Use T code   SE12  or SE16
    Vbak-----order header
    Vbap-----order item
    Vbek-----order schedule line
    Likp-----Delivery header
    Lips----Delivery item

Maybe you are looking for