Latest finish date of operation

Hello all,
I have one report for planned order in which i have to display the latest finish date of all the operation in that particular plnned order.
can you please tell me from which table i can get the latest finish date of the operation.
I have used the table KBED, but in table KBED i am not getting data for all the operation in planned order. I am geting only one or two operation
Is there is any other table or any other way by which i can find the latest finish date for the opeartion.
Please help.

Hello,
I have checked the PLAF table, it is table for planned order. I need details of operations in that particular planned order,
thanks

Similar Messages

  • In which table we get latest finish date of operation

    Hello all,
    I have one report for planned order in which i have to display the latest finish date of all the operation in that particular plnned order.
    can you please tell me from which table i can get the latest finish date of the operation.
    I have used the table KBED, but in table KBED i am not getting data for all the operation in planned order. I am geting only one or two operation in table KBED.
    Is there is any other table or any other way by which i can find the latest finish date for the opeartion.
    Please help.

    Hello Rudra,
    I don't want dates of planned order.
    In planned order we have number of operation.
    I want latest finish date of these operation,
    In table KBED we get the latest finish date but i am not able to get details of all the operation.
    In table KBED i am getting detials of only two operations where as in planned order i have 7 operations.
    Thanks

  • CY190001 - calculate latest finish date

    Hello experts,
    in ennhancement CY190001  i need to change schedule data for a plan order.
    My problem is to calculate the latest finish date, i can not do it manually because off the complexity (calendar day, break, work center time...many parameters) then i'm looking for a function to do it.
    I try with FM CX_PLAN_SCHEDULE but doesn't work and doesnt accept start time, i'm looking in function gr.CXTM....
    If anyone know a FM to do it, please help me.
    Thank in advance
    Boris

    Hello,
    I have checked the PLAF table, it is table for planned order. I need details of operations in that particular planned order,
    thanks

  • Latest Finish Date

    Hi :
    I am trying to select Work Orders based on
    Planning Plant M600; system status excluding CNF, TECO, CLSD, DLFL including PCNF, CRTD, REL; excluding work order types PM04 & PM09; and excluding “latest finish dates” greater than 42 days in the future.
    How can i write condition for excluding work orders whose
    latest finish date ( mcafvgv-ssedd) greater than 42days in the future.
    Thanks.
    Raghu

    declare a variable & store the latest finish date in it for comparison. ie
    data: w_fin_dt type sy-datum.
    w_fin_dt = sy-datum + 42.
    check mcafvgv-ssedd gt w_fin_dt.
    ~Suresh

  • How does the GR processing time affect the scheduling of the process order & the latest start date in the operation.

    Hi
    Can anyone explain  how does the GR processing time affect the scheduling of the process order & the latest start date in the operation overview.

    Hi
    GR processing time means number of workdays required after receiving the material in storage.
    Check this link:GR Processing time
    Regards,
    Anupam Sharma

  • Earliest/Latest start - Earliest/Latest finish in master recipe scheduling

    Hi everybody,
    I'm struggling here to understand why only phases 0061 and 0071 have different earliest and latest starts and finishes.
    This is a very simple example with all the relevant phases being set for a 1 hr duration.
    This is a sequencial process (0011 - 0021 - 0031 - 0051 - 0061 - 0071 - 0081), except phases 0041 and 0091, which are not relevant for the analysis.
    These are the relations of phase 0061:
    And these are the relations of phase 0071:
    Any idea about what else could I check?
    Regards
    Fernando

    Hi Caetano.
    This example uses backward scheduling.
    What I don't understand is the different earliest and latest start time for phase 0071 and 0061.
    My screenshot shows a example of a master recipe scheduling having as finish date 28/03. So, following a backward scheduling way:
    phase 0091: not relevant (duration = zero)
    phase 0081: duration = 1 hour. Finish = 24:00:00 / Start = 23:00:00 (for both earliest and latest dates)
    phase 0071: duration = 1 hour. But then, latest finish = 23:00:00 and earliest finish = 22:00:00 ...
    back to phase 0051 you can see that this doesn't happen.
    Basically what I don't get is:
    If the operations have a duration of 1 hour each, why latest start of phase 0061 is 21:00:00 and the latest finish of phase 0050 is 20:00:00 and not 21:00:00 ?
    Regards
    Fernando Luz

  • 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

  • Scheduled start and Finish date .

    Hi Everyone,
    I am facing a problem in dates in creating a process order in Production .
    In the tcode COR1, when input the BASIC START DATE manually, the BASIC FINISH DATE ,scheduled start date and finished dates should get calculated automatically  as per standard SAP.
    The problem that I am facing is that , if I input the BASIC START DATE in future , the scheduled start date and finished dates are always coming as  the system date.
    whatever date I input in the BASIC START DATE  the scheduled start date and finished dates are always coming as  the system date.
    But this is not happening in quality and development server .
    Please help me if you have any solution
    Thanks
    Bijay

    Dear ,
    1.Scheduling parameter for new process order type and plant combination, to be defined at OPUZ . U can copy the settings at standard order type PI01.Here you should keep Backward Scheduling as Scheduling Type  and Keep the adjustment  Scheduling as Adjust to Basic Date , depenent requirement Date .
    Now  Order Basic finish date = Order Basic start date + float before prod + Lead Time of Operations (operation time from routing )+ float after prod.
    These floats are predefined in SMK  and assinged to material master .It comes through Planned Order after MRP run andcoped to Production Order .
    .2.Check and Define Scheduling Margine key in MRP -Carry All over all palnt paremtres (OPPQ)
    If you are MTS process , then Keep the Scheudling Type as Forward .Enter the Basic Start date and Scheduling Margine Days ( Opening periods , FBP, FAP) and then hit the Scheduling Indicator .It will calcuate all the dates based on the SMK and operation setup and propose you Basic Finish Date .
    So adjust the Flaots in SMK tab in process order , enter Basic Finish Date , Choose Bacward Scheduling to arraive Basic Start  or Go in reverse direction by choosing Forward scheduling .
    Hope its clear
    Regards
    JH

  • Scheduled finish date for process orders not updating in BW

    We are having problems with the scheduled finish date (GLTRS) for process orders. When the process order is already released, changes done in R/3 on the scheduled finish date will not result to a delta hence data in BW is not updated. Table AFKO, where data is coming from, is always updated with the changes though. 2LIS_04_P_MATNR is used in extracting the data.
    Has anyone experienced the same problem? We are looking for possible ways on how to have a delta whenever there are changes on the process order even after it is already released.
    Any help would be greatly appreciated...

    Hi Donna,
    If I've understood your problem correctly, you can increase the load frequency as Sriee has pointed out.
    If you want latest data frequently and if you are on BI 7.0 then you can look at Real Time Data Acquisition(RDA)
    Regards,
    Tom.

  • Production Order confirmed finish date

    Good morning,
    I have a question concerning the confirmed finish date (GLTRI) on the general tab of the production order header. We have an order that a partial confirmation was done on the last operation with no yield. This was the first confirmation of the order. The general tab shows a confirmed start date and a confirmed finish date. First question is why the confirmed finish date if nothing was completed. The confirmation was then canceled and the start confirmed date was removed but the confirmed finish date remained. More testing revealed if a final confirmation was performed on the last operation where it is set to do an automatic goods movement the start and finish confirm date was filled in. When the confirmation was canceled the start and finish confirmed dates were removed. Has anyone come across this before?

    dear John,
    I played in our TST system and found the same behaviour (which I consider is a standard).
    I can't see this "confirmed dates" settings in config.
    It seems like as soon the first entry comes in AFRU system sets the 'Start Confirmed' date even if LMNGA is zero
    After cancellation system cleans this field date because the order status comes back to REL (the was only the one zero partial confirmation which was cancelled later). but keeps 'Finished Confirmd' field populated. Of course, the second record in AFRU (the cancellation) is created.
    To avoid a misunderstanding I suggest advise your users to run CO14 (display prod.order confirmation) or just use COOIS.
    good luck!

  • 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

  • Production Order Basic Finish Dates

    Our plant managers expect production order start and finish dates to freeze at release, even when operation confirmations are not made according to schedule or when the component availability situation changes.  Is there a way to freeze the production dates without affecting the sales order schedule line dates--we're in a static assembly world.
    Thanks,
    Amy

    Dear Friend,
    As i said, in Production order, under Production order - Setting - Scheduling maintain the number of days in past (says 100 days).
    Now in below select the scheduling type as backward scheduling and in Finish date give the date which is in past and now enter (or schedule the order). Because of this system will propose the start date which will also be in past.
    Regards,
    JItendra

  • Actual Finish date and time

    Hii
    How can we set the actual finish date and time to be logged at the time of Technical completion ?? 
    Thanks and Regards
    BK

    BK,
    The "Work ends on" field should be open for edit in IW41.
    This field entry populates the "Actual finish date" in the operation when the "Final confirmation" flag is switched on in posting the time confirmation.
    Check the settings in the IMG for: Set Field Selection for Completion Confirmation.
    It sounds as though this has been set to "display only". There is no reason to have this control unless the system is set to enable posting in the future. Then folks would be able to cheat on their time.
    The future date posting should only be switched on in development or test clients for test purposes.
    However, from your description of the process, I would have expected the date and time to have defaulted as the current date and time.
    Could there be a user exit at work?
    We seem to have wandered away from the original question you were asking about setting the order "finish" date from technical completion. Were you refering to "Basic Finish Date"?
    The configuration in Define Proposed Reference Time for Technical Completion can be configured to be Current, Created on, Basic start, Basic finish, but this relates to the reference date of the order.
    Or are we on track now with the problem around the operation "actual finish date"?

  • 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

  • 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

Maybe you are looking for

  • Labview 2011 save for previous version crashes

    Hello, I am trying to save an existing Labview 2011 project to any previous version. I have tried 2010 all the way down to 8.0. I have a clean project, all files are LV 2011, it builds and runs correctly. I have mass compiled.  It did call 2 dynamic

  • Superdrive won't play burned DVDs

    So now my SuperDrive won't play DVDs that were burned by my superdrive. It will play store bought DVDs, however its hit or miss with the burned DVDs, every once in a while it will recognize a burned DVD, but most of the time you can hear it trying to

  • Variable strShow might not have been initialized

    <% String strShow,strFigure; for (int i=0;i<100;i++)      strFigure=Integer.toString(i); // does it really not be initialized ? strShow+=strFigure; // strShow can't automatically wisely assign memory space for itself ? %> the errors messages: variabl

  • Flash Player Won't Install - ActiveX and "Currently In Use" errors

    Hi all, I can't get Adobe Flash Player 10.3 to install.  I've followed the subinacl steps (http://kb2.adobe.com/cps/494/cpsid_49419.html) and all other suggestions about using the uninstaller, rebooting and reinstalling.  I'm a smart guy, but can't f

  • Hello, how can i record my own ringtones and acti...

    Hello,  how can i record my own ringtones and activate them for listening? thanks a lot for a feedback kind regards nils