Scheduling after entering Actual dates

Dear Members,
I have a scenario where I want to reschedule the project after entering actual dates for the activity.
Lets say,
An activity was planned for Duration : 8 Days and work : 64 Hrs  (Capacity is 8 hrs/day)
20.05.2009 to 28.05.2009
Now I am confirming the activity for the first time after say 4 days work :
20.05.2009 to 24.05.2009
but the work done is only 16 hrs.
Now the remaining work is 48 hrs in only 4 days.
Requirement is that... scheduling should shift the dates of the activity according to capacity and remaining work.
48 hrs can be completed in 6 days... so the finish date of activity should be increased by 2 days... from 28.05.2009 to 30.05.2009.
I hope I have put my requirement in a meaningful way... please help me on this...
(I know that instead of increasing the dates and delaying the project, it is recommended to overload the capacity and finish the activity withing the planned duration.. but I cant increase the capacity...)

Dear Amol,
I have come across the same business requirement in one of the project implementation.
So I had given a logic to my ABAPer to calculate the forecast duration and automatically bring the value in the internal activity screen.
The user exit used was CONFPS04, there is an include available where you can out the code for this enhancement.
Hence, whenever you will do the confirmation, as per the calculation you have given in your example, system will calculate & update the forecast duration field. Now, everytime you will do the scheduling, on the basis of the value in the forecast duration, system will schedule the project.
Regards,
Vikas D.

Similar Messages

  • In va02 tocde after entering the data only storage location field is not saving.why?

    Hai
    in va02 tcode after entering the data only storage location field is not saving. why?

    Hi Purnaiah,
    Are you using any user exit for this or not?
    Check for the below exit, this may be the place where you can implement your code for saving the value.
    SAP MV45AFZZ calling the user exit with a form USEREXIT_SAVE_DOCUMENT
    Regards,
    Rafi

  • Project Scheduling aligment with Actual Date

    Hi,
    I have Scheduled a Project in Planning Board and my first Activity (Architecture Design) was scheduled to finish at 30.06.2014.
    While the the next dependant activity was scheduled to start the next day 01.07.2014.
    Now my first Activity (Architecture Design) is finalised & confirmed (see actual in yellow) earlier than planned.
    Please can you tip, what shall I do to reschedule the project so that next activity is also planned to start earler (the next day after first).
    Or where do I set up this logic "if the activity on critical path is finished earlier, reschedule the whole project to as early as possible".
    I understand I can;t chage "Basic Dates", but the forecast dates shall reflect the state of actuals - right?  
    Cheers,
    Daria

    Hi Daria,
    Kindly ensure that the automatic log indicator is ticked on as well and send us the screenshot of the log that you are getting while rescheduling the network. (Using scheduling types Forward/Backward/Free Scheduling)
    Regards
    Varun

  • Auto populate Infopath 2013 fields after entering a data into a textbox.

    Firstly can I please say I am sorry to be revisiting this but I just can sort it out!!
    I have 3 fields in a SharePoint 2013 list, Code, Section, SubSection, after some guidance I am trying to use rules to populate Section/SubSection when a Code is entered.  I am getting the Data for the three Fields from an XML file. The form can see
    the XML data fine. Here's the BUT.. I cant seem to get the quering correct to autofil the other two fields.
    I promise this is the last time I shall ask for help on this!
    TIA
    Jon

    Thanks Cameron.
    No that’s not what I need, not Cascading Drop Downs, I want TextBox’s to be populated.
    I have 3 fields, Code, Section, and SubSection, when a user enters a code into the first box, a rule queries the list, I(I have XML or SharePoint List) to populate the Section/SubSection with
    the data relating to the Code.
    So far I have a rule that on FormLoad when the Code field changes it queries the XML list for the info.  The problem I have it I can’t get the query correct.
    Thanks
    Jon

  • Hi  urgent pls suggest when i press enter the data disappears...

    hi
    i have develop,ed a module pool for table maintianece
    in which  there are theree fields
    customer number name  email id
    now when i dont press enter at first field ie customer number after entering all data
    and save the data is saved properly for all three fields
    but if after e ntering the customer number i press enter and then enter name and email id
    and save the data for email is not saved and also if i just press enter again the data in email id column which i entered disappears
    can anyone suggest reason and solution for it
    regards
    Arora

    hi
    here is my code
    PROCESS BEFORE OUTPUT.
      LOOP   WITH CONTROL TABLE_ZCUST_EM_CREATE."AT T_ZCUST_EM_CREATE
        MODULE STATUS_0200.
      ENDLOOP.
    *Process after input
    PROCESS AFTER INPUT.
      MODULE CANCEL_200 AT EXIT-COMMAND.
      LOOP WITH CONTROL TABLE_ZCUST_EM_CREATE ."AT T_zcust_em_CREATE ." .".
       MODULE USER_COMMAND_0200.
        CHAIN.
          FIELD t_ZCUST_EM_create-ship_to .
         MODULE set_field_validation ON CHAIN-REQUEST.
        ENDCHAIN.
        MODULE USER_COMMAND_0200.
      ENDLOOP.
    here ship_to is customer number
    ship_to_name is name
    and email id is email id field
    pls suggest on this code also if u want i can give code for the module validation and user commarnd 2000
    as below
    MODULE STATUS_0200 OUTPUT.
      w_lines_200 = sy-loopc.
    *Reading table t_zcust_em_create for screen 200.
      read table t_zcust_em_create
        index table_zcust_em_create-current_line.
    *Refreshing The Internal table 't_zcust_em_temp'
      refresh:t_zcust_em_temp.
    ENDMODULE. 
    MODULE set_field_validation INPUT.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                   INPUT         = t_zcust_em_create-ship_to
                IMPORTING
                    OUTPUT       = t_zcust_em_create-ship_to.
      select single kunnr from kna1 into v_kunnr
              where kunnr = t_zcust_em_create-ship_to.
          if sy-subrc = 0.
           select single name1 from kna1 into t_zcust_em_create-ship_to_name
           where kunnr = t_zcust_em_create-ship_to.
          else.
          t_gui1-fcode = 'BACK'.
          append t_gui1.
          t_gui1-fcode = 'EXIT'.
          append t_gui1.
          t_gui1-fcode = 'SAVE'.
          append t_gui1.
          SET PF-STATUS 'AIMS_200' excluding t_gui1.
          message E002 with t_zcust_em_create-ship_to.
             endif. "kna1
    ENDMODULE.                 " set_field_validation  INPUT
    MODULE USER_COMMAND_0200 INPUT.
    *Setting it for select/deselect entries
      move:t_zcust_em_create to t_zcust_em_create_sel.
      append t_zcust_em_create_sel.
      clear:t_zcust_em_create_sel.
    *Getting internal table t_zcust_em_create with control
      read table t_zcust_em_create
             with key ship_to = t_zcust_em_create-ship_to.
    *Getting internal table for create entries: screen-200
      if sy-subrc ne 0 and t_zcust_em_create-ship_to ne space .
        append  t_zcust_em_create     .
        move:t_zcust_em_create to t_zcust_em_create_tmp.
        append t_zcust_em_create_tmp .
        clear:t_zcust_em_create_tmp  ,
              t_zcust_em_create      .
      endif.
      clear:t_cols.
    *Getting the value of  w_fill_200.
      describe table t_zcust_em_create lines w_fill_200.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    PLEASE SUGGEST
    REGARDS
    ARORA
      module read_table_value_0200.

  • Actual Date in WBS element

    Hi,
      Actually in my WBS elemrnt the actual Date fields are disabled in change mode,  i need to enter the actual dates, How to do...
    Thanks in Advance....

    Entering actual start and finish dates for a WBS element, depends on below
    1. WBS element has been further described using activities
    2. Whether you have already entered actual dates for subordinate WBS elements.
    WBS Elements W Activities
    1. You can always enter actual start.
    2. You can only enter actual finish, if all subordinate WBS element already have an actual finish.
    WBS Elements W/o Activities
    1. You can only maintain the actual start, if all activities that are assigned to WBS element have status "PREL" or "REL".
    2. You can only enter actual finish if all subordinate WBS elements already have an actual finish and all activities for this WBS element have system status "final confirmation".
    Regards
    Sreenivas

  • Is there a way to alphabetize a spreadsheet after entering text?

    I want to alphabetize a spreadsheet after entering all data. Is there a way?

    Peter,
    I never comment on typos unless they are particularly humorous and I think the author would get a laugh. I make too many myself.
    Jerry 

  • WBS Forecast dates disappears during scheduling after final confirmation

    Hi dear Experts.I faced a problem with WBS dates.
    The system overwrites forecast and basic dates on WBS after final confirmation of attached activities. And start to schedule wbs dates from dates of activities with no confirmation. Is there any way to solve this prolem?
    In other words i need my WBS to take into scheduling ALL the operations forecast date. Moreover how the system can overwrite the forecast dates wich were entered manually by user?
    Green - actual dates
    Yellow (orange) - forecast dates
    Bue - Basic dates
    Please help.

    Hi Kirill,
    Please check the control parameters for WBS Scheduling. Check if the scheduling method over here is WBS Determines Dates. If this is the case, irrespective of the scheduling that was carried out at the activity level, the system overwrites the basic and forecast dates present at the WBS level. May be in your case the scheduling method that had been used was "Network determines dates".
    . Please change this and let me know if this helps.
    Regards
    Varun

  • Auto release of Invoicing plan item when milestone actual date is entered

    Hi all,
    I wonder if anyone can help me on this.  I have configured the system to automatically release an invoicing plan in a PO once the milestone attached to that invoicing plan is confirmed in the project by entering the actual date.  For some reason though, when trying to enter the invoice for this item in MIRO, the amount from the invoicing plan is not copied.  The amount only gets copied if you enter the PO in change mode after confirmation of milestone, display the invoice plan for each item then save before exitting.  It is only after this that the block on the item is removed.  Is this supposed to be so?  I would have thought immediately after confirmation of milestone by indication of actual date, the block on the invoicing plan will be immediately be removed so the invoice can immediately copy the amounts from the PO?  Any ideas how to achieve this?  (GR is not a part of the process).

    Hi,
    Go through this link. Might be helpful.
    http://wiki.sdn.sap.com/wiki/display/HOME/InvoicingPlanin+SAP
    You can also search for related content in the forum. You will find a lot of threads related to this.
    Regards,
    Gokul

  • Actual dates are altered during schedule calculation

    I've had an unusual problem the last couple times I've calculated a P6 schedule. Actual dates from a prior update are being changed. It's random. Also, a few activities without progress (scheduled to start a couple weeks in the future) are randomly given actual starts a few weeks in the past.
    I can deal with activities that are given actual dates when they shouldn't. But, I don't want to deal with actual dates changing after doing a schedule calculation.
    If you're puzzled at what I'm talking about, here's an example.
    Activity X has an actual start date of 07Feb11 and is not complete. It's scheduled completion date is 31March11. There are no out of sequence errors, or other errors, because everything was cleaned up. A schedule update is done and the activity finish is given an actual finish date of 07Apr11, and the schedule is calculated.
    After it is calculated, the actual start date is changed from 07Feb11 to 01Apr11.
    This has happened to a few activities (random), and the changes to actual dates is also random.
    What's going on?

    Are the activities or resource assignments set to Auto Compute Actuals?

  • Save and refresh after entering data inoto table.

    hello guys,
    im using abap webdynpro now. and im facing a problem with the saving and update " refresh function"
    I have entry table and some other text input.
    the thing im doing is to enter data in the filed, attachment, drop down selection. then the data will be saved into the table in the same page
    and need to refresh the page automaticlly when doing this. so the used does not have to do it manully
    please help me in this..code, source, or hints.
    Thanks
    Lily

    well , the guys guid me to some ideas.
    yes..after entering data into filed, textinput. the data will goes to the table after clicking " save" button. after that I want the table to be updated.
    thanks

  • HT1766 please help...we updated ipod2 4.1 to IOS 5.1 at itunes...after it was finished only the contacts were restored...not the music & videos...we found the backed up data in the pc(windows 7)after entering %appdata%..pls help how to restore..thanks!God

    please help...we updated ipod2 4.1 to IOS 5.1 at itunes...after it was finished only the contacts were restored...not the music & videos...iwe found the backed up data in the pc(windows 7)after entering %appdata%..pls help on how to restore...we will appreciate it very much....thanks! God bless!

    The iPod backup that iTunes makes does not include synced media like app, music and videos. Thus, you wll have to resync those back to your iPod.
    If necessary you can redownload iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How to lock a pdf form after entering data

    Hi
    I have created certificate with editable fields for a client, I was of the thinking that the certificate is to be filled-in and printed however the client informed me that it is instead emailed to recipients. How can I make it possible for the client to lock the certificate after entering data.
    Bear in mind that the client is using Adobe Reader not Acrobat. I have tried setting a security password but Reader does not require the password in order to enable or disable the fields.

    If the user has Acrobat, not the free Reader, they could flatten the PDF form. If they only have Reader they can make the fields read only. They also might want to use a digital certificate to invisibly sign the PDF. Signing the PDF will add code to disclose if the PDF has been changed since it was signed.

  • A good solution to set the actual data record after execute query ..

    Hi,
    in my Form there is a block on a temporary table.
    The user can add query results and wishes to save the last data focus on the last actual record before the execute query to restore this focus after the query.
    Is there a robust and fast solution to save the
    actual data focus - execute_query - restore the saved focus ?
    Thanks
    Friedhold

    Here is a simple solution to try:
    Create a package specification in your form: Package P0 is
      Save_rowid  varchar2(30);
      Found_rec   number;
    End;Create a Key-Entqry trigger on your block: P0.save_rowid := :Myblock.rowid;
    P0.Found_rec := null;
    Enter_Query;Create a Post-Query trigger on the block: If :Myblock.rowid = P0.save_rowid then
      P0.found_rec := :system.trigger_record;
    End if;Create a Key-Exeqry trigger on the block: Execute_Query;
    If P0.found_rec is not null then
      Go_record(P0.found_rec;
    End if;

  • HT1212 device disabled after entering wrong passcode. Please help me in getting this unlocked  without lossing the data as the data is really important for me

    device disabled after entering wrong passcode.
    Please help me in getting this unlocked  without lossing the data as the data is really important for me

    I think you should call via phone or perhaps take it to a phone store. I suggest taking your id, box packaging and other necessities such as the reciept of the phone being purchased.
    Hope this helped

Maybe you are looking for