Change of scedule finish date

Hi Gurus,
I have items of two operations on a routing with different work centers and control keys. Now, my production order is calculating the finish date as per the sceduling as of operation one.I need the production orders to work out the finish dates of an order by the operation two.
Please help me how i can handle this...?
Thanks for your understanding.
Naveen.A

Naveen,
In Scheduling parameters(OPU3) for the Plant & Order type combination define 'Adjust Basic dates to Scheduled Dates". Once this setting is there after the order is scheduled you would get have a same date for Scheduled Order finish and Basic Finish dates and this would be again based on the last operation completion dates.
Regards,
Prasobh

Similar Messages

  • Change of Basic Finish Date for a Maintenance Order

    Hi Experts,
    I have a requirement where I need to change the Basic Finish Date of an order. Currently in config for order type and plant combination, scheduling parameters are set as:
    Adjust to Basic Finish Dates
    Automatic Scheduling.
    If in an order, I remove the tick for Automatic Scheduling, I am able to change that but I am not supposed to do that.
    Can you suggest me how thisissue can be resolved. Remember, changing the Config is not an option.
    Regards...

    hi
    Since you have done the adjust basic dates ,kindly change the operation dates ,which will automatically change the dates specified in the operation dates
    regards
    thyagarajan

  • BAPI_PROCORD_CHANGE need to change GLTRS (scheduled finish date)

    Hello -
    I am writing a program where I need to change the scheduled finish date (field GLTRS) in a process order (transaction COR2).  I would like to use the bapi BAPI_PROCORD_CHANGE but it does not contain that field in the input structure. 
    Does anyone have any ideas how I can change that field without writing a BDC?  I am also curious to know why it was excluded from the bapi in the first place.
    Thanks!

    Hi Ferry,
    Thank you for your quick reply!
    That is very close to what I need, but it only updates GSTRS (scheduled start) and I need to update GLTRS (scheduled finish). 
    Can you think of any other suggestions?  I have also looked at BAPI_ALM_ORDER_MAINTAIN, but it doesn't have GSTRS as an input either, and doesn't seem to work for the order type I need.
    Thanks again,
    Susanna

  • Change notification Planned finish date in IQS3

    Hi!  Im not sure if this is under MM.  In changing Planned Finish dates in IQs3, I would like to ask why the system is not allowing us to change the date in the Detail Level.  But it is allowing us to change in the Item Level.  Please explain the reason for this.. Thanks so much!

    the dates in prod order comes from current scenarion (capcity) availble at system (Work center)
    planned order, dont consider capacity at all.
    and if you convert a planned order which has prodcution date as today and there is enough capacity, i dont think after conversion it will change dates.
    Pravin

  • Change notification Planned finish date in IQS2

    Hi! In changing Planned Finish dates in IQS2, I would like to ask why the system is not allowing us to change the date in the Detail Level. But it is allowing us to change in the Item Level. Please explain the reason for this.. Thanks so much!

    the dates in prod order comes from current scenarion (capcity) availble at system (Work center)
    planned order, dont consider capacity at all.
    and if you convert a planned order which has prodcution date as today and there is enough capacity, i dont think after conversion it will change dates.
    Pravin

  • Collective orders header order basic finish date is not changing

    Hai all,
    I am working on collective orders. The header order has Basic finish date as 17.05.2011 . Now i have changed this date to 10.05.2011 and re scheduled the order . But again system changing the Basic finish date to 17.05.2011. how to solve this.
    In the outline dates also i have given finish date 10.05.2011 it is remaining the same but order Basic finish date is not changing and schedulded dates are also not changing. can anybody help.

    Hi gurus,
    In a collective order suppose the lead order is having three child orders.  Kindl
    If one of the child order is partially confirmed is the entire collective order can be rescheduled.
    If one of the child order is Fully confirmed is the entire collective order can be rescheduled
    Can any body help me out

  • Trying to update Project scheduled finish date - newbie help needed!

    Guys, I am super new to Oracle Projects, I have never used it before.  I've just learned a few things in the UI and read through the docs documenting the stored procs.  My question is simple (hopefully)   In the UI I choose a responsibility, then under "Projects : Delivery" I choose "Search Projects", I enter the Project ID in the field and click Go, I am able to see all the project details and the Tasks.  No problem there!  What I would like to do through the Update_Project API is to change the "Scheduled Finish Date" of the Project.
    I have the following information that I have managed to scrape up:
    Project_id, Responsibility_id, User_id, Resp_Appl_Id
    I retrieved the project id using:
             Select project_id,name from pa_projects_all
              where name = 'My Project';
    So first I call set_global_info with the appropriate parameters, then this:
        -- SET GLOBAL VALUES
         pa_interface_utils_pub.set_global_info(
         p_api_version_number => 1.0,
         p_responsibility_id => fnd_profile.value('57203'),
         p_user_id => fnd_profile.value('1013415'),
         p_msg_count => l_msg_count,
         p_msg_data => l_msg_data,
         p_return_status => l_return_status);
         l_project_in.pa_project_id := 4608;
         l_project_in.scheduled_finish_date := to_date('2008-02-27', 'YYYY-MM-DD');
      --UPDATE_PROJECT
              pa_project_pub.UPDATE_project(
                        l_api_version_number,
                        p_commit => l_commit,
                        p_init_msg_list => l_init_msg_list,
                        p_msg_count => l_msg_count,
                        p_msg_data => l_msg_data,
                        p_return_status => l_return_status,
                        p_workflow_started => l_workflow_started,
                        p_pm_product_code => null,
                        p_project_in => l_project_in,
                        p_project_out => l_project_out,
                        p_key_members => l_key_members,
                        p_class_categories => l_class_categories,
                        p_tasks_in => l_tasks_in,
                        p_tasks_out => l_tasks_out);
    What I am getting is the message "error :Project ID is invalid" and the status is "E"
    I'm not sure why it is invalid as it is the exact Project ID from the projects table.  The only thing I can think of is that the p_pm_product_code is set to null but I am not sure where this value comes from and why it even matters.  I checked the documents and it says it refers to some external system.  Why does the external system code matter if I am changing data within Oracle Projects?

    Hello,
    Looks like you are not setting the Initialization values correctly. Oracle Project APIs are Org specific and require proper initialization before being called for them to work.
    Few things i noticed from the code is :
    1.  The following is being used to set the User ID and Responsibility ID  :
         p_responsibility_id => fnd_profile.value('57203'),
         p_user_id => fnd_profile.value('1013415'),
    I think the call should be like this. This should be used only if you are going to call the API through a concurrent program from the submit request window (Oracle Apps environment). fnd_profile.value will get the responsibility id and the used id of the user running the program and assign it to the variables.
         p_responsibility_id => fnd_profile.value('RESP_ID'),
         p_user_id => fnd_profile.value('USER_ID'),
    Or If you are directly passing the IDs hardcoded then, This can be used if you are running the script from a Non-Oracle Applications environment, for example from SQL*Plus.
         p_responsibility_id => 57203
         p_user_id => 1013415
    2. I notice that you are not passing P_OPERATING_UNIT_ID parameter in the call to pa_interface_utils_pub.set_global_info. This is fine if you are not using MOAC  and you have set MO: Operating Unit profile for the responsibility being passed.  If you are using MOAC or are not sure, then it is always a good practice to explicitly  pass the P_OPERATING_UNIT_ID parameter in the call to pa_interface_utils_pub.set_global_info.
    Note :  DO NOT use fnd_profile.value('ORG_ID') to set the P_OPERATING_UNIT_ID parameter. In a MOAC environment this may not work.
    3. Always ensure you check the return status of the pa_interface_utils_pub.set_global_info for success before calling the Project APIs. This will save you a lot of frustration when testing.
    4. You might find the following note useful
    Project API Overview and Reference (Doc ID 1424156.1)
    Regards,
    Raghavan Gopalakrishnan

  • Material Availability Date and Corresponding Basic finish date

    Hi experts,
    I have one requirement from my Business for updating Basic Finish date based on the Material availability date
    Requirement goes like this, When we enter a Component of 100 qty  in the service order , if stock is not available we get system status as MSPT and IWBK we can see how much quantity confirmed
    But i dont see any table or report which shows when this material can be available for further delivery. Based on the next available material date i have to change the basic finish date in the service Order
    Please let me know if you any report available for this or any standard approach. I want to know if any exist to leverage this functionality and logic how to get this accomplished
    thanks
    sarvan

    Sarvan,
    You would need to perform this check when saving the work order as there could be multiple components all with differing ATP dates.
    But a development could do something like:
    Read all active/open components/materials on the work order
    Determine the availability data for each component/material
    Determine the latest of the above dates
    Apply this date to the order Basic Finish Date
    You would need to ensure your scheduling parameters do not set this date back to its original value (OPU7).
    You could achiev the above through user-exit IWO10009 (SMOD) or BADI WORKORDER_UPDATE (SE18).
    PeteA

  • Basic Finish Date in Service Order

    Hi Gurus,
      I want to change the Basic Finish date in the service order. The
    system is allowing me to change it in the change mode of service order
    (IW32), but after saving when I come back and see the order again, it is
    showing the old date only. I want to change the Basic Finish date as
    10.09.2007. Could anybody please guide?
      Prassee

    Hi Thyagarajan,
    Thanks, I have already checked the same. For the order type and palanning plant, the date adjustments set as " Adjust basic date.......", but still it is not allowing me to change the basic date.
    Prasanth
    > hi prasanth
    >
    > check for you order what scheduling parameters are
    > you maintained.if the Adjust shchduling is set as" DO
    > not adjust basic dates:, then i think your problem
    > will occur.
    >
    > regards
    > thyagarajan

  • How to import Expected finish date

    Hi all,
    It would be a great help if someone would tell me how to import the Expected finish date in P6 using Excel import. I actualized the start of an activity by changing the actual start date and tried to change the Expected finish date the same way....but the activity got actualized but didnt get the expected finish date .
    Plz help

    Since the Excel export has an * before the name, that indicates it can't be imported. How about creating a UDF (User Defined Field) for Activitiy Finish Dates, Importing it and then doing a Global Change from the UDF to the Expected Finish? That should work.

  • Changing basic finish date in Preventive maintenance orders

    Hi Experts,
    My requirement is to block PP work centre when maintenance schedule the equipment for preventive maintenance. I am making system condition as zero in generated preventive maintenance order but basic finish date is not changing in the order automatically. Can anybody please explain how to bring this? Finally my requirement is system should change basic finish date and time as time given in operation of task list.
    Thanks in advance.
    best regards,
    Srinivas M

    Hi Praveen,
    I have done all setting and tested but there is no change.
    My client requirement is like this - whenever maintenance plans are scheduled, for the scheduled dates, production capacity should not be considered by production. We could do this for breakdown orders but not happening for PM orders unless we change the finish date.
    The issue is to get the finish date automatically when scheduling maint.plans with respect to values given in operations. Please suggest how to get the  basic finish dates automatically.
    best regards,
    -Srinivas

  • Basic start date and finish date changing in the past

    Hello Gurus,
    I set the scheduling parameters as " Do not adjust basic dates, dep rqmts to order start " and also assigned the priority to populate the basic finish date. System does calculate the finish date based on the priority and start date as current date but it does allow me to change both dates in past or future which should not happen.
    Please do note that I activated the defaulted date as current date as well. Even I removed this mark and did not work.
    Please let me know if there is any way to restrcit the changing it alteast in the past.
    Mahee

    This can be prevented using one the following ways depending upon your needs
    ---> Set the "start in past" field to appropriate value using transaction OPU7 for order type /Plant combination
    ---> Make the "Basic start date  and Basic end date" fields as "Display only" through the Field selection config for the order type.
    ---> Use the user exit on "SAVE" of the order to check for the same
    Regards
    Narasimhan

  • Work Order Basic Start Date and Basic Finish Date to be changed

    Hi,
    Currently the business creates work orders without specifying the work resulting which the start and fish dates on work order are same. Also we have automatic scheduling turned off. In spite of this If I am trying to manual modify the basic start and basic finish dates on work order it does not allow me to do so. This issue is seen with work orders which are Released whereas orders with status outstanding have no issues. Could anyone please let me know what could be the reason?
    Thanks,
    Vinay

    Please check whether Scheduling type only capacity requirement is configured.
    If yes, choose this scheduling type in order, you can able to change Basic start date & basic finish date.

  • Export Project and Change the Duration Cause the Finish date error

    I use VB.NET to create a MS Project Instance and use this Instance to add task, and set task's Name, Start and Finish, the Project file is created successfully, and the Duration value will be automatically generated by Project, but if I change the Duration
    value in Project, the Finish date isn't correct, for example, if I set the the Start is "10/21/2014" and Finish is "10/31/2014", the generated Project file has a Duration value is "9 days", and if I change the Duration value to
    "2 days", the Finish date will be changed to "10/21/2014", why this problem happen? I have no idea about this problem.

    when you set Start is "10/21/2014" and Finish is "10/31/2014", the generated Project file has a Duration value is "9
    days" because it is taking Saturday and sunday as non working days.
    By default in Project server calendar both Saturday
    and Sunday are non workng days. If you want to make these day as working day you have to configure the calendar once you will do it then it will display duration value as 11.
    When you change the value then after changing value click on Calculate button so that project server can calculate value correctly it is not required to click on Calculate
    all the time but some time project server takes time to reflect the chnages but if you will publish the project it will calculate correctly and display proper finish date ( I
    change the Duration value to "2 days", the Finish date will be changed to "10/21/2014 as 10/23/2014)
    kirtesh

  • Finish date changed in Scheduling

    Hello All
    I am facing one problem in scheduling.
    I have one production order 7734413.
    Order is not released.
    Always I am using back ward scheduling. I am working on  4.7 version
    In production order Basic finish date is 07.11.2007 and basic start date is 28.10.2007.
    In factory calendar Tuesday is holiday.
    Now suppose I want to change finish date as 08.11.2007 and then I do scheduling.
    Then system is proposing 09.11.2007 as finish date and start date as 31.10.2007.
    That means after scheduling system is proposing one day ahead of finish date.
    But if I enter finish date as any Wednesday then it is accepting the same as finish date.
    Suppose I enter 14.11.2007 as finish date and if I do scheduling then system proposes 14.11.2007 as finish date. Here system is not proposing one day ahead of finish date.
    Other details are as follows :
    Schedule margin key
    Opening period – 10 days
    Float after production – 5 days
    Float before production – 2 days
    Main thing I facing problem in scheduling on all days except on Wednesday.
    Please let me know the solution.

    Hi
    you an go through the following notes:
    Basic finish date
    Date on which the required quantity of the material is available (that is, the requirements date of the material).
    If, on order creation, a planned order exists for the production order/ process order, the basic dates are copied from the planned order.
    If no planned order exists on order creation, you must specify at least one basic date.
    The scheduling type determines the basic dates that you must specify.
    Dependencies
    The order finish date is accurate to the day. However, for scheduling, production requires a completion date that also specifies the time. To ensure that the material to be manufactured is available on the order finish date, the completion date must be before 00:00 hours on the order finish date.
    If, however, an in-house production time of 0 days is maintained in the material master, an exception is made to this rule. In this case, it is assumed that the material can be manufactured in a single workday. The completion date is then before 24:00 hours on the order finish date.
    Example
    The last operation of an order was completed on Thursday at 5 pm (17:00 hours). No float after production was maintained for the order.
    If an in-house production time greater than 0 days is maintained in the material master record, the order finish date is Friday.
    If an in-house production time of 0 days is maintained in the material master record, the order finish date is Thursday.
    Regards
    YMREDDY

Maybe you are looking for

  • Encoding Spanish Characters

    I've read that AMERICAN_AMERICA.AR8MSWIN1256 supports both Arabic and Latin. When I insert data from .NET to Oracle, accented spanish characters are being replaced by question marks. Does AMERICAN_AMERICA.AR8MSWIN1256 support spanish or I'm missing s

  • Got problem when installing air app on iphone simulator

    Hi, when i execute this command: adt -installApp -platform ios -platformsdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/S DKs/iPhoneSimulator5.1.sdk -device ios-simulator -package test.ipa I got a error: dy

  • Bold font in Yosemite Messages

    I am sure this is a font thing, but I can't figure out how to change it. I have seen the settings for larger and smaller, but can't see a way to change it from non-bold. This is happening on iMessages as well as Jabber and other chat platforms. Any t

  • Viewing Russian and Greek in Safari

    Dear Common Wisdom: Why can't I view some Russian and Greek texts in Safari? Here is an example: image> http://www.psaltiki.net/Picture-1.png live site> http://www.psaltiki.net/ru/index_ru.html Kostas Aegina Isalnd, Hellas [email protected]

  • LSO Correspondence - Empty Mailbody

    Hi SAP-HR-Specialists, my problem concens the following aspects: Situation: LSO CORRESPONDENCE due EMAIL for booking/inform a training participant by request-based correspondence --> The participant needs to get the confirmation of booking, an inform