Query  on extension of validity end date of Qualification - PD

Hi All,
I want to extend the validity end date of a qualification.
I tried T-code OOQA however the validity dates are greyed out .
Can anyone please help me with this?
Best Regards,
Kanika

It can be done using Tcode-  RE_RHGRENZ4.
Thanks all...
Kanika

Similar Messages

  • Validity end date tab is suppressed in scheduling agreement

    Hi ,
    In scheduling agreement , Validity end date tab is suppressed ,
    There is no layout is assigned to the doc type & standart transaction varient is acitve , but while doing ME31L above field is not coming ( it is in suppressed / hide mode )
    Please let me how to get that validity date tab in scheduling agreement.
    Thanks,
    Pradeep

    Hi,
    Go to SPRO > IMG > MM > Purchasing > Purchase Order > Define Screen Layout > NBF > Administrative data, header > make the fiels Validity Period field optional / Required.
    Hope this will help you.
    Regards,
    Manish Jain

  • CIF of SA is not consistent for Validity End Date

    Hello gurus,
    Our company is quite new in using SNC, and we bumped into this problem (see description below), and hopefully this forum can help us.
    <Description>:
    When the Scheduling Agreement is CIFed from R/3 (ECC) to SNC, the Validity End Date does not get updated each time.
    It gets updated sometimes, but not always. It is inconsistent behaviour.
    <Example>:
    Scheduling Agreement A
    Validity End Date: 31.12.2012 Changed to 30.11.2012 in R/3.
    Performed CIF using Transaction Codes CFM1 and CFM2.
    Correctly updated the Validity End Date in SNC.
    For the same Scheduling Agreement A updated Validity End Date to 31.01.2013 in R/3.
    Performed CIF using Transaction Codes CFM1 and CFM2.
    The Validity End Date was not updated in SNC & remained as 30.11.2012.
    For the same Scheduling Agreement A updated Validity End Date to 15.10.2012 in R/3.
    Performed CIF using Transaction Codes CFM1 and CFM2.
    The Validity End Date was not updated in SNC & remained as 30.11.2012.
    Thanks guys
    Tuffy

    Hi Tuffy,
    1 - I am just wondering if after the Delete the existing External Procurement Relationship in SNC, and CFM1 and CFM2 the SA (i.e. changed my validity end date value) to the SNC, will the problem of the SNC side not able receive the changed SA??
    When there is a change in the SA, integration model would create the same in SNC if it does not exist. But the transfer from ERP does not happen just like that. First, make sure that the message type (CIFSRC) has been checked in BD50 and then schedule a job to periodically transfer the SAs.
    2 - What does the tcode the person in the SNC side have to double check to ensure the SA is transmitted there??
    The t-code is /SAPAPO/MTI2 - External Procurement Relationship.
    3 - Someone in our company advise BASIS team to check the transactions BD50 and BD52. What exactly does it mean and does it help?
    This is correct. I mean guys who are responsible for Integration model need to set-up BD50, BD52 so that changes to SAs are transferred periodically.
    Regards,
    Sandeep

  • 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

  • Change validity end date on activity type

    Is there a way to change the validity end date of an activity typre. Currently it is 9999 we would like to change it to 2011.
    We would like to use a particular activity to cost current standards but dont want to use it for planned estimates that we will create for 2011. I am assuming if the validity ends in 2011 it will resolve the problem. I know we could create alternate routings and different production version but I am trying to avoid that and see if we can find a short cut.
    Your help in this regard will be much appreciated

    Hey Greta,
    I executed the report but it says ,"The deletion could not be carried out, plan records still exict on cost center for activity type." I have deleted every thing from kp26 for that particular combination of activity type and Cost center.
    Any ideas as to what is happening!!
    Regards,

  • Employee qualification assignment IT0024 validity end date update

    I Would like to change the validity end date value on one specific qualification assigned to an employee.
    I can't do it using PA30. Is there anybody able to tell me how can I do it?
    Thank you

    You can't change endda because infotype 2 endda has to be '31129999'.
    It's explicit here in this validation in module POST_INPUT_CHECK.
    form check_it0002.   "form aus mppers00 hierher verlegt    "VLDN212840_2
      if psyst-first eq yes and cprel-endda lt high_date.
    *   I105(RP): Gültigkeitsende muß gleich & sein
        p0002-endda = high_date.                               "VLDN212840_2
        cprel-endda = high_date.                               "VLDN212840_2
        message e105(rp) with high_date.
      endif.
      if psyst-ioper eq modify.
        if cprel-endda lt high_date and pskey-endda eq high_date.
          p0002-endda = high_date.                             "VLDN212840_2
          cprel-endda = high_date.                             "VLDN212840_2
          message e105(rp) with high_date.
        endif.
      endif.
    endform.                    " check_it0002
    high_date is a constant with value '99991231'.
    Anyway, why would you want to change the endda on infotype 2 ?

  • Validity end date is not getting copied from inquiry to quotation.

    Hi Friends,
    While creating quotation the validity end date is not getting copied from inquiry to quotation.
    What setting needs to be done, pl suggest.
    Regards,
    Hari.

    Sreehari,
    i dont find any logic of having Same validity date for Quotation and Inquiry....
    the simple reason is explained by example: Say you have created Inquiry on 1st november and end date is 15th novembr. Customer comes to you on 14th november and asked for Quotation, and if you refer quotation on that day that means its only applicable for one day, which generally wont be the case.
    There is no option for copying the validity dates from Inquiry to Quotation as per standard. If you want, create routine, place it in copy control.
    Thanks,
    raja

  • 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 End Date for A012 relation not updated

    Hi All,
    I am working on SRM5.0 and the HR org structure is replicated from ECC to SRM via idocs. Now, for one particular user, who holds position in 2 org units, the HRP1001 table data is incorrect.
    For one of the relations A012 between S-O, the end date shown is in the past. I checked the ECC tables for this employee and the A012 relation is valid till 31/12/9999. But, in the SRM system, this date does not get updated.
    Due to this employee is not shown as an approver for that particular org unit.
    Does anyone know how I can update this date?
    Regards,
    Ancy

    One of the Org unit is under the other org unit. So, I updated the position with the relation to the higher org unit only. So in the SRM system, by default, the supervisor for this org unit is the supervisor for the lower org unit too, unless there is a new supervisor for the lower org unit.

  • Query for month start and end date

    Hi,
    I want to pick every month Start date and End Date. could anybody suggest what is the query for this.
    I need output
    Start Date End Date
    01/01/2011 31/01/2011
    01/02/2011 28/02/2011
    01/03/2011 31/03/2011
    01/04/2011 30/04/2011
    01/05/2011 .......

    Hi,
    SQL> select sysdate from dual;
    SYSDATE
    24-FEB-11
    SQL> select last_day(sysdate) from dual;
    LAST_DAY(
    28-FEB-11
    SQL> select last_day(sysdate),last_day(add_months(sysdate,-1))+1 from dual;
    LAST_DAY( LAST_DAY(
    28-FEB-11 01-FEB-11
    SQL> select last_day(sysdate),last_day(add_months(sysdate,-2))+1 from dual;
    LAST_DAY( LAST_DAY(
    28-FEB-11 01-JAN-11Try to refer to Oracle documentation and try to experiments the functions, you will get results on your hand.
    - Pavan Kumar N
    Edited by: Pavan Kumar on Feb 24, 2011 12:51 PM
    Edited by: Pavan Kumar on Feb 24, 2011 12:52 PM

  • Workflow Substitutions - Force Validity End Date

    Is there a way I can configure Business Workplace Substitution Validity date from and to dates to fall within a specific range?  Can I prevent someone from using the default 12/31/9999 date when creating a substitute?

    Hi Mark,
    Well for starters a lot depends on:
    a) What release/environment are you using?
    b) What type of substitution - user to user or position to person are you using?
    If you are using position to person, that's HR infotype A210 so you could use HR Structural Authorisations to only allow the infotype to be created e.g. up to the end of the current year.
    If you are using user to user, its a bit harder.  In that case its based on table HRUS_D2, which only checks the end date is a valid date.
    So you would really have to code in an additional check from wherever you are maintaining the data.
    So now the question is, how do your users maintain substitutions? i.e. in which release/environment? using which maintenance tool?  Then you need to check out how that tool works.
    E.g. you might be using the API SAP_WAPI_SUBSTITUTE_MAINTAIN or the table maintenance generated for HRUS_D2.
    E.g. if its just the table maintenance view, you could add a table maintenance generation "event" with your additional check (go to the table maintenance generation and try menu Environment > Modification > Events).
    Unfortunately the other maintenance tools use function modules - none of which currently offer any BADIs or user exits for adding additional checks.  So at this stage it would be a mod.  But a good thing to ask for in a development request perhaps.
    Regards,
    Jocelyn

  • How to set up start and end dates for validity of contract account in FICAx

    Hi,
      Can anyone tell me where can I set up the validitiy period for the contract account in FICA. In contract creation, I could just see the contract validity start date. I also need to know the validity end date. Please let me know the solution asap.
    Points will be awarded for all the useful answers.
    Thanks
    Santosh

    Yes, you're right, you would then need to develop a lot of user exits to prevent the re-use of the contract account after the validity date.
    I'm think in a strange solution, it could work but you'll need to test it. if a contract account is marked for deletion (Field FKKVKP-LOEVM equal to 'X') no further action can be made over it, When you create you contract account you can schedule a change using as validity date (Field BUS000FLDS-VALDT ins the change contract account screen) to the end date of you contract account and set this deletion flag. then you run FPP2A to activate the schedule changes, before you get to the end date the flag is not set, when you get to the end date FPP2A will activate the flag and the contract account becomes not usefull.
    If you do this, you have be careful because all the postings to the contract account won't be possible, it means that if there are payment to be made, interests to be calculated, etc... nothing will be posted.
    Cheers,

  • How to input my own Validity Start and End Dates in ME21N

    Hi All,
    I have to change the Validity Start and Validity End date in Addiitional Data Tab of ME21 transaction( PO Create ) using default Customer Values.How Can i accomplish it?
    I have used the BAdI ME_PROCESS_PO_CUST and implemented it, I have coded in the method PROCESS_HEADER.First I retrieved the data using get_data( ) method, changed the values with Customer Values and called the method set_data( ).
    However my validity start and End Dates and not changing.
    Even in ME21N if I create the PO with my own Validity Start and End dates, and go to ME23N to display the created PO, still in the additional data tab, the start and End dates are current date and Next date respectively.why its happening?
    Thanks in advance

    Hi,
    Can you please let us know in which business scenario this is required.
    SAP has provided separate functionality of Outline Agreement for considering validity period.
    If you let us know the business scenarion some solution/workaround can be suggested.
    Regards

  • OIM 11g Modify User Profile for Updating End Date

    Hi Gurus!
    We have an OIM implementation where users may request the creation of other users by means of a Create User request template. In this template we set the End Date to be 3 months after the request date.
    In order for the requester to extend the period of a user's OIM user account (along with its provisioned resources) we customized a Modify User Profile by displaying the End Date field and automatically populate it again to 3 months after the request date. Also we developed a custom event handler to enable the user when it is disabled and the End Date is updated to a future date.
    This Modify User Profile is working great when the user is still enabled (the End Date is still in the future), however, when the End Date has passed (and the user is Disabled) the requester is not able to see the user when selecting the Modify User Profile request template.
    Is there a way to allow requesters to also see disabled users in the Modify User Profile request template?
    Thank you in advance.
    Regards,

    Hi Kevin,
    thanks for your reply!
    But, in this case, when the user is already disabled due to his End Date, how can a requester, through the Self Service TAB, enable it?
    The Enable User request template does not work since when trying to enable the user, OIM sees the End Date is already passed and the DataSet validation throws an exception.
    The only way I saw was providing a Modify User Profile Request template to change the End Date and developing a custom event handler to enable the user upon the extension of the End Date...
    How can, in this situation, a requester enable the user and extend its End Date?
    Thank you!
    Regards,

  • Find Latest Date(Valid To Date)

    Hi all!
    How do  I find the latest Date(Valid To Date)?
    If there is a way with Replacement Path or User Exits, How do I do it?
    Regards,
    Shree

    i have a query with characterstic ZDATETO (Valid To Date).
    I have to implement a condition on ZDATETO so that only Latest Valid To Date is displayed in my Report.
    I also have a Key Figure Amount. A condition on it is to display only when the Amount is Negative.
    These two conditions are to be implemented on the Report.
    They Keyfigure part I could do it, but how do I find the Latest Valid To date to implement the condition?
    Shree

Maybe you are looking for

  • Reference or File name of the Photo

    I have several photos of various scenes and architectural products.When I trying to view photos in iPod,it is quite difficult sometimes to recognise those Photos. How can it be possible to see the file name also to the top of the display/screen in iP

  • Splitting the Internal table

    Hi, Good day guys hope every one doing well.. i have problem with smart form.. I developed the smart form.. Data will be pulling from zprogramme. in the final internal table is having top 20 customers by branch wise which is 17 branches.. Its like On

  • The command oracg fails to generate Java source files

    I tried to use the command 'oracg -schema Openshipments.xdr' to generate Java source files from XML schema file Openshipments.xdr . Although the schema file is valid, the command oracg fails with following error messages : file:/D:/romel/project/UPS/

  • UK Delivery Times

    What if it's shipping from China to UK? Anyone had experience with MBP times from the factory to London? Mine shipped Friday 24/3. On the apecode.com website it had 5/4 as estimated time of arrival but it's changed to 30/3 and says this: 29 mar 06...

  • Can't connect Palm m125 to desktop with cradle USB cable

    Someone gave me this Palm m125 and when I try to sync with my desktop there is no connection established. Can someone please help? Post relates to: Palm m125