Earliest Start and Earliest Finish dates for Tasks

Hi experts,
Can anybody tell me in what table are the Earliest Start and Earliest Finish dates for tasks located? If no table is available does anyone know of a BAPI o function to obtain these dates?
Thanks and best regards,
Fernando

Hi Wendy!
Thank you so much for your explanation, we have done exactly what you mentioned in your post. In fact we are now using the SCHEDULED_START and SCHEDULED_FINISH instead of the PLANSTART and PLANFINISH.
OK so this is how it went:
In transaction SE11 we added the two fields in our append structure ZDPR_TS_DASHBOARD.
We added them just like they are named:
SCHEDULED_START type DPR_TV_SCHEDULED_START
SCHEDULED_FINISH type DPR_TV_SCHEDULED_FINISH
When doing so, it gave off a warning that SCHEDULED_START and SCHEDULED_FINISH are not customer fields and should have a YY or ZZ in front. I ignored the warning based on your advice and activated the append anyway.
So that´s how the append went.
Next on to the SPRO config:
In the define atributes part,  SCHEDULED_START and SCHEDULED_FINISH are already defined as attributes, however I am not sure how the rest of the configurations should go, for example:
Attr.Type, Summarization Rule, Summ. Res,  Init Vals., or Reference Attribute.
I left these values standard and didn´t modify anything in this part of SPRO.
Next I checked in the extract layout configuration in SPRO and verified if they were in the 0_Dashboard. It was there alright, but again I am not sure if I should flag any of the two flags in that configuration:
Always Extract and Calculate after Aggr.
I left them blank (standard).
In summary, I didn´t have to do any configuration in SPRO...
I went to the Tasks Dashboard in cProjects and the new columns keep coming with blank values...
What do you think Wendy? Am I still missing something?
Thanks again and regards,
Fernando

Similar Messages

  • Early Start and Early Finish Dates for Completed Activities?

    I am using P6 release 7 and having a problem with Early Start and Early Finish Dates for completed activities. For example, for an activity "A" the actual start date is 10-Oct-2013 and actual finish date is 19-Oct-2013, and activity is 100% completed but somehow P6 showing me the Early Start Date 02-Nov-2013 and Early Finish Date 02-Nov-2013. To me early start and early finish dates should not really be a matter for completed activities but I like to know why and how P6 calculates early start and finish dates for completed activities. Please let me know if somebody has an answer.
    Thanks
    Bilal Qamar

    Does this activity have a resource assigned? If so, check if the resource is closed (expended) otherwise it may continue to reflect future possible progress based on unused resources.

  • Get earliest finish date for a task of cProject

    i found this method CL_DPR_TASK GET_SCHEDULE_ATTRIBUTES to retrieve earliest finish date.
    but i don't know how to assign the parameter IR_SCHEDULE_OBJECT to this method.
    could you help me with this?
    if i don't use this class, is there any other way to fetch the earliest finish date for a task of project?
    Edited by: Duan ZZ on Aug 26, 2010 5:11 PM

    Hi,
    Have you passed the correct GUID?
    I have tested it in my system. It returns the required data.
    Regards
    Sejo

  • Early Start and Early Finish Dates

    When I build a schedule I always build it to early start and early finish dates. When I go to update my project the items that are finished always return a blank in the early start and early finish dates. Is there a way to get the program to still show the dates that the activities started and finished on in the early start early finish columns? I would like to be able to use the early start and finish columns instead of having to add more columns to be able to look back and see the start and finish dates for an activity that has already been completed.
    Thanks,
    Ryan Cherry

    Does this activity have a resource assigned? If so, check if the resource is closed (expended) otherwise it may continue to reflect future possible progress based on unused resources.

  • Timeline Start and Finish Dates - how to not display finish dates for tasks not added to timeline

    I have a project, Project 1, with start date 1 Jan 2014 and finish date 31 Dec 2014.  When I switch to timeline view, the timeline spans this period. I now want to create a second view for a sub project within Project 1, called Project 1A.  It
    starts 1 June 2014 and finishes 31 August. I only want to see Project 1A's tasks and time span on this second custom timeline view. I create the new view, add the tasks from Project 1A to the timeline, and save the view as CustomView1A. My problem: CustomView1A
    shows the tasks for Project 1A, but also shows the dead space between 1 Jan 2014 and 1 June 2014, as well as the dead space between 31 August and 31 December.
    I dont want to see the dead space. I want CustomView 1A's timeline to start and finish on Project 1A's start and finish dates.
    How do I adjust CustomView 1A's timeline borders on the left and right to exclude the dead space?
    Hanneliese Fourie

    Dear Sir,
    I checked in CO41 and it allows me to convert planned order to production order and not have any provision to re-scheduling the planned order . Any function to reschedule planned order to future dates ( whose start dates and finish dates are in past ) ?
    Thanks,
    SL

  • How to set a default start and/or end date for New Events based on trigger date.

    I'm using the CalendarActivityListener to get current row when clicking on an existing event. As per previous posts this listener gives you access to event detail including Start Date, End Date, etc.
    However, what I want to do is to default the start (and end) dates for New Events based on the trigger date.
    I've tried the CalendarListener and can grab the Trigger Date from it - however, I can't see a way to pass this directly to the popup/dialog I'm using to create the new event.
    At present I'm putting the TriggerDate into the ADFContext session scope e.g. ADFContext.getCurrent().getSessionScope().put("TriggerDate",calendarEvent.getTriggerDate());
    Then, I've tried multiple approaches to try and "get" the TriggerDate from session scope to drop it into my new Calendar Event basically, I'm trying to default the InputField(s) associated with the Start Date using the value from the session - I've tried
    1. setting the default value for the InputField in the jspx using a binding expression i.e. value="#{sessionScope.TriggerDate}" - this actually sets the value appropriately when the jspx is rendered but, when I go to create I get a NPE and I can't debug. I assumed that it might be a Date type issue - it would appear that CalendarListener provides a date of type java.util.Date and that the StartDate attribute of my VO/EO/table is a DATE and therefore requires oracle.jbo.domain.Date so I tried casting it - to no effect
    2. Using a Groovy expression *(StartDate==null?adf.context.sessionScope.TriggerDate:StartDate)* in my calendar's EventVO to default the Start Date to the same result
    Any thoughts or ideas?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • CL_DPR_TASK  how to get earliest fiish date for a task of cProject

    i found this method CL_DPR_TASK GET_SCHEDULE_ATTRIBUTES to retrieve earliest finish date.
    but i don't know how to assign the parameter IR_SCHEDULE_OBJECT to this method.
    could you help me with this?
    if i don't use this class, is there any other way to fetch the earliest finish date for a task of project?
    Edited by: Duan ZZ on Aug 26, 2010 5:09 PM

    BAPI_BUS2175_GET_DETAIL

  • 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.

  • Issue with update_task API for updating Scheduled Dates for Task..

    Hi All,
    We have a requirement to update the project and task dates to a specified period from the current dates. I dont want to update all the tasks, and hence using the update_task API. The scheduled_finish_Date is the column from "pa_proj_elem_ver_schedule" which we want to update. As, this is the date which is shown on the Workplan tab for the tasks for (Scheduled Start and Scheduled Finish Date). I want to extend this scheduled_finish_Date to some days , say for eg. 60 days.
    To achieve, that update_task api is being used and the parameter for the scheduled_date is : p_scheduled_finish_date, this is passed as call to pa_project_pub.update_task API.
    We are also updating the completion data, which is happening fine and is updating the pa_tasks : completion_date column.
    Problem is with scheduled date, Please let me know how to go about this issue.
    Here is the sample code for calling the API :
    pa_project_pub.update_task
    (p_api_version_number => l_api_version_number_i,
    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 => lt_return_status,
    p_pm_product_code => l_pm_product_code,
    --p_structure_updates_flag      => g_no,
    p_pm_project_reference => l_proj_reference,
    p_pa_project_id => p_project_id_i,
    p_pm_task_reference => p_pm_task_reference_i,
    p_pa_task_id => p_task_id_i,
    p_task_name => p_task_name_i,
    p_task_number => p_task_number_i,
    p_pa_parent_task_id => p_parent_task_id_i,
    p_task_completion_date => p_tsk_actual_finish_date_i,
    --Transaction Date (shown on the screen)
    p_scheduled_finish_date => p_tsk_sched_end_date_i,
    -- Scheduled Date (shown on the screen)
    p_out_pa_task_id => l_pt_task_id,
    p_out_pm_task_reference => l_pt_task_ref
    I am really not sure if I am missing anything here, please suggest as to how to update the Schedule Start and Finish Dates using the API.
    Waiting in anticipation!
    Thank you
    Anand.

    Hello,
    Make sure the wf is active in QA (re-activate if possible), check the transport for errors, check authorizations for WF-BATCH perhaps delete and recreate via SWU3?), refresh the buffers (SWU_OBUF).
    Please let me know if any of this helps.
    regards
    Rick Bakker
    Hanabi Technology

  • Planned order creation with PDS valid on only order start date and not finish date

    Hi All,
    We have requirement to allow creation of planned order manually if production version is valid on order start date and not finish date.  This is because lead time of order is longer. I refered OSS notes 385602. I could find out solution for this is implementation of OSS note 694140 to change validity mode at activity level to consider start date of first produce activity  in validity interval. Problem is even If I create order in APO by implementiong this note planned order is not transfered to ECC and it gets stuck with error production version not valid.
    Is there any way in ECC to control this? Any config or customization?
    Regards,
    Santosh

    Nilesh,
    I think there is a simple procedural skip happening in your business process. You are right when a planned order is created after MRP it would default assign it to the first available production version. 2options available for us,
    1. First use transaction MF50 and do the line loading and assign the quantites to the production versions/Production lines, so that the actual capacity planning is getting completed. This way you can have planned orders with both the production versions and matching to your actual line capacity.
    2. Use Quota arrangement concept, to automatically split the Planned orders during MRP for a percentage based on individual production versions.
    Now when backflush is performed S225 table is updated and Planned order qty also gets reduced.
    Hope this helps....
    Regards,
    Prasobh

  • Process Order Basic Finish Date and Scheduled Finish Date

    Folks,
    I have a requirement from the business to be able to update the Process Order Basic Finish Date and Scheduled Finish Date independently from each other.
    In other words, update the Basic Finish Date and the Scheduled Finish Date cannot change or update the Scheduled Finish Date and the Basic Finish Date cannot change.
    I believe the reason for this is to be able to use the Basic Date to maintain the ATP accurately and keep the Scheduled Date to mark when the order was originally due from the shop floor to be able to measure if orders are being completed on time or late.
    I have worked in tnx OPUZ and had some success with other issues with these dates but I can't seem to make them work independently from each other.
    Or does anyone have any ideas how to measure proces order performance to the production schedule?
    Thank you for your help,
    Greg

    Rajesha, thank you for your reply but it doesn't solve my problem.
    Let me restate my scenario:
    I start a process order and both the basic and scheduled finish dates are the same, June 1.
    At some point, shop floor tells me they will be late and cannot deliver until June 15.
    I need to update a date in the system so the ATP and the MRP planning runs have correct information for promising customers, I will update the Basic Finish date with June 15.
    I also need to keep the original June 1 date in order to measure the shop floor performance to the production schedule to measure how early or late the  order was delivered. How can I keep the original finish date or how can I measure if a process order is early or late??
    Thank you for your help,
    Greg

  • Capture START and END installation date on order line item

    Requirement: capture both start and finish dates for an installation program. Will likely require 2 new fields at order line item level.
    USEREXIT_MOVE_FIELD_TO_VBAP???
    Any suggestion for this enhancement???

    Hi
    U need to enhance the VBAP table by APPEND structure in order to add new fields you need.
    So in that exit you can fill your new fields:
    MOVE <......> TO VBAP-Z<......>.
    Max

  • Actaual finish date for PRT in COOIS

    Hi Gurus,
    I am runing COOIS for PRT
    selection screen - Plant and Actual finish date From -to
    Execute
    in change lay out i am selecting actual finish date  but the field is blank  ,Please tell me is there any setting missing
    Regards
    Girish

    Dear ,
    Is your last operation have Finally Confirmed in Operation Over view scree .Basically , this is the date on which the last operation was confirmed, that is, the date on which the order received the status "Finally confirmed".
    In COOIS -You have to enter the date as follows :
    Actual Start Date TO
    Actual Finsih Date TO
    Then Enter Plant Code , select PRT and Standard Profile .Execute .It is working for me when I have tested .Make  sure that You PRT are in place for Production Order .Based on this date ragne , COOIS will pick up the PRT details which have been used for Production Orders having Actual Start Date To /Actual Finsih Date To  based on the Final Operation are confirmed -CNF .
    Try -COOIS-Operation -Standard Profile -Enter Plant Code and Order Type-It will show u Actual Fisnihe date based on the last operation.
    Hope this clarifies .
    Regards
    JH

  • Validity start and Validity End date in PO

    HI  gurus
       can you plz tell me how to activate  validity start and Validity End date in PO
    Neha

    Hi,
    It is applicable for PO done for Frame work oder with Doc type - FO(Frame work order)as its an agreement of supply of stock only between specified period.For this kind of Doc type system makes it mandatory to enter the valisity start and end date.
    Thanks

  • Actual Finish Date for WBS Elements

    Hi,
      We are not using the functionality of network of PS in our orgnisation.  We would like to put a actual finish date for the WBS element so that further GRN entries can be restricted.  Appreciate if someone can guide on this.
    Regards,
    Anand

    By maintaining Actual finish date in WBS wil not restric the GR.
    In the Status profile create a User Status (Ex:COMP) and set "Goods receipt for prodn. order" and "Goods receipt for purch. order" as forbidden. Then set this user staus for the WBS once actual date is achieved.

Maybe you are looking for