Assigning End of Validity Time

Dear friends,
I would like assign end of validity time to a document while itu2019s creating through CV01N and make the field as mandatory. While creating documents end of validity time is assigned automatically as 31.12.9999. How I can assign this period? Although I looked for customizing of document types but wasnu2019t able to find field.  
Thank you,
Melih

Buddy ,
To capture the validity for any DIR you need Engineering chnage management module
Thru CC01 or CC31 you can create a Change number , by selecting the Document info record and assignthe required validy date for the change.
Save and you will get the chnage number.
Now in CV02n , open the DIR to chnage which you have made a link in CC01 or CC31.
System wil pop up the Change number which you have generated against the DIR.
release the DIR based on that validity date and Set indigator "lock" in DC10 under document status for "Release status".
Also u can make Change number feild mandatory in DC10, by which you can track all the documents release with validity date.
Let me know if you need more information .
Regards
Muralidharan.S
Edited by: robo robo on May 20, 2009 11:56 AM

Similar Messages

  • 61 062 & date comes after end of valid factory calendar. (Please correct)

    Hi Experts,
    I am Getting the Error in Creating Purchase Order:
    Error Message No. 61 062 & date comes after end of valid factory calendar. (Please correct)
    Please suggest.
    Regards,
    Ashok

    I got a Solution For this. Actually User has Maintained Wrong Planned Delivery time in PIR for the Same it was Behaving like that.
    Thanks

  • Setting Valid Time to a point in time

    What's the recommended way to set the valid time to a point in time? There are cases where we want to execute a select against Valid Time enabled tables, asking for valid records at a point in time (rather than a span of time).
    I can't call SetValidTime, passing in the same begin and end date, which complains about a validTill date not greater than the validFrom.
    DBMS_WM.SetValidTime(TO_DATE('05-01-2005', 'MM-DD-YYYY'), TO_DATE('05-01-2005', 'MM-DD-YYYY'));
    What's the best way to do this?

    Hi,
    You can use dbms_wm.SetValidTimeFilterON to specify the point in time that you are interested in.
    SQL> exec dbms_wm.SetValidTimeFilterON(to_date('05-01-2005', 'MM-DD-YYYY')) ;
    This date needs to be contained within your session's validtime range.
    Regards,
    Ben

  • End of Valid Logistic Calender error while creating Sales Order

    Hi,
    While creating Sales order in VA01 the following error message comes for particular material code for a particular site only:
    24.01.2202 date comes after end of valid logistics calendar. (Please
    correct)
         Message no. 61062
    Can anyone suggest on the same.
    Regards
    Nilofer

    Hi,
    The input value given in Sales order is " Req Delivery date: 31.03.2012", but the error comes with the below date such as
    "24.01.2202 date comes after end of valid logistics calendar.(Please correct)"
    We also face one more error such as
    " Incorrect index structure for table XMVERF_POS/0000224110/000040 ".
    From where system is taking 24.01.2202 date?

  • How to check CRL validity time from client?

    Hello,
    I have one Windows Server 2003 R2 working as Standalone CA. It provides certificate for one of our internal IIS website.
    I have decreased CRL publish interval from 1 week -> 1 day and Published new CRL.
    However, our webserver is propably not aware of new CRL publishing interval changed on CA, because I suppose webserver has cached CRL locally.
    My question is, how to check cached CRL validity time from our webserver? Its running Windows Server 2003 R2.
    I attempted to run following command on webserver with 0 results: certutil -urlcache crl

    You basically have to wait it out when you are running an 11 year old operating system
    The certutil -urlcache CRL command was introduced in Windows Server 2008/Vista.
    The deletion/inspection of cached CRL data was not really an option in Server 2003
    Brian

  • Customer ##1 Enter a valid time interval error while generating customer BP

    Dear Experts,
    I am getting the following error when I am auto generating Customer while creating Business Partner in BP transaction code.
    Customer ##1: Enter a valid time interval
    Message no. CMD_API087
    Had anybody faced this problem?
    Regards
    Komal

    Hi,
    In Transaction 'BP', after values is put for BP name, Grouping & Create in BP role, there is a field for Validity period. Click on the icon to Create Validity period. This should resolve the issue.
    Regards,
    Nimesh

  • Valid Time Support - filling in gaps between non-contiguous records

    Is there an easy (or recommended) way to fill in gaps in records stored in a table with Valid Time Support?
    Here's my scenario. Suppose there are two "valid time" records for Adams in the table, one that's valid from 1/1/2000 to 1/1/2001 and the other that is valid from 1/1/2002 to 1/1/2003. In other words, there's a one year gap between the two records. The user wants to make a single edit to Adams that covers a broader period of time, e.g. 1/1/1999 to 1/1/2005, which should include the gap between these two records (and the gaps before the first record, from 1/1999 to 1/2000, and the gap after the last record, from 1/2003 to 1/2005).
    What's the best way to do this?
    I've tried setting the session time using DBMS_WM.SetValidTime() from 1/1/1999 to 1/1/2005, and then updating the database. But the update only changes the updated column (e.g. salary) without altering the VM_VALID timestamps.
    Initial values:
    NAME      SALARY     WM_VALID
    Adams     30000     (1/1/2000 12:00:00.000000 AM -04:00, 1/1/2001 12:00:00.000000 AM -04:00)
    Adams     31000     (1/1/2002 12:00:00.000000 AM -04:00, 1/1/2003 12:00:00.000000 AM -04:00)
    ==========
    DBMS_WM.SetValidTime(TO_DATE('01-01-1999', 'MM-DD-YYYY'), TO_DATE('01-01-2005', 'MM-DD-YYYY'));
    UPDATE tester_timevalues SET salary = 45000 WHERE name = 'Adams';
    ==========
    Updated values:
    Adams     45000     (1/1/2000 12:00:00.000000 AM -04:00, 1/1/2001 12:00:00.000000 AM -04:00)
    Adams     45000     (1/1/2002 12:00:00.000000 AM -04:00, 1/1/2003 12:00:00.000000 AM -04:00)
    I know this is "works as designed". But is there a relatively painless way to fill in the gaps in the records?

    Thanks, Ben. I will give that approach a try.
    BTW, I have an even better example where detecting and filling "gaps" in the effective dated periods is necessary.
    Suppose I have a link table (GroupMembership) with foreign key links to an Employee and a Group table. Say that there's currently a record in the GroupMembership table indicating that Bob was a member of the Steering Committee group from 1/2002 to 1/2004. The information now needs to be amended to indicate that Bob was really a member from 1/2000 to 1/2006. Even if the GroupMembership table has a column that allows us to UPDATE it, the UPDATE will only affect the 2002 to 2004 range, even though we've called SetValidTime() for the range of 2000 to 2006.
    We'll have to cook up some SQL to handle this case. But this seems like a case where Oracle's Valid Time Support could make this make this type of scenario easier to handle.
    As it works now, Valid Time Support will indicate that there is a record for the requested time period (2000 to 2006), but doesn't indicate that the record's valid time period is different than the requested time period (at least not without some additional work on the developer's part).
    Just a thought...

  • Valid time dimensions

    Hi,
    When reverse engineering an Oracle 12c database (using Data Modeler stand alone, 4.1 EA2 using a thin jdbc connection) on some tables valid time dimensions are detected in the database.
    This suggests the existence of a period for clause on the table in the database. This is not present, however.
    These valid time dimensions are reversed engineered to the model.
    Where can these valid time dimensions (named, for example "SYS_STSSAKFUXTO4R$45K8IN#E2LV5") be found in the database ?
    And why is it not possible to exclude the valid time dimensions in comparing the model with the database ?
    Richard.

    Hi,
    Thnaks for sorting this out. Please note that this also causes a lot of differences being reported when synchronizing the model with the database (or vice versa).
    I assume this behaviour will disappear once the bug is fixed and the "valid time constraints" have been erased form the model.
    Is this correct ?
    Richard.

  • Consolidation unit defined as "Assigned end node" ?

    Hi Gurus,
    Has anybody used the "assigned end node" consolidation unit for top group bookings ?
    Did you face any limitation / side effect ?
    Many thanks!
    Grégoire

    Hi Grégoire,
    Never tried it and never heard that anyone used it too. Would be interesting to hear an opinion of someone who has some experience with it.

  • Difference between a starting date and time and ending date and time

    Hi All,
    I need to bring out the difference between a starting data and time and ending date and time. Difference should be in time I mean it should be in hours or minus or seconds.
    I am sure there must be a Function module for this, Has anyone of you been in search of this kind of FM, Kindly suggest me. It is urgent.
    Thanks
    Mahen

    Hi,
    Check this out.
    data : date1 type dats ,   " System data type for Date (sy-datum)
           date2 type dats,
           time1 type tims,      " System data type for time (sy-timlo)
           time2 type tims,
           days  type i,
           scd   type i,
           t_mt  type i.
    days = date1 - date2. " Diference in days.
    Scd  = time1 - time2. " diference in seconds.
    t_mt =  ( days * 24 * 60 ) + ( scd / 60 ).
    total diference in minute
    <b>Reward Points & Mark Helpful Answers</b>

  • Segment: 3.314 date comes after end of valid factory calend

    Hi all,
    One infopackage load failed while extracting data from R/3 to system t oBW .
    The failed message show
    +*Errors in source system     +
    +Segment: 3.314 date comes after end of valid factory calend+
    Can any one help me how to rectify this error

    Plesae share any inputs on below error
    puru

  • Validation-time 002 and 555 in CO-validation

    Hi together,
    does anybody know the differences between the validation-times 002 and 555 in CO-validations?
    In which cases is time 555 evident ?
    Kind regards
    Udo

    HI,
    validation call-up point 0555, as you mentioned SAPNET 91005, this validation call-up point can be used to validate all sender / receiver relationships. I used this as in the SAPNET-note described to validate company codes within allocation cycles.
    One difference to call-up point 0002 is (SAPNET 392273):
    "For the allocations (assessment, distribution, periodic reposting, indirect activity allocation), validation is not called at point 2 (refer to Note 91005)."
    Best regards, Christian

  • On Calendar, I have tried to change the "Day starts at" and "Day ends at" many times however, it just does not seem to change. Please help.

    On Calendar, I have tried to change the "Day starts at" and "Day ends at" many times however, it just does not seem to change. Please help.
    This for Calendar on my Mac which of course effects my iPhone and iPad.
    I don't need to see the hours from 1 am to 6 am
    Please help!

    Well, assuming all of the above, Notifications, etc., it just might be time for a visit to the Apple tore genius center for a session with the techs.  See if it is a fault in the hardware or just an iOS reinstall is the answer.
    One more thing you could try, backup so you have a record of content, then restore to factory conditions be an Erase All Contents and Settings.  Then restore from the backup you just made.  That has helped some with WiFi problems, may be it would work with your problems.
    But with that behavior of another app with problems, the geniuses looks like a less stressful thing to do.

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

  • AE cuts the end of a time remapped footage.

    Probably a silly question but hey: I have a footage shot at 18fps and want to slow it down to 25 fps. I use the stretch tool (AE CS6) and when I render it it is slowed down alright but the end of the footage is cut to the same time as the original one and the end of it is lost. What should I do?

    Composition --> Comp Settings and then drag out teh layer after that. Please read the AE help...
    Mylenium

Maybe you are looking for

  • "View in Place" inline images and PDFs in Yosemite Mail

    I'd like to have the "View in Place" option available for images and PDFs, but it appears to be missing in Yosemite Mail. It would be particularly helpful with this new Markup feature. Any ideas how I might do this?

  • Query related to withhold tax

    Hi  Freinds, This is mamatha i have a query related to withhold tax .what is diff b/w business place and section code.what is importance of section code. Regards S Mamatha Please, search SDN

  • Set or Change Device Name in Profile Manager

    Hello, Is it possible to set or change the device name of an enrolled device using profile manager? I notice WGMs old 'Set computer name to computer record name' is still there under Login Window options, but I couldn't find away to actually change t

  • Reversal of GL documents

    Hi, Is there a BAPI /Function Module to reverse GL documents ? I am trying with BAPI_ACC_POSTING_REV_POST. Is this correct ? I am having a problem with filling the parameters obj_sys and obj?_key_a. Can anyone provide the sample code, if available. H

  • 122 Movement type

    Hi, Tell me how can i use 122 Movement Type.plz tell me all steps from po to invoice