Earlier date in finish date field than the forecast start date (in Proj def

Hi Experts
I have foreast start and forecast finish dates maintained in Project definition. N dates in WBS elements.
However I am able to maintain an earlier date (than forecast start date) in Finish Date field in PD.
I believe there should be a  validation with dates.
Please provide clues.
Warm regards
ramSiva

Hi,
Please create a validation rule with all prerequisites, check and message .Assign it to the project profile. For the running project , open the project in CJ20N ,--> Edit -->Validation and select this validation for the system to respond appropriately.
Warm regards,
Srinivas Potluri

Similar Messages

  • Need By Date Should be equal or after the effective start date- error in po_requisitions_interface_all

    Hi All,
    We have created a manual planned order for one buy item in ASCP workbench for some qty and released it.
    But, we are not able to get its requisition created in source.
    When we check the PO_Interface _Errors table, we found that it is errored out with error as --
    Need By Date Should be equal or after the effective start date .
    Can anyone please help me out to find the cause of this issue. Any help/pointer in this regard will be highly appreciated.
    Thanks,
    Avinash

    Hi Abhishek,
    We found the root cause of the issue.
    Its BPA was not having any Effective start date mentioned in its terms. So we put it as BPA creation date and ran the data collection and plan run.
    After that we were able to see its BPA release created without any error.
    Thanks,
    Avinash

  • Return the scheduled start date from one task to a custom field for all tasks

    Hi all
    I am trying populate an entire custom task date field with the scheduled start date of one of the tasks. I thought the easiest way would be to:
    1) identify the date I need with a custom task flag field set to 'yes'
    2) create a formula to look for the 'yes' flag in that field and populate the custom task date field with it.
    This worked only for the task where the flag was set to yes (task #36) and the rest of the 49 tasks returned an error message. I'm unsure of how to set this up so that the date with the 'yes' flag populates in this column on
    all 50 tasks.
    This would also need to scale for situations where there were more or less than 50 tasks.
    Thanks in advance...
    Using MSP 2010 Pro   

    ShelleyBrodie,
    That's because the syntax of your formula isn't quite what you intend. The correct syntax is:
    IIf( expression, truepart, falsepart )
    For your case that converts to:
    IIf([Flag1],[Scheduled Start],{not sure what you want for the false part but I assume is is not Scheduled Start})
    Note, the "Yes" for Flag1 is implied, so the first part (i.e. Scheduled Start) is the truepart, but you don't give a value for the falsepart (i.e in both cases your formula is looking for Flag1 to be "yes". Let's say you want the Date1
    field to have the Scheduled Start date if Flag1 is "yes" and to have today's date if Flag1 is "no". Then the formula will be:
    IIf([Flag1],[Scheduled Start],[Current Date])
    However, As I indicated in my previous response, you won't be able to do what you described in your initial post by using a formula. Are you now trying to do something different?
    John

  • Goods receipt date should be greater than the P.O. date

    Hi
    Is there any option to control the Goods receipt date should not be lesser than the P.O.Date??
    Eg: P.O. is raised in 10.1.9, User should not do the GRN before 10.1.9. In which way we can control  this???
    Regards
    Ravi

    Dear,
    You have to include User exit in MIGOwhich will trhrow an error at the time when Goods receipt date is greater than the P.O. date.
    Regards
    Utsav

  • Actvities before the Project Start Date

    Every now & then, we will get an activity which is a precursor to a project kicking off as a project start date so in theory from that start date would be known as either week 1 or Month 1.
    So in this case, any actvivity starting a month for example before the kick off date should be shown in "- Month 1" but in Project 2013, it takes this new date as Month 1 even when the Project Start Date has not changed.
    The earlier versions of Project, you could manipulate this so what's changed?...Is there a way around this?
    I am not using Project server as will never use it to save myself from grief & stress!...prefer to keep it simple!

    I couldn't test it with 2013 but with 2010 the week numbering starts at the project start date, so you can have a project start date on a certain date which will be your week1, and then set predecessors with no impact on the numbering.
    If you confirm that this behavior jas changed with 2013 version, an option could be to enter as manually scheduled tasks with no dates the tasks prior to the project start date, using custom fields to enter the actual dates.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Find the latest Start date after a gap in date Field For each id

    Hi All, Can anyone help me in this, as it is so urgent ..My requirement is to get the latest start date after a gap in a month for each id and if there is no gap for that particular id minimum date for that id should be taken….Given below the scenario
    ID          StartDate
    1            2014-01-01
    1            2014-02-01
    1            2014-05-01-------After Gap Restarted
    1            2014-06-01
    1            2014-09-01---------After last gap restarted
    1            2014-10-01
    1            2014-11-01
    2            2014-01-01
    2           2014-02-01
    2            2014-03-01
    2            2014-04-01
    2            2014-05-01
    2            2014-06-01
    2            2014-07-01
    For Id 1 the start date after the latest gap is  2014-10-01 and for id=2 there is no gap so i need the minimum date  2014-01-01
    My Expected Output
    id             Startdate
    1             2014-10-01
    2             2014-01-01
    Expecting your help...Thanks in advance

    If you're using SQL Server 2012 this will work for you...
    IF OBJECT_ID('tempdb..#temp') IS NOT NULL
    DROP TABLE #temp
    GO
    CREATE TABLE #temp (
    ID INT,
    StartDate DATE
    INSERT #temp (ID, StartDate) VALUES
    (1,'2014-01-01'),
    (1,'2014-02-01'),
    (1,'2014-05-01'),
    (1,'2014-06-01'),
    (1,'2014-09-01'),
    (1,'2014-10-01'),
    (1,'2014-11-01'),
    (2,'2014-01-01'),
    (2,'2014-02-01'),
    (2,'2014-03-01'),
    (2,'2014-04-01'),
    (2,'2014-05-01'),
    (2,'2014-06-01'),
    (2,'2014-07-01')
    -- SQL 2012 and later --
    ;WITH gg AS (
    SELECT
    COALESCE(DATEDIFF(mm, LAG(t.StartDate, 1) OVER (PARTITION BY t.ID ORDER BY t.StartDate), t.StartDate), 2) AS GetGap
    FROM #temp t
    ), did AS (
    SELECT DISTINCT t.ID FROM #Temp t
    SELECT
    did.ID,
    x.StartDate
    FROM
    did
    CROSS APPLY (
    SELECT TOP 1
    gg.StartDate
    FROM gg
    WHERE did.ID = gg.ID
    AND gg.GetGap > 1
    ORDER BY gg.StartDate DESC
    ) x
    If you're on an earlier version than 2012, let me know. It's an easy rewrite but the final code isn't as efficient.
    Jason Long

  • Add a new field in the Tab Addicional data en la ME22N

    Hi,
    Please, can anyone tell me how can we add a new field in the tab Addicional data en la ME21N? I have to use the MM06E005, but I don't know which screen exit should I use and also how to add this subcreen in the tab Addicional data.
    Thanks in advance.
    Saida.

    Hi,
    using SE80 you can add your fields with subscreens
    SAPLXM06 0101 for Headerfields
    SAPLXM06 0111 for Items.
    This will add a tab in ME2..N.
    if you want your own Text on the tabstrip just edit the Textsymbols
    101 and 111 from SAPLXM06.
    At output you have to open a module asking the gl_aktyp to switch edit/display mode.
    then you must code the Exits to import/export values
    EXIT_SAPMM06E_006
    store transaction type for later modification of screen attributes
    gl_aktyp = i_trtyp.
    gl_no_screen = i_no_screen.
    store current state of customer data in ekko_ci (structure for screen)
    ekko_ci = i_ci_ekko.
    store reference document
    if i_rekko-ebeln ne gl_rekko-ebeln and
    not i_rekko-ebeln is initial and
    gl_rekko-ebeln is initial.
    ekko_ci-zzemail = i_rekko-zzemail.
    gl_rekko = i_rekko.
    endif.
    EXIT_SAPMM06E_007
    move-corresponding i_ekko to gl_ekko_ci.
    EXIT_SAPMM06E_008
    e_ci_ekko = gl_ekko_ci.
    ekko_ci contains the actual values of the Dynpro fields
    e_ci_update is only set if you really want the fields
    on the Dynpro to be saved. You must set it then to 'X'
    the field ekko_ci-zzflag will here only be saved if there
    was a change and the transaction is not in display mode
    if gl_ekko_ci-zzemail ne ekko_ci-zzemail.
    e_ci_ekko-zzemail = ekko_ci-zzemail.
    if gl_aktyp ne 'A'.
    e_ci_update = 'X'.
    endif.
    endif.
    Regards
    Kiran Sure

  • Invalid date format for 'Created' field in the getVersions web service Response.

    Hi all,
    I am trying to get all versions for selected document by calling getVersions method Versions.asmxweb service, but getting ‘Created’ date attribute value is in the format "29-05-2012 12:01"
    but I am expecting either one of the following date formats.
     1.      yyyy-MM-dd HH:mm:ss  or  yyyy-MM-ddTHH:mm:ssz
     2.      MM/dd/yyyy HH:mm a   (a means AM/PM)
     3.      MM/dd/yyyy
     4.      yyyyMMdd HH:mm:ss
    where do I need to change?
    what are all the formate will be support by SharePoint?
    please find attached response xml of getVersions call.
    <results xmlns="http://schemas.microsoft.com/sharepoint/soap/">
        <list id="{6A6F6CD1-2E9C-44CC-B1F5-56G7JB5C8778}"/>
        <versioning enabled="1"/>
        <settings url="http://hbngjfgj47s20/reg/_layouts/LstSetng.aspx?List={7S6F6CD1-2E9C-44CC-B1F5-KO9J8Y7Y6H78}"/>
        <result version="@0.3" url="http://vmesxsrv47s20/register/Shared Documents/Parent/child/my_doc" created="29-05-2012 12:01" createdRaw="2014-12-02T12:46:02Z" createdBy="my_dom\agi_sharepoint"
    createdByName="AGI_Sharepoint" size="288" comments=""/>
        <result version="0.1" url="http://hbngjfgj47s20/register/_vti_history/1/Shared Documents/Parent/child/my_doc" created="29-05-2012 10:01" createdRaw="2014-12-02T10:55:18Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
        <result version="0.2" url="http://hbngjfgj47s20/register/_vti_history/2/Shared Documents/Parent/child/my_doc.txt" created="29-05-2012 11:01" createdRaw="2014-12-02T10:59:25Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
    </results>
    Kindly help me on this.

    Hi,
    According to your post, my understanding is that you want to change date format for ‘Created’ field in the getVersions web service.
    Per my knowledge, you can get the date format for ‘Created’ field as “MM/dd/yyyy HH:mm a”.
    For more information, you can refer to:
    Versions.GetVersions Method (Versions)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Custom Fields in the Product Master Data

    Hi Experts!
    I have to add some custom fields in the product master data on SRM and I also need to have this data to be synchronized with the same in ERP.
    After having added this fields, can you pelase suggest a way to syncrhonized them with the ERP? is there a BADI I can leverage as in CRM?
    Thanks in advance.
    Points promised.

    Hi,
    See these related threadS:
    Re: Replicating additional fields (R/3 4.7) to SRM product master
    Transfer Inforecord Conditions Scales  to SRM Product Master
    https://www.sdn.sap.com/irj/scn/threadmessageid=6669812#6669812
    Extending SRM Product Master
    BR,
    Disha

  • Warranty Date field in the equipment master data

    Hi everyone!
    I wanted to display the warranty date field in the equipment master data (IE01). I have already made the configuration and added the additional tab and screen thru this path:
    Plant Maintenance and Customer Service > Master Data in Plant Maintenance and Customer Service > Technical Objects > General Data > Set View Profile for Technical Objects
    But still, the tab is not added and the warranty date field is not found in the "Define Field Selection for the Equipment Master Record". please help me with this. We need this data because we are not using serial numbering and warranty master data that's why a way to track the warranty date is thru this adjustment in the equipment master data screen.
    Thank you very much.

    Marlon,
      Make sure that you have assigned this specific profile to the Equipment category of the associated equipment that you are creating under SPRO > PM> Master data> tech object > Equipment > Equip category.
    Regards
    Narasimhan

  • IRecruitment  Candidate Date To must be later than or equal to Date From.

    Dear All,
    When I am updating any field in personal information in on my Account page in IrcVisitor.jsp as external user the system gives me error "Date To must be later than or equal to Date From."
    We are working on 11i apps.
    Please reply...

    1. Bounce Apache, clear cache and check that the issue is still there. When you bounce apache, make sure to bounce the external tier also if it's a separate server.
    2. Check that the flexfield you have personalized is the right one. Simple check is to remove a segment from the list, come back to the page and choose the country for which you removed the segment.
    3. If both the above don't help, please post the name of the item you are personalizing, the page and the flex segments list.

  • Need to update the actual start date & time of a operation in workorder

    Hi Experts,
                   I need to update the Actual Start date and Actual start time of a Operation of  a WorkOrder through a Function Module.
    I was looking into the BAPI_ALM_ORDER_MAINTAIN FM, but i couldn't find any field relating to the actual start date and start time of a operation.
    Kindly Suggest me which Function module i can use to complete my task.
    Thanks in Advance
    bye

    Hi,
    It is system's standard behavior and no other MRP type will help you in moving the start date outside the planning time fence. With MRP type P3 new requirements are covered at the end of the fixing period, the end date is set and planed order is scheduled backword. Hence the start date will lie within the planning time fence.
    Rgds,

  • Making the Basic Start Date in PM order Mandatory

    Team,
    we created a new PM order type per user requirements. One problem we have is to make the Basic start date field mandatory.Can any one propose how we can make make the basic start date mandatory ?

    Dear,
    Its always better to have forward schedule, and to do so, follow the path
    SPRO-->IMG-->PLANT MAINTENNACE &CUSTOMER SERVICE-->MAINTENNACE &SERVICE PROCESSING-->MAINTENANCE & SERVICE ORDERS-->SCHEDULING-->SET SCHEDULING PARAEMETERS.
    Here you can set the parameters as per your client requirement.
    Regards,
    pardhu

  • Date Control should highlight more than one range of dates in a month.

    Hi All,
    Date Control should highlight more than one range of dates in a month.We are creating a web interface for PR01 ( Travel Management Module ) , in a month a traveller can have more than 2 trips and we need to highlight all the travel date ranges in the Web DynPro date range control.
    Thanks & Regards
    Gaurav Jain

    Hi Thomas,
       I used DateNavigatorLegend and DateNavigatorMarking and did not give any default value or context mapping to the DateNavigator element.
      The DateNavigator is now highlighting only the first dates of the ranges that I have created in the WDDOINIT method.The DateNavigatorMarking takes only one date not 2 dates in the properties So kindly suggest how to display multiple date ranges.
    Thanks & Regards
    Gaurav Jain

  • 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

Maybe you are looking for

  • IPhone 4 to iPhone 6 challenge

    What are my best options in preparing, or becoming current (ideally economically) for/with the advance in technology? I now have an iPhone 6. I need to transfer everything from my iPhone 4. The problem: my Macbook maxed out with OS X 10.5.8 and disk

  • AV Receiver doesn't play TV sound

    Hi, we recently purchased the STRDH550 Sony AV system to work with out Samsung UHD TV. The components etc play through their respective inputs just fine, but I can't get the TV to play sound through the AV system. The TV Out component on the AV recei

  • How do I get the location services switch to turn On for my iPad mini after I upgraded the iOS?

    I just loaded the google map app into my iPad mini. How do I turn on the location services switch? I can touch the switch, but it just does not go On.

  • Why are subsequent clips either above or below the main clip and blurred?

    I am new to iMovie 10.  I have imported three clips into iMovie.  I selected one and dragged it into the timeline area.  I selected the second and dragged it into the timeline area that followed the first clip.  Now, when I select the third and drag

  • How can i open oracle forms in windows 7

    Dear Members i was install windows 7 professional edition and install oracle database and forms 10 last edition from oracle.com now , when i open the forms application and open any form message appear inform me that stopped working and windows can ch