RH6: Issue: Date Field: Altered Dates

I started a project in RHX5 and am now using RH6 for the same
project. The project has a topic named Change Log. It contains a
3-column table (version, date, details). To insert the date in the
middle column, I go to the Menu Bar, click Insert, click Field, and
click Date. From there, I double-click the newly created date. This
generates a dialog box in which I clear the Auto-update checkbox
for the date. This has worked fine for two or three months.
Yesterday, when I did this, half of my dates disappeared and the
other half all changed to yesterday's date. Any ideas?

After posting my inquiry, I remembered that Windows automatic
updates were applied to my PC after I left work Friday. When I
arrived at work yesterday, my PC had been rebooted by Windows
update. It was after that reboot that I had problems with dates in
RH6. Is there any chance that one of the updates is causing a
problem? Four were applied. They are:
1. Update for Outlook 2003 Junk Email Filter (KB931764)
2. Update for Windows XP (KB929338)
3. Windows Malicious Software Removal Tool - March 2007
(KB890830)
4. Update for Windows Media Format 11 SDK for Windows XP
(KB929399)

Similar Messages

  • Base line date field ( header data 2nd tab) to be made noneditable in MIRO

    Hi friends,
    My requirment is to make Base line date field ( header data 2nd tab) to be noneditable in Tcode MIRO .
    This base line date should be noneditable only for one specific company code.
    Help me with some clues.
    regards
    Sathish

    why cant you use a screen variant....In SHd0..
    also check this..
    [http://forums.sdn.sap.com/click.jspa?searchID=37685778&messageID=8389969]

  • Date field - no date entered - conversion error

    Hi,
    i've a input text field with a datepattern attached in my jsp, whose requrired attribute is set to false. If i submit the page and no date is entered, JSF returns "Conversion error occured" for the date field.
    For testing purposes i made a simple JSP which contains only this date field and a reload button, which only submits the form. When the button is clicked the conversion error is displayed as described.
    What am i doing wrong here?
    thx
    brunft
    <html>
    <%@ page contentType="text/html" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view locale="de">
    <html>
        <head><title>Date test</title></head>
        <body>
        <h:form id="datetest">
          <p> </p>
          <h:inputText id="someDate" styleClass="formText" value="#{testDate.someDate}">
            <f:convertDateTime pattern="#{testDate.datePattern}" />
          </h:inputText>
          <p> </p>
          <h:commandButton id="refresh" styleClass="formButton"
                  value="Reload"
                  action="#{testDate.actionReload}" />
          <p> </p>
          <p style="color:red;"><h:messages /></p>
        </h:form>
        </body>
    </html>
    </f:view>The bean:
    public class TestDate {
      private Date someDate;
      private static String datePattern = "dd.MM.yyyy";
      public TestDate() {
      public Date getSomeDate() {
        return this.someDate;
      public void setSomeDate(Date someDate) {
        this.someDate = someDate;
      public String getDatePattern() {
        return this.datePattern;
      public String actionReload() {
        return "success";
    }faces-config.xml:
      <managed-bean>
        <description>Date test.</description>
        <managed-bean-name>testDate</managed-bean-name>
        <managed-bean-class>test.TestDate</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>

    You can try by deleting "pattern=="#{testDate.datePattern}"
    <f:convertDateTime pattern="#{testDate.datePattern}" />

  • Populating Date field when Date = 00000000

    Hi Friends, Please help me with this , I have a requirement where user is not populating the date field "0objvalto" I want to populate that to 12/12/2020
    Abap code i put in transformation in BI but it is throwing error that 20.12.2008 format not correct
    Please help me correct the code or let me know what should i code to populate
    IF    SOURCE_FIELDS-REOBJVALTO = '00000000 '.
          RESULT = '20.12.2020'.
    ENDIF.
    Thanks
    Soniya

    Hi Soniya,
    Dates are internally stored as YYYYMMDD - so you must input them this way when you are doing in directly using ABAP.
    IF SOURCE_FIELDS-REOBJVALTO is INITIAL.
    RESULT = '20201220'.
    ENDIF

  • Date field without data

    Hallo, im new,
    i have a little programm,
    the user edit a date-field (P1_Termin) and other fields, than the programm create a mail with xml-attachment.
    Only the date-field dont works. When ther user edit the field (standard ist SYSDATE+14) then die field show the new value, but the value is not in the field (P1_Termin).
    Can somebody help me?
    Thank you.

    Dear 984778,
    Would you provide a sample on apex.oracle.com with workspace+developer information
    To be able to help you efficiently.
    Best Regards

  • Partiton by range date field

    I am creating a script that will automatically create the partitions. My partition key is a Date field
    I am testing changing date field uing Date, Timestamp and Timestamp with local time zone.
    How should my values less than clause look for Timestamp and
    Timestamp with local time zone?
    For example, testing for date looks like this:
    Partition 2005_JAN values less than (to_date('2005-02-01 00:00:00',SYYYY-MM-DD HH24:MI:SS') tablespace data01;

    Mike,
    if I understand your task right, you would like to have a script which would automatically create new partition for every new month/year.
    You can use something like that using EXECUTE IMMEDIATE and dynamic
    SQL to create new partition:
    SQL> create table t (date# date)
      2  partition by range(date#)
      3  (PARTITION DATES_AUG VALUES LESS THAN (TO_DATE('01-09-2005','DD-MM-YYYY')));
    Table created.
    SQL> select table_name, partition_name from user_tab_partitions
      2  where table_name = 'T';
    TABLE_NAME                     PARTITION_NAME
    T                              DATES_AUG
    SQL> declare
      2   cnt number(1);
      3  begin
      4 
      5   select count(1) into cnt from user_tab_partitions
      6   where table_name = 'T' and partition_name = 'DATES_' ||
      7   to_char(last_day(sysdate)+1,'MON');
      8 
      9   if cnt = 1 then return; end if;
    10 
    11   execute immediate 'ALTER TABLE t ADD PARTITION DATES_'
    12   || to_char(last_day(sysdate)+1,'MON') ||
    13   ' VALUES LESS THAN (TO_DATE(''' || to_char(last_day(sysdate)+1,'DD-MM-YYYY') || ''''
    14   || ',' || '''DD-MM-YYYY''))';
    15  end;
    16  /
    PL/SQL procedure successfully completed.
    SQL> select table_name, partition_name from user_tab_partitions
      2  where table_name = 'T';
    TABLE_NAME                     PARTITION_NAME
    T                              DATES_AUG
    T                              DATES_OCTTo be franky this is hardly relevant forum to ask this sort or questions, it would be better to ask it in SQL-PL/SQL or Database General ones.
    Rgds.

  • Key Fields & Data Fields in DSO.

    In Standard DSO, Maximum how many number of key fields and data fields we can enter in one DSO?
    For e.g : In Cube Char - 248      KF - 233
                  In DSO Key Fields - ?   Data Fields - ?
    Regrards,
    Nithi.

    Hi Nithi,
    Since Key fields are decide by us we can add according to our requirement.
    Key fields can only be 16 you cannot exceed this. but if you have more key fields, you can combine fields using a routine for a key field
    Max Data Fields - 749 data fields can be added in a DSO.
    Warm regards
    Gokul

  • Creating process for multiple Date fields for update or insert in APEX

    hello there,
    could someone please help me?
    i have a form on Apex based on view that is based on three tables and updating and inserting ok using trigger instead of.
    i have a problem now as in my form i have around 75 fileds (items) incuding 30 or more date fields which could be populated or left blank or update later.
    so for each date field i have two boxs; one for date, input as dd/mm/yyyy (text field) and second for time, input as 23:45. All dates will be insert or update manually by user. so as i mentioned not all date fields could be poulated at one stage.
    so i have created some process and validations and all of them work fine but i came accross if date left blank then (:) giving me problem so i have done following further process for each date field. In real table all the date fields have data type date.
    declare
    v_my_var date; -- for first date field
    str_dy VARCHAR2(10);
    dt_indx date;
    str_tm VARCHAR2(20);
    tm_indx date;
    begin
    str_dy := :p4_first_date
    str_tm := str_dy||' '||substr(:p8_first_date_hh,1,2)||':'||substr(:p8_first_date_HH,4,2);
    dt_indx := to_date(str_tm,'DD/MM/YYYY HH24:MI');
    IF str_dy is not null then
    v_my_var :=dt_indx;
    ELSE
    v_my_var := NULL;
    END IF;
    update table 1 set my_date = v_my_var where d_id= :p4_d_id;
    end;
    above code work fine but one date field of course therefore i have to do same code for each date field with changes and initialise variable again and again for each field.
    so i like to ask is there any easy way that is more professional. i was thinking about the procedure and using collection or similar but honestly not much experience on that so could some one please help me?
    I will be very thankful.
    KRgds

    Hi,
    You can do the needful by re-using the code if you can give the item names as P8_DATE1, P8_DATE_hh1, P8_DATE2, P8_DATEhh2 etc..So your item name just differs by a sequence.
    Now you write function which will return desired date value taking above items as input. Pass item names to this function, get session state using APEX_UTIL.GET_SESSION_STATE('item_name') API.
    Now modify you code as
    FOR i IN 1..30
    LOOP
    v_date_array[i] = f_get_date('P8_DATE'||i, 'P8_DATEhh'||i);
    END LOOP;
    ....Now you have all date valus in array. Just write one update as follows
    UPDATE  TABLE1
    SET date1 = my_date_array[1], date2 = my_date_array[2]..
    WHERE ....Hope it helps :)
    Cheers,
    Hari

  • Date fields in the Maintainence View.

    Hello friends,
                   I created a maintanence view which of 2 steps. This view contains a DATE field of data element type 'DATS". Now the problem is -"
    1. In the first screen  of the viewI am not able to see only the DATE field(Over view scr).
    2. But I able to see the same field in the 2nd screen(Maintanence Screen).
    Not only to my View I maintained ' Table Maintanence Generator" to some more tables.There also I am not able to see the date field in the first screen, unless it is a key field.
    Thanks in advance.

    Hi
    Step 1: Create & Maintain Table (SE11)
    Screen 101: ABAP Dictionary: Initial Screen
    Screen 102: Maintain Table -> Delivery and Maintenance
    Screen 103: Maintain Table -> Fields
    [] SE11: Enter Table Name -> Create
    Enter Table Description (Mandatory Field)
    Select Delivery Class
    Set maintenance level
    Enter Fields, Assign Data Elements
    Save Entries
    Check Inconsistencies
    Activate Table
    Go To Technical Settings (SCREEN 104)
    Delivery Class: The delivery class controls the transport of table data when
    installing or upgrading, in a client copy and when transporting between customer
    systems. The delivery class is also used in the extended table
    maintenance.
    There are the following delivery classes:
    A: Application table (master and transaction data).
    C: Customer table, data is maintained by the customer only.
    L: Table for storing temporary data.
    G: Customer table. The customer namespace must be defined in table TRESC. (Use
    Report RDDKOR54 here).
    E: System table with its own namespaces for customer entries.
    S: System table, data changes have the same status as program changes.
    W: System table (e.g. table of the development environment) whose
    data is transported with its own transport objects (e.g. R3TR PROG, R3TR TABL,
    etc.).
    Data Browser/Table View Maint.: This indicator specifies
    whether it is possible to display/maintain a table or view using the maintenance
    tools Data Browser (transaction SE16) and table view maintenance (transactions
    SM30 and SM31).
    MANDT field is mandatory for Client dependant tables
    Technical Settings: The technical settings control, for example, table buffering.
    Indexes: To speed up data selection, you can create secondary indexes for the table
    Append Structure: Append structures are used for enhancements that are not included in the standard.
    Screen 104: Maintain Technical Settings
    Select Data Class (Mandatory) [APPL0]
    Select Size Category (Table size - No. of records - Mandatory) [1 to 6]
    Specify Buffering [allowed / not allowed]
    Save
    Check Inconsistencies
    Activate & Go Back to “Maintain Table Screen”
    Data Class: The data class defines the physical area of the database (for ORACLE
    the TABLESPACE) in which your table is logically stored. If you choose a data
    class correctly, your table will automatically be assigned to the correct area
    when it is created on the database.
    The most important data classes
    are (other than the system data):
    APPL0 Master data
    APPL1 Transaction data
    APPL2 Organizational and customizing data
    Size category: The size category determines the probable space requirement for a table in the database.
    Buffering: The buffering status specifies whether or not a table may be buffered.
    Screen 105: Maintain Table
    Screen 106: Maintain Enhancement Category (ECC 6.0 onwards)
    -> Extras -> Enhancement Category
    Select Enhancement Category
    Enhancement Category: Structures and tables that were defined by SAP in the ABAP
    Dictionary can be enhanced subsequently by customers using Customizing includes
    or append structures. The enhancements do not only refer to structures/ tables
    themselves, but also to dependent structures that adopt the enhancement as an
    include or referenced structure. Append structures that only take effect at the
    end of the original structure can also cause shifts - in the case of dependent
    structures - even within these structures.
    Screen 107: Maintain Table -> Table Maintenance Generator
    Screen 108: Generate Table Maintenance Dialog: Generation Environment
    -> Utilities -> Table Maintenance Generator OR [] SE54
    Specify Authorization Group [&NC&]
    Select Maintenance type [One Step/Two Step]
    Mention Screen Numbers [1/2]
    Save & Go Back
    Single step: Only overview screen is created i.e. the Table Maintenance Program will have only one screen where you can add, delete or edit records.Two step: Two screens namely the overview screen and Single screen are created. The user can see the key fields in the first screen and can further go on to edit further details.

  • IDoc posted in R/3 but data for Date field has not generated.

    Hi Experts
    This is JDBC to IDoc scenarion.
    Source: MS SQL Server
    Date Data Type: smalldatetime
    Date field Format: yyyy-MM-dd hh:mm:ss --> example: 2009-11-13 00:00:00
    XI Mapping: Source Date --> Transformation --> Target Date
    Transformation: yyyy-MM-dd hh:mm:ss to yyyyMMdd
    Target: R/3 System
    Date Data Type:  ERDAT from VBAK table - Date on Which Record Was Created
    Date field Format: Date field (YYYYMMDD) stored as char(8)
    Check points:
    1. Mapping is working fine in XI and transformation is done with the test data: 2009-11-13 00:00:00  --> to ---> 20091113
    2. In SXMB_MONI the data is processed from the source and the IDoc XML data is generated. In the IDoc XML data the date field is containing the value <DATE>20091113</DATE>
    3. But when I tried to open the IDoc(SE05) in R/3 the date field is empty and no data is generated.
    Request you to let me know why the error is happening.
    Regards
    Ram

    Hi Ram,
    First try to test the same IDOC generated in ECC Box by populating date field value using WE19 and test .
    Or
    Instead of passing date value from SQL Server, Just give a try with  Current Date function in Mapping and test in ECC system.
    then we can think on further analysis.
    Regards,
    Vijay

  • Planning function to change date field value in layout

    Hello experts,
                          I have 1 BPS layout with 2 date fields ( Start date, End date ). With a filter conditions, set of data comes in BPS layout on execution and 2 date fields also contain some value...I want to change values of these 2 dates...both the date fields are char infoobjects..in BPS layout, in planning function I got only 1 function ( Repost function ) to change the value of char infoobject based on some condition. but date field value is not the status field...i want to enter new date instead of old date..if i right exit function in that also i can change only keyfigs values..so please help me to solve this problem..
    Thanks & Regards,
    Priyanka Joshi

    Hi Priyanka,
    As of now master data planning is not so flexibly supported.
    Still u can refer the below link which is enhancement of standard Repost function,and can be used to change master data.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10d2b273-0e12-2c10-fab3-a34bde559f92]
    As far as my knowledge goes u cannot directly input date in rows.
    regards,
    Rajendra

  • Digital Signatures and date fields

    I have a form with digital signatures.  I understand that the digital signatures have a date on them but until we are fully electronic with the form some users may still print sign and date.  With that said we will have a date field next to the signatures.  Is there anyway to default the date field to whatever date the form was signed - to tie them together some way?  If not is there anyway to make the date field not be less than today's date?  That it can't be post dated?  Thanks!
    Jodi

    Check the Digital Signature status, if it is in signed state populate the date field with date.
    But problem is it will show the current system date, may be user can change their pc/laptop dates.
    Please check the attached sample. Script written on change event of Digital Signature field.
    RAGHU.

  • Add 90 days to a date field.

    Hi All,
    I have a form page in which i have a field called date. The requirment is like this whenever i come to this form page the date field should 1st check the sysdate and add 13 weeks or 90 days to it and display it there. It should be like this whenever user comes to this page the date field gets loaded like this and display there. Need help to do this.
    Thanks in advance.
    Regards

    But i want this field to be dynamic. This date field is date picker. If i select 15th May from date picker it should populate 14th august. Any suggestions on thisIs this concept of selecting one date and having a completely different one appear going to be clearly understood by users? From a usability/accessibility perspective it may be a better idea to use 2 items, with the initial selection being made in a date picker and the computed value appearing in a separate display/read-only item.

  • Auto populate a date field in pdf

    in the form I am working on I have a date/time field. I need it to populate the current date when the form is open. I get it to work but it has the time on it. I only need the date. when I try to change it to display just the date. It will not auto populate ? please help. Thank you for any one who can help.
    using adobe livecycle ES

    I found out how to use current date.
    To add current date fields in LifeCycle
    You can use a date/time field to automatically show the current date by using the Runtime Property option in the Value tab of the Object palette.
    Note:  When using a current date field, the date updates to reflect the system’s current date each time a user opens the form. 
    1.  In the Object Library palette, click the Standard category and drag a Date/Time Field object onto the form design.
    2.  In the Object palette, click the Value tab and select Calculated - Read Only from the Type list.
    3.  Select the Runtime Property option.
    4.  View the form in the Preview PDF tab.
    Hope this helps!
    Brian

  • Hash is printed in date field in excel output.

    Hello,
    I am developing a report in abap. Report output is exported to excel by using OLE code technique.
    The one date field 'posting date '  is  in the system has value i.e 27.12.2009    and i want it to be as 27/12/2009.
    i have concatenated the internal table date field into another field ' text ' of type c seperated by '/'.
    as follows :
    concatenate itab-budat6(2) itab-budat4(2) itab-budat(4) into itab-text separated by '/'.
    all dates values  are coming right,
    except dates which starts with 01.12.2009 to 09/12/2009 are showing hash(###) character and when excel column is extended then it shows
    date but in the format 12/01/2009.
    how to solve this.

    that is because 1 tab = 8 char..
    add a single quote ' to the beginning... it will be displayed as u wish....

Maybe you are looking for

  • Populating multiple rows in a table?

    Hi all, I hope someone would be able to assist me with this.  Currently, we are supporting a Web Dynpro application that allows a user to query for order data.  In the first view, there is a table with columns order id, order name, customer name, and

  • Primary key in fact/Dimention/SID table?

    Hello sap gurus, 2 Questions.... Which is primary key in -Fact table (probably answer is .... combination of DIM_ID keys) -Dimention table ( probably answer is .... DIM_ID key) -SID table ( probably answer is .... SID_ID key) Thnx in advance

  • Cannot uninstall Premiere Pro 2.0

    I use a Windows Vista and I downloaded Premier 2.0 when I saw that it was free. (Thank you very much Adobe) I downloaded the files and installed it, but when I went to start up the program I get an error message that says, "Registration information i

  • HP Photosmart 945 Digital Camera

    The batteries drain very quickly. Using high capacity 2700mAh NiMH batteries with intelligent charger. Can only take 5-10 shots with flash with fully charged batteries. Earlier I could take more than 50 shots before the batteries drained. What could

  • Transaction Data

    Hi friends How to upload the Transaction Data by using LSMW.