Red X - Due to conflict between date format in Windows Regional settings

Hello
I face the following issue. To display some graphes that result of the selection of a date in a Java calendar (format mm/dd/yy) I have to change the Windows regional settings.
Which of course impact other applications like Excel....
Is there some settings/applet that can be set in Java JRE to prevent this issue ?
Same issue what ever the JRE version used.
currently JRE 1.4.2_07 VM 1.4.2_07-b05, plug-in 1.4.2_07

Hi Kevin,
I doubt anyone outside of Sun would be able to give you a definite answer to this one, but from my understanding of the JDK's interactions with Windows, I'd have to say no.
I usually find that about the only Windows default that the JDK picks on is the current user locale. From there, the JDK likely chooses its own default date and currency formatting instances, as these are all packaged up within i18n.jar within the JDK libraries.
If anyone can prove me wrong though, please do!
Hope that helps!
Martin Hughes

Similar Messages

  • Why is the date format tied to regional settings

    i like my date/time format to be customized to my liking. for me, the only way i can do this is to set my region to be the uk, even though i live here in the us. i find this kind of annoying since this causes some weird things to happen in other apps as well. for example, visiting the apple link would take me to the uk site instead of the us site. i understand that this is because i chose the uk in the international settings. but it's the only way i can get the date format that's close to what i want. is there a reason why apple doesn't allow you to customize the time/date format separately from choosing what country you reside in?

    hue tang wrote:
    is there a reason why apple doesn't allow you to customize the time/date format separately from choosing what country you reside in?
    "We" are users like you, with no knowledge of why Apple does or does not include particular features. In this case, I'd guess for simplicity, but that's just a guess.
    You can submit feedback to Apple: http://www.apple.com/feedback/iphone.html.

  • Delivery split due to Conflicting Header data (ABSSC:  uF0E0 000002)?

    Hi All,
    I have 2 line items of same material with different Schedule lines. I created a delivery for line item 1.Then I tried to enter the 2 line item in the delivery System is throwing error message as below :
    Item 10: Delivery split due to Conflicting Header data (ABSSC:  <  000002)?
    Item 20: Delivery split due to Conflicting Header data (ABSSC:  <  000002)?
    Can some body explain why this message is coming and how to resolve this?
    Regards,
    Ram

    HI,
    I have 2 line items of same material with different Schedule lines. I created a delivery for line item 1.Then I tried to enter the 2 line item in the delivery System is throwing error message as below
    Rather than  going one by one Go to VL10A & VL10C and generate the Background Delivery number and go to VL02N do the PGI
    or By using the T-Code VL01N give the Selection date is Future date like if one line item is today's Date and other line item is 25.08.2011 so you need to mention  Selection date 25.08.2011 and system will accept 2 line items before that check the Stock in MMBE & MB52
    The above solution is based on Single SO if it is multiple SO better to Go to VL10A or VL10C
    and also check the Configuration like if it is Different SO with Same customer ,you need to check the order combination in Customer master
    Revert
    Regards,
    Prasanna
    Edited by: prasanna_sap on Aug 23, 2011 11:09 AM

  • Delivery split due to conflicting header data

    hi experts,
    we have implemented CRM services with R/3 as back end system.
    when ever a service order in crm with more than one  material in line items get replicated to r/3 as sales  order .during delivery we are getting the following error.
    *Item 000020: delivery split due to conflicting header data (Function SH: Address Number: 9000001514 <-> 9000001509)*
    *Message no. VL033*
    even though the Ship to party is same.
    can any one of you hlep me to solve this problem
    Thanks & regards,
    SR

    Hi SR
    This could be because of the order combination field that has been marked in your customer master in R3. 
    The field KZAZU is nothing but the order comination information in table KNVV
    Hope this will help you...
    Regards
    Ramesh S. Narayanan

  • Date Format in Windows

    Is it possible to get the date format from windows locale setting?
    I'm using Java 1.6 and the date format instance for SHORT is not the same as windows locale setting.

    Ah, I see now, sorry.
    Must admit that I do not know the answer to this question. I always thought that Java assumed a 'standardised default' for each Locale and did not actually take any account of the platforms settings. Also, I do not think that the language exposes this information anywhere; I have not conducted an exhaustive search but cannot find anything in the System and Toolkit classes that would seem to give you access to this setting.
    It may be worthwhile searching to see where this setting is exposed throuhg the win32API. That way, you could always write native code to read the setting, access that using JNI and then make use of the setting. That would still leave one problem IMO; what would you do if the user changed the Windows date setting? Alternatively, you could use a ResourecBudnel to parameterise the date string. That would be far easier to implement and allow the user to establish their own (horror) defaults - assuming this is acceptable given the requirements of the application.

  • Streams Conflict Handler Date Format

    Hi.
    Into my Conflict Handler PL/SQL I have this instruction:
         tmp := lcr.get_value('NEW','DT_ULT_VERIFICACAO'); rc := tmp.getDATE(v_DT_ULT_VERIFICACAO);
         IF (v_DT_ULT_VERIFICACAO is not null) THEN
         cmdupd := cmdupd||',DT_ULT_VERIFICACAO='||'TO_DATE('''||v_DT_ULT_VERIFICACAO||''','''||'DD/MM/RR'||''')'; END IF;
    The result after execution is:
    UPDATE HW_ITENS SET USER_UNF_ID=13,CD_ITEM=4,NR_INMETRO=32037347,NR_SERIE='ME - 0295',
    DT_ULT_VERIFICACAO=TO_DATE('04-DEC-09','DD/MM/RR'),NR_ULT_VERIFICACAO=21036627,TP_ULT_RESULTADO=4
    WHERE ITM_ID = 2836955 and SRV_UNF_ID = 13
    As we can see, I received a date format of DD/MON/AA. This is not good to my work. I need a date format of DD/MM/AA.
    How can I change this when using a Apply Conflict Handler ?
    Thank in advance.
    JoseFormiga

    Did you checked the setting of the database NLS_DATA_FORMAT if the column was date or NLS_TIMESTAMP_FORMAT for timestamp.
    Check the setting of V$NLS_PARAMETERS.
    set pages 66 lines 190
    SQL> select * from V$NLS_PARAMETERS
    PARAMETER                                                        VALUE
    NLS_LANGUAGE                                                     AMERICAN
    NLS_TERRITORY                                                    AMERICA
    NLS_CURRENCY                                                     $
    NLS_ISO_CURRENCY                                                 AMERICA
    NLS_NUMERIC_CHARACTERS                                           .,
    NLS_CALENDAR                                                     GREGORIAN
    NLS_DATE_FORMAT                                                  DD-MON-RR
    NLS_DATE_LANGUAGE                                                AMERICAN
    NLS_CHARACTERSET                                                 AL32UTF8
    NLS_SORT                                                         BINARY
    NLS_TIME_FORMAT                                                  HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT                                             DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT                                               HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT                                          DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY                                                $
    NLS_NCHAR_CHARACTERSET                                           AL16UTF16
    NLS_COMP                                                         BINARY
    NLS_LENGTH_SEMANTICS                                             CHAR
    NLS_NCHAR_CONV_EXCP                                              FALSE

  • Conflict between iTunes Match and Windows 8.1

    I have been running iTunes on my fully updated Windows 8.1 PC for some time, without any particular issues. A few days ago, I activated iTunes match. It worked just fine, in the perspective of my iPhone and iPad. However, my PC stopped being responsive: Long time-outs on just about anything, and dialog windows refusing to appear (one of them being the McAfee console ....). A virus search using Microsoft's emergency services showed nothing.
    The moment I de-activated iTunes match, everyhing reverted to normal.
    My conclusion is, there is a major conflict between whatever the iTunes match service does, and the Windows 8.1 operating system.
    Any idea what this is all about, and if there is anything I can do about it (except avoiding using the match functionality)?
    I have the latest update of iTunes for PC.

    Hi lars1950,
    Welcome to Apple Support Communities.
    It sounds like you're seeing issues with Windows responding slowly since enabling iTunes Match. The article below may resolve the issue for you, it describes possible conflicts with Layered Service Providers and how to prevent them.
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123
    I hope this helps.
    -Jason

  • Date format in windowes 7

    i have problem with date format in developer 10g and developer 6i
    it show date in this format 2011/25/1
    it sould be like this 25/1/2011
    i put the format mask like dd/mm/yyyy but it showing lik 2011/25/1 this problem only in windowes 7
    if i run in windows xp it work fine
    how i can reslove this
    in xp it work fine

    >
    i put the format mask like dd/mm/yyyy but it showing lik 2011/25/1 this problem only in windowes 7 Use the formats like this DD/MM/RRRR
    Hope this will help you..

  • Set Date/Currency/Numeric Format in WebIntelligence - Regional Settings

    We have migrated from BOE R2 to BOE R3.1, and our users have observed that the date & numeric format is not localized to spanish (Spain).
    How can Web Intelligence regional settings be configured to all the users (not editing personal configuration of every user)?
    For instance the time is indicated with AM/PM instead of 24h time format and the numbers are separated by comma (,) and not by dot (.).
    Example 11,816,138 instead of 11.816.138
    Thank you!

    Problem solved, the fp 1.3 installation did not complete.
    We reinstalled it and now everything works properly.

  • Item 000090 Delivery Split due to conflicting header data (FKAIV - IV)

    Hello,
    I am getting the above message. I would like to know where can I find the Inter Co Bill type (FKAIV) for the materials, so that I can see where it is different.
    P.S. I am an ABAPer.

    Hi
    It seems you are running Intercompany Process.Please check in the LIKP table(LIKP - FKAIV).There you can see the data.
    NOTE: Kindly search in the forum also
    Regards
    Srinath

  • Conflict between Date values at Infocube & Query Level

    Hi Folks,
    I am stuckup with a strange situation and it is:
    The value of date fields are coming correctly at infoprovider level and when i call the same infoprovider at query level the values are totally different.
    Any suggestions in this regard.
    Thanks

    Hi,
    Are you using the same user for running the query and for checking data in InfoProvider, otherwise there might be personal settings difference.
    Execute your query in RSRT and check the output.
    Regards,
    Durgesh.

  • Oracleparameter changes date format on windows 2003 server

    Hi, i am using a stored procedure that contains a datetime-field. The date i am sending is formatted as "2007-05-30", but when it comes to the oracle-server, the date has been reformatted to "30-MAY-07".
    I am using ODP.NET within the VS.2005. In web.config i have set the uiculture and culture to sv-SE, the settings on the webserver to Swedish without any positive results.
    So, when i send away a date within the ODP commandparameter it rearrange the date from the component to the server. Any ideas to solve this problem? I have searched the net without any luck. Hopefully someone can help me in the right direction?
    I was looking at setting NLS_LANG = SWEDISH with a first call to the database, but i have not tried that yet. Also, the code works fine on my local computer - so the translation of date is just on the windows 2003 server.
    string ConnStr = "SERVER=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=XX)(PORT=1526))(CONNECT_DATA=(SERVICE_NAME=AAAA)));uid=A;pwd=B;";
    string returnData = "";
    OracleConnection myConnection = new OracleConnection(ConnStr);
    string selecteddate = "2007-05-20";
    string newspaper = "EX";
    try
    myConnection.Open();
    OracleCommand cmd = new OracleCommand("ROUTEXUSER.PKGROUTEX.F_SUB_ROUTEX_JOB", myConnection);
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter prm1 = new OracleParameter("vd_datum_in", OracleType.DateTime);
    prm1.Direction = ParameterDirection.Input;
    prm1.Value = selecteddate.ToString();
    cmd.Parameters.Add(prm1);
    OracleParameter prm2 = new OracleParameter("vs_tidning_id_in", OracleType.VarChar);
    prm2.Direction = ParameterDirection.Input;
    prm2.Value = newspaper;
    cmd.Parameters.Add(prm2);
    OracleParameter prm3 = new OracleParameter("vn_seqnr_out", OracleType.Number);
    prm3.Direction = ParameterDirection.Output;
    cmd.Parameters.Add(prm3);
    // add record
    cmd.ExecuteNonQuery();
    // returnvalue
    returnData = cmd.Parameters["vn_seqnr_out"].Value.ToString();
    catch (Exception ex)
    throw new System.SystemException("Error: " + "-" + ex.Message);
    // stänger och avslutar connections
    myConnection.Close();

    Hi,
    I sucessfully installed oracle9i,Forms6i & reports6i on windows 2003 server but now where should i change the tns names and previously in my office i use to install in D FOLDER but now here i installed in F FOLDER pls where should i change those paths and the necessary things.After that where should i paste it in forms6i folder which is in F FOlderYou can copy the tnsnames.ora file in F:\<Oracle_home>\net80\admin
    Regards,
    Xaheer

  • Firefox does not show numbers in arabic format when the windows regional settings is set to arabic, instead it shows numbers in latin characters

    when switching windows regional settings to Arabic, numbers are still shown in Latin characters, unlike other browsers (ex IE).
    == This happened ==
    Every time Firefox opened
    == all firefox versions

    See "bidi.numeral" in http://kb.mozillazine.org/About:config_entries#Bidi.
    See also http://mxr.mozilla.org/mozilla1.9.2/source/modules/libpref/src/init/all.js#1058
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • Wrong query results: due to date format?

    hello,
    I have oracle 11 and when I execute this query:
    select MYDATE from mytable order by MYDATE DESC;
    it get me a bad order:
    MYDATE
    25-MAR-09
    13-MAR-09
    10-MAR-10
    10-MAR-10
    31-JAN-10
    29-JAN-10
    28-JAN-10
    08-DEC-09
    07-DEC-09
    06-DEC-09
    05-DEC-09
    is it may due to a wrong date format?
    where have I to look out? init.ora?

    But, there is no problem at my end (Using Oracle 10.2.0.1 on win xp):
    SQL> create table t(mydate date);
    Table created.
    SQL> insert into t values(to_date('25-MAR-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('13-MAR-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('31-JAN-10','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('07-DEC-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('05-DEC-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('06-DEC-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('08-DEC-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('10-MAR-09','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('29-JAN-10','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('10-MAR-10','DD-MON-YY'));
    1 row created.
    SQL> insert into t values(to_date('28-JAN-10','DD-MON-YY'));
    1 row created.
    SQL> select * from t;
    MYDATE
    25-MAR-09
    13-MAR-09
    31-JAN-10
    07-DEC-09
    05-DEC-09
    06-DEC-09
    08-DEC-09
    10-MAR-09
    29-JAN-10
    10-MAR-10
    28-JAN-10
    11 rows selected.
    SQL> SELECT MYDATE FROM T ORDER BY MYDATE DESC;
    MYDATE
    10-MAR-10
    31-JAN-10
    29-JAN-10
    28-JAN-10
    08-DEC-09
    07-DEC-09
    06-DEC-09
    05-DEC-09
    25-MAR-09
    13-MAR-09
    10-MAR-09
    11 rows selected.
    SQL> SHOW PARAMETER NLS_DATE;
    NAME                                 TYPE        VALUE
    nls_date_format                      string
    nls_date_language                    stringCan you show us the output of
    show parameter nls_date;
    Regards
    Girish Sharma

  • Date Format in calculations

    Hi all,
    we are currently upgrading our discoverer from version 3.1.25 to version 10.2.0.1.0.
    we have an old report that had been created with the old version and saved on the computer (not in the database) with a date calculation on a date parameter as follows: <table_name>.<date_field> - :DATEPARAMETER (the date format of the two dates values is DD/MM/YYYY).
    This calculation works fine on the old discoverer version when we run it, but when we try to run the report on the new discoverer desktop version (10.2.0.1.0) we get an error that the parameter is incorrect.
    the thing is that if i convert the date format manually using the to_date function on the parameter, it works fine.
    My question is what is the default date format for the calculations, and how can i set it myself?
    i already added the NLS_DATE_FORMAT key in the registry under HKEY_LOCAL_MACHINE -> SOFTWARE -> ORACLE, but it doesn't work, it changes the date format of the date fields that are presented in the table after a report execution.
    In addition, if we save the report to the database using the desktop version and try to run the report on discoverer plus, we get the same error and need to perform the same solution (convert the parameter manually with to_date).

    mac-a-rooney wrote:
    I am working with dates.
    1st I want to calculate a time span for example calculate cell A2 - cell A1. In cell A1 it is written 01.01.2010 (so first of January) and in cell A2 01.02.2010 (so first of February). I wrote the dates in letters, too, to avoid misunderstandings due to different national date formats.
    Since January has 31 days, the obvious result thereof is "31D". So far so good.
    but now I want to multiply the 31 with a numeric value, but not the 31D, because if I do so, and let's say the numeric value is 3, then my result is 93 DAYS rather than just 93.
    Are you sure you're asking in the right forum?
    Using Numbers '08, with the following entries:
    B2: Jan 1, 2010
    C2: Feb 1,2010
    D2: =C2-B2
    E2: =3*D2
    I get 31 (not 31D) in D2 and 93 (not 93 DAYS) in D2.
    From your description, I think you're actually using Numbers '09, and Jerry's advice above applies.
    Regards,
    Barry

Maybe you are looking for