Start Date Validation

I've found that when you create a new OIM user using an account other than xelsysadm the system will validate the start date. I usually don't enter anything, but I got an error stating that it does not allow start dates prior to the current date. So I entered today's date and received the same error!! So I entered tomorrow's date and it accepted it. After the user was created it had the status of 'Disabled Until Start Date'.
Is this a bug? I should be able to enter a user that starts on the same day. Is there a way to correct this or just disable the validation altogether?

I figured out that this was due to a permissions error with the Active Directory connector. I had an access policy that assigns users to AD groups. I had to assign the 'AD User Group Details' permission to the OIM user group to get it to work.
Why I received a Start Date error rather than some sort of AD permissions error from OIM still completely baffles me.

Similar Messages

  • Default start date and validty period in contract

    hi
    i want to default start date & validity dates during contract creation in VA41. i am not able to find the relevant configurations. pl help
    thanks in advance

    IMG->Sales & Distribution -> Sales -> Sales Documents -> Contracts -> Contract data
    There are three setting under this node. These three together determine the dates.
    thanx
    Bala

  • Restriction of Validity start date in Scheduling agreement

    Hi,
    I am not able to convert the message 06 170( Start of validity period is in the past) in error message , when i am going to define attributes of system messages in purchasing and converting this message into error , system still does not give error message when i am selecting  back  validity start date in the header of Scheduling agreement (me32l)
    What can be the possible reason.
    Regards
    Sachin

    Hi,
    I believe the message 06-170 is hard-coded in Include "MM06EFRP_EKKO-KDATE" in the Program SAPMM06E
    Laufzeitbeginn in der Vergangenheit -
        IF ekko-kdatb < sy-datlo.
          MESSAGE w170 INTO gl_dummy.
          mmpur_message 'W' '06' '170' '' '' '' ''.
    Please consul your ABAP Team on this to change it to Error.
    But SAP does not recommend changing standard Programs, so please discuss this and see that its really required and will not have any effects to your business process, because there may be instances wherein you might require to create scheduling agreements with a past validity date sometime in future based on business requirement.
    Regards
    Chandra Shekhar

  • 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

  • Source List Validity Start Date

    I have noticed that, if the source list validity start date and contract validity start date are same then, the contract price is not considered while creating PO and receive error message as "Source not included in list despite source list requirement"
    If I change the validity start date of source list to one day before the validity start date of Contract then system is picking the contract price in PO and able to save PO successfully.
    Is there any way to create PO even if the validity start date of source list and contract are same?

    from OSS Note 44368 - ME51 ME57 Contract as source of supply
    A contract that is valid on the delivery date but not on the current date is not taken into account in the source determination process.
    Cause and prerequisites
    This is programmed this way.
    Solution
    For reasons of upward compatibility, check will continue to be carried out on basis of current date.
    However, if you wish the check to be against delivery date, you can implement the modification described under the advance corrections.
    If Note 116464 is implemented in a 4.0B Release, use the advance correction from Release 4.5A, however, in Release 4.0B the program name is LMEQRF01.

  • Subtype Validity Start date Check

    Hi All,
    For one of the infotype we created a new subtype with the validity in future date say 01102010.
    Now if i go to infotype i am able to create the record for this new subtype with the start date as 01042010 which should not be allowed.
    I checked the table V_T582A and also the time contraint for the infotype.
    Time constraint for the infotype depends upon the subtype and in the subtype table it is mentioned as 2.
    I know that we have the custom check for the infotype but is it possible through stadard settings
    Pls guide me on this
    Regards,
    Umesh Chaudhari

    Hi Umesh,
    Though the subtype table for 0071 (Pension funds GB) is V_T591A; it also reads T5G30 to identify the schemes..
    Table T5G30 in turn has got various Pension Schemes with Start Date/End Date.. If you Start Date and End Date of the Plan is in Future (01102010) and if you intend to maintain the new scheme (Subtype) from 01042010; an error is displayed..."Scheme XXX is unknown for this period; check pension table entries."
    Kumarpal Jain.

  • Restriction of Validity start date in Info record ME11/12

    Hi,
    Can anybody suggest how can we put a check in validity start date of conditions so that back date is not selected while putting the price/conditions in info record.
    Regards
    sachin

    hi..
    When u create info-record for any comabination of material and vendor..u go to condition tab ..where ehile defining condition type and their details u can specify their validity....
    and after saving this..if u again want to see that condtion type then it prompt u for "choose validity" for which u want to see the condition type...
    Hope it works,,
    Thanks..

  • Validation on start date and end date .

    Hi every body ,
    Hi have a problem on validation on the start date & end date problem.
    I have taken two *<h:inputText>* & one *<t:commandLink>* controls.When I am clicking on the <t:commandLink> control I want to validate that end date should greater than start date .Could any body help me out from this problem .
    Here is my code :
    <rich:dataTable id="dataTable" 
                               value="#{adminBacking.dataModel}"
                               var="item">
       <h:column>
         <f:facet name="header">
              <h:outputText value="Start Date" />
         </f:facet>
         <h:inputText size="11" id="startDate" value="#{item.startDate}" onclick="showCalendarControl(this);" />                      </h:column>
    <h:column >
         <f:facet name="header">
              <h:outputText value="End Date" />
         </f:facet>
         <h:inputText size="11" id="endDate" value="#{item.endDate}" onclick="showCalendarControl(this);" />
    </h:column>
    <h:column>
         <f:facet name="header">
              <h:outputText value="Update Row" />
         </f:facet>
         <t:commandLink id="update" action="#{adminBacking.updateEvent}"  value="Update" />     
    </h:column>
    </rich:dataTable>**Here I am taking the date by a simple date picker in the start date & end date field.
    Thanks ,
    sb

    You may find this example useful: [http://balusc.blogspot.com/2007/12/validator-for-multiple-fields.html].

  • Date Validation - End date before Start date

    This may be a very simple validation but I seem to be having trouble. I've got a form which requires a date range to be selected (Date Picker fields)...a Start date, and an End date.
    I've created a Function Returning Boolean validation with the code as:
    begin
    if :P1_END_DATE < :P1_START_DATE then
    return false;
    else
    return true;
    end if;
    end;This works 99%, except when the date range spans years.
    For example, when I select '21-Dec-2010' in the start date and '4-Jan-2011' in the end date. The validation fails, and thinks the end date is before the start date.
    Do I need to compare the year part of the date, before doing the rest? Or is the '<' not suited for this sort of check?
    Edited by: djston on Dec 20, 2010 12:13 PM

    Sorry, false alarm, it looks like I had my logic a little backwards :)

  • 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

  • Start Date, End Date Validation ?

    Hi
    I am new to OA framework world. I created a page and i have 2 columsn start date, end date
    I want to display msg to user, if start date greater than end date .
    My question is
    1) how to grab the values?
    or where do i need to write a validation code ? ( any of EOI/VOI/Rowimpl or ? )
    How to achieve this ?
    any suggestions..will make my work easier ..
    Thanks
    Ravi

    protected void validateEndDate(Date value)
    if (value != null)
    OADBTransaction transaction = getOADBTransaction();
    long sysdate = transaction.getCurrentDBDate().dateValue().getTime();
    long endDate = value.dateValue().getTime();
    if (endDate < sysdate)
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "EndDate", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_END_DATE_PAST"); // Message name
    Thanks.

  • Start and End Date Validation

    OK I am lost and searched and made changes to what I am doing, but not sure I have datasets correct or something written wrong.
    I have two date fields on my form. A Start Date and an End Date
    I put some validation that says the Start Date/Time cannot be greater than the End Date/Time or so I think that is what it is saying. But if I put and end date in the form with a time that is an hour after the start date, it throws the error
    Here are my details and maybe I am just storing data wrong or something
    ENDDATE Validation: PL/SQL Error:
    if to_date(:P6_DTGSTART) > to_date(:P6_DTGEND)
    raise_application_error (-20001,'End Date must be Greater than Start Date.');
    end if;
    When I look at the data stored in the Database in SQL Workshop this is what I see
    DTGSTART 11/29/2010
    DTGEND
    The input on the form is a Date Picker with format: DD-MON-YYYY HH24:MI
    So the entry in the form would like like:
    Start Date/Time 29-NOV-2010 09:25
    End Date/Time 29-NOV-2010 10:25
    The End date can be the same date but the time has to be greater than the start date/time
    Thanks
    Wally

    It is working better for sure, but after it is saved, I can go back and make the end date less than the start date and it accepts the save. I don't really anticipate this happening, but trying to plan for all eventualities.

  • Can start date be set before valid for date for an equipment?

    Can start date be set before valid for date for an equipment?

    Hello,
    Generally when a asset/equipment  is purchased that is the valid from date and when commissioning done and it becomes operational then that date is start up date. So logically start up date should not before valid from date, it could be same.
    Can you elaborate why you want start up date before valid from date ?
    Thanks
    Naveen

  • Date validation

    Hi ,
    I have a created an textbox with date picker as (dd-mon-yyyy) .
    Now i want to create a validation on it for the format (dd-mon-yyyy) .
    I have created a pl/sql code with type "function returning error text".
    Begin
    If :P4_END_DATE IS NOT NULL THEN
    if :P4_END_DATE <> to_date(:P4_END_DATE ,'DD-MON-YYYY') then
    return 'END DATE should be in "DD-MON-YYYY" Format';
    end if;
    END IF;
    End;
    When i type in like 20-NOV-08 it gives error as 'START DATE should be in "DD-MON-YYYY" Format',
    but when i change month like 20-11-2008 , it actually gives error
    ORA-01843: not a valid month
    Error ERR-1024 Unable to run "function body returning text" validation.

    Hello,
    You have duplicated this post, see my answer here -
    Re: Date validation in "DD-MON-YYYY" Format,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Date validation in " DD-MON-YYYY"

    Hi ,
    I have created a textbox with date picker as (dd-mon-yyyy) .
    Now i want to create a validation on it for the format (dd-mon-yyyy) .
    I have created a pl/sql code with type "function returning error text".
    Begin
    If :P4_END_DATE IS NOT NULL THEN
    if :P4_END_DATE != to_date(:P4_END_DATE ,'DD-MON-YYYY') then
    return 'END DATE should be in "DD-MON-YYYY" Format';
    end if;
    END IF;
    End;
    When i type in like 20-NOV-08 it gives error as 'START DATE should be in "DD-MON-YYYY" Format',
    but when i change month like 20-11-2008 , it actually gives error
    ORA-01843: not a valid month
    Error ERR-1024 Unable to run "function body returning text" validation.
    Edited by: Vaibss on Nov 25, 2008 2:09 AM
    Edited by: Vaibss on Nov 25, 2008 2:10 AM

    Hello,
    Duplicate post -
    Date validation in "DD-MON-YYYY" Format,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Maybe you are looking for