Smartform date formats not following SU3 setting or country settings.

Hi,
We have a smartform that has date fields that are to follow the format given in the country settings.
But i cannot seem to make the fields be printed out by the country settings. Ís the variable field to be of a special type?
I would rather not hard code these settings in the smartform.
Hope someone can help. We are running 46C.
Best regards
Lisa M Simonsen

Hi,
Thanks for the reply but its still not working
Best regards
Lisa M Simonsen

Similar Messages

  • "date format not recognised" in DBMS_SESSION, on page over db_link

    Hi,
    I have an Apex 4.0 page which has a region that gets data constituted from a connection across a database link.
    The host database is 11.1.0.6 and the remote database is 9.0.1. (Both Standard Edition)
    I am using EPG.
    Intermittently, I receive the following error (having turned debugging on):
    Wed, 25 Aug 2010 10:21:53 GMT
    ORA-20867: ORA-01821: date format not recognized
    ORA-02063: preceding line from CLIFF
    ORA-06512: at "SYS.DBMS_SESSION", line 157
    ORA-06512: at "APEX_040000.WWV_FLOW_LANG", line 387
    ORA-06512: at "APEX_040000.WWV_FLOW", line 9284
    ORA-06512: at "APEX_040000.F", line 267
    ORA-06512: at "APEX_040000.F", line 294
    ORA-06512: at line 30
    I'm somewhat confused as to what is causing the generation of this error.
    After receiving this error, anything I else that I do that involves building 'pages' works perfectly fine. I can login/out, no problems.
    However, if I try and RUN any page within my application thereafter (all of these access local DB information apart the 1 that generates the error), I continue to receive exactly the same error - no matter which page I am trying to access.
    Help?
    - Tony.

    Hi Patrick,
    No. I haven't yet applied the patchset. May do that this afternoon now.
    I don't believe I've manually set any date formats anywhere. Just entered the Builder with default options (apart from choosing a theme) and away I went!!
    What surprises me is that the application has no problems viewing all the data. The functionality all seems fine. I had this working on a previous setup for months,. without any problems, using version 3.2. (This wasn't migrated though, this was a rebuild from scratch.)
    From further "tests", the error seems to occur when I edit the page that involves the remote data.
    Normally, a user would land on the page from having used a hyperlink column on a previous page's classic report region.
    The point at which it all starts to go wrong is if I connect to the page as normal, but then EDIT the page, and then try and re-run it.
    The problem with the date format then re-occurs repetitively, no matter which page I try and view. Sometimes pages will load some components, but then generate odd errors with others. e.g. I have a small series of 3 dial charts, all with slightly varying SQL series (same SQL, slightly different where clause). Now I am seeing that 1 may load and 2 may give odd flash errors...
    Right now, I just tried to Export my application - and I still got given the date format error!! Sub-sequent retries allowed the operation to complete successfully.
    The only way I seem to be able to eradicate the recurring errors is to kill all the currently connected ANONYMOUS users in the DB, and then relog to the application.
    - Tony.

  • Date format not recognized -- urgent help needed

    Hi,
    I'm having a problem when start sqlplus in dos command window. If I start it from C:\oracle\ora81\bin, it won't started and error message showing like 'Date format not recognized' and then come back to DOS.
    I do have OWB installed which also has SQLPLUS installed so that there is no problem if I start it from C:\ORACLE\owb92\bin.
    For some reason, the path is setting as C:\oracle\ora81\bin before C:\ORACLE\owb92\bin so the default always goes to 81 folder.
    If restart the DB instance, and this problem is gone. But it comes back after some application running (our own application and Oracle provided OMBPlus ). We double check our own application, and there is no where to "alter session ...".
    Any help will be very appreciatged,
    Thanks,
    Daming

    I'm having a problem when start sqlplus in dos command window. If I start it from C:\oracle\ora81\bin, it won't started and error message showing like 'Date format not recognized' and then come back to DOS.
    Do you have a file called 'login.sql' in the folder 'C:\oracle\ora81\bin'? If there is one, is there an 'alter session' command in this file?

  • Australian Date format not American

    when running reports errors can occur when date prompts are added to webi query filters because it using American date format instead of Australian. How to change this so that the date format is Australian?
    I have search the net and gone through below but still a problem:
    1.          
    D:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dataAccess\connectionServer\odbc\sqlsrv.prm
    Change
            <Parameter Name="USER_INPUT_DATE_FORMAT">'mm/dd/yyyy HH:m:s'</Parameter>
    to
            <Parameter Name="USER_INPUT_DATE_FORMAT">'dd/mm/yyyy HH:m:s'</Parameter>
    2.          Server control panel settings changed all to Australian
    3.          Deski > options > English (Australia)
    4.          infoView preferences:
    -     Product locale = user browser
    -     Current time zone = local to web server
    -     Preferred viewing = English (AUS)
    CMC preferences:
    -     Product locale = user browser
    -     time zone = Canberra, Sydney, Melbourne
    -     Preferred viewing = English (AUS)
    what else do change/check?

    What reports are these for? I.e Deski/ Webi/ Crystal. Also, what version of BOE XI 3.x are you using ? What SP/FP level are you on?
    I am able to change the change the date format to Australian by setting the Preferred Viewing Local to 'English (Australia)' . If you're in Australia, using the browser locale should work.
    Note: I tested with Webi reports.
    Best,
    Srinivas

  • ORA-01821: date format not recognized Error in PL/SQL report-4.0

    Hi,
    I am using Apex 4.0 and i have a Classic report(function returning query) which selects a date column.
    The query runs at the backend and gives the output.
    But when i run the report on the page, i get the error
    report error:
    ORA-20001: Error fetching column value: ORA-01821: date format not recognizedThe values for the date column are like this 14-MAR-13,01-FEB-13 etc... Everything seems to be right.
    But I have no idea why this error occurs.
    Thanks
    Divya

    Aren't these errors annoying! But there's a data / format mismatch for sure. What I need to see -- and what will tell you what is wrong -- is
    1) exactly what the data is and
    2) exactly what the format string is that is being used to convert it.
    The values for the date column are like this 14-MAR-13,01-FEB-13 etc... Question: Is this the source data or the target data ( what it's supposed to look like after being converted)?
    Let's start there:
    What is the source? Is it a DB column? Is it type date or VARCHAR2 or what?
    If VARCHAR2, then give us an example of the data that is failing.
    What is the format -- I assume there is one -- being used to convert the data?
    Are you doing a TO_CHAR or a TO_DATE?
    Give us lots of detail, please. Then it should be easy to solve.
    Regards,
    Howard

  • Clearing Document Date do not follow the define clearing date in F-03.

    Hi,
    Clearing Document Date do not follow the define clearing date  BKPF-BUDAT in F-03.
    My user received the unpresented check statement from the bank on 31 Dec 2010. As 1 Jan 2011 is holiday and he came back to the office on 5 jan 2011. He post manual upload (Debit : Bank Outgoing and Credit : Unpresented Cheque) posting date 31.12.2010 (period 12/2010 and 01/2011 still open) . Hence the next step (same date on 5 Jan 2011) is to clear the Bank outgoing using F-03. He put 31.12.2010 as his Clearing date BKPF-BUDAT but when the system post the clearing date is 04/01/2011.
    Please help

    Hello,
    Hope it helps.
    But i can recall for the EBS bank statement upload into a previous fiscal year, ie, 31.12.2010.  I had to close the current fiscal year temporarily.
    See what happens in your system when it tries to clear with F-03.  Though as mentioned re-check as F-03 will default to the system date --- today.
    Regards
    Waza

  • "Date formatting not supported yet"??

    When I add imports to get around the problem described in my previous
    email, I run into an exception that says "Date formatting not supported
    yet". The exception is thrown in util/HtmlUtil.java. What's the
    intention here? Why don't we just return the value unformatted? How
    should I handle this so I can take advantage of the formatting if it is
    supported someday? Are there any other formatting types which I need
    to "handle" in order to run?

    Dan--
    When I add imports to get around the problem described in my previous
    email, I run into an exception that says "Date formatting not supported
    yet". The exception is thrown in util/HtmlUtil.java. What's the
    intention here? Why don't we just return the value unformatted? How
    should I handle this so I can take advantage of the formatting if it is
    supported someday? Are there any other formatting types which I need
    to "handle" in order to run?The exception lets you know that there is a specific issue you need to work
    around during migration. The reason we don't just return the unformatted
    value is that we didn't want to give the impression that date formatting
    worked when it doesn't (yet).
    If you just want the value to come through without an attempt at formatting,
    the correct thing to do is to change your JSP tags to eliminate the date
    formatting attributes. If this is a loss of data (the format masks), then
    you should just comment them out rather than delete them.
    The whole issue of date formatting is unfortunately complex. Suffice to say
    that it is far easier for the developer to format the date as they wish in
    their code then it is for us to try and provide generic date formatting.
    The issue revolves around having all the necessary information in order to
    do the formatting in a generic way.
    Todd

  • Date format not working in XML Publisher

    Hi,
    We have applied a date format while formatting the report layout using the Template.
    The same is not getting reflected.
    The output is as follows : 5/1/2006 0:0:0
    i.e date with time stamp.
    We require DD-Mon-RRRR format.
    The same has been tried using the Text Form Field Options.
    When applying the same for Number it works . But in case of Date it does not.
    Can anybody who has worked on the same, let us know the appropriate way to do the same.
    Thanks,
    Angelica.

    XMLP does not recognized the field as date. The only format recognized as date is
    YYYY-MM-DDThh:mm:ss+HH:MM
    So, either make the data model to return dates in the above format, and then apply date formatting in XMLP, or do the job on the data model side and return the string in the desired final format (which, again, then will be string, not date for the XMLP)

  • Date format not imported

    Hi,
    I'm trying to import a date dimension from a SQL table. The problem is that the when importing directly into Power Pivot, the date format from the date base turns into a text format and the sorting is not the same as in the data base.
    Using Power Query instead, everything looks ok in the Power Query window and the data type and sorting is correct, and when loading the data to Power Pivot or an Excel table the format seems to be correct, but not the sorting, even when I
    set the sorting in Power Query. Why is that? Shouldn't the sorting be the same when the data is loaded? And why is the format not correctly imported to Power Pivot when not using Power Query? 
    I have windows 7 with Swedish as locale and office 2013 professional plus and I have the latest version of Power Query installed.
    Brgds,
    Caj
    Csten

    Yes, I tried to set the data type to date in Power Pivot and that works, was just surprised that Power Pivot don't import the format and sort order from the date base. Would be a nice feature.
    Curt, I assume this is what you mean?
    let
        Source = Sql.Databases("XXXXXX"),
        SLAMJunc = Source{[Name="XXXXX"]}[Data],
        dbo_DimDate = XXXXXX{[Schema="dbo",Item="DimDate"]}[Data],
        SortedRows = Table.Sort(dbo_DimDate,{{"Date", Order.Ascending}})
    in
        SortedRows
    Also, the data type is set to Date in Power Query but when I load the data into Power Pivot it is shown as Date/Time. Non of this is a big thing and it is easy to handle, just slightly annoying when I didn't get the result I was expecting.  
    //Caj
    Csten

  • Date Formatting Not Updating

    Hello,
    Has anyone else run into the issue of updating a field's format to MM/DD/YYYY.  The information is populated from our ATS system which pulls information from the user/onboarding process.  The PDF field's date format is set to MM/DD/YYYY but only shows as M/DD/YY.  For example, instead of 07/30/2014 it shows as 7/30/14 which is incorrect.  The information from the ATS is populating with the full date that we want, it's just that the PDF doesn't want to display in the same format. 
    Thanks everyone!

    The format script should get triggered when the page that contains the field is shown in Acrobat/Reader. If it's not doing that, it would be helpful to see an example. Can you post one somewhere?

  • Dates does not follow import from iPhoto

    Hi!
    I wanted to learn Aperture 3 so I imported my iPhoto library with a couple of Events and stuff, but when I got going I noticed that tha date of every picture I imported was set to 2001-01-01 01:00:00. But when I import them from Photo Stream the dates are right.
    Why did this happen, and is there any way to fix it? It took a long time to import the library, so I don't wan't to try that as a first option...
    Thanks!

    I also observed this problem on some images imported from iPhoto. In all cases the the date has already been wrong in iPhoto after upgrading the iPhoto library to version 9.3.2. And when importing to Aperture the wrong date was transferred.
    The problem (with the images I inspected) was, that the edited versions show the wrong capture date, not the original (master) image files. The originals have the correct capture date in the EXIF information.
    In my Aperture library I recovered the date by collecting all images with the wrong date in a smart album, selectig them and using the "Photos > New version from Original" command.
    The new versions all had the correct date.
    BTW: For my images the date was not 2001, but 1901 - more than a hundred years off I only saw this in Aperture in the "Date created" Exif tag, not in the "Date" tag. iPhoto is showing the full year 1901.
    Regards
    Léonie

  • Problem with input data format - not "only" XML

    Hi Experts,
    I have problem with input data format.
    I get some data from JMS ( MQSeries) , but input format is not clear XML. 
    This is some like flat file with content of XMLu2026.
    Example:
    0000084202008-11-0511:37<?xml version="1.0" encoding="UTF-8"?>
    <Document xmlns="urn:xsd:test.01" xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance Sndr="0001" Rcvr="SP">
    ...content....
    </Document>000016750
    Problems in this file is :
    1. data before parser <? xml version="1.0"> -> 0000084202008-11-0511:37 
    2. data after last parser </Document> -> 000016750
    This data destroy XML format.
    Unfortunately XI is not one receiver of this files and we canu2019t change this file format in queue MQSeries ( before go to XI) .
    My goal is to get XML from this file:
    <?xml version="1.0" encoding="UTF-8"?>
    <Document xmlns="urn:xsd:test.01" xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance Sndr="0001" Rcvr="SP">
    ...content....
    </Document>
    My questions:
    1. Is any way or technique to delete this data 0000084202008-11-0511:37  in XI from this file ?
    2. Is any way to get only XML from this file ?
    Thanx .
    Regards,
    Seo

    Hi Buddy
    What is the XI adapter using?
    If you use inbound File adapter content conversion you could replace these values with none and then pass it to the scenario.
    Does that help?
    Regards
    cK

  • System Wide Data Formats Not copied from Development to test

    I am using OBIEE 10g. When I copy my dashboards and reports via the Catalog Manager from the development environment to the test environment the system wide data formats are not being copied over. That is, all the ones that I saved under "Column Properties->Column Format->Save As System Wide Default" are not being copied over. I am using archive and unarchive in the Catalog Manager to move from development to test environment. So my question is where are these system-wide defaults stored and what do I need to do get them copied over?
    Thanks in advance!

    Hi
    the system wide column formats are stored in catalog under system/metadata folder.
    copy this folder from dev env to test env. via catalog manager, restart ps.
    assign points if found helpful.

  • Mail not following rules set by outlook

    Hello everyone,
    I cannot figure this one out.  I have rules set up in outlook to sort mail into folders, but ios mail will not follow them.  The folder shows up in ios mail, but all the emails still go to inbox while the folder remains empty.  I am running ios7.1
    Also, is there a way to turn off notifications for this folder only?  I would not like to be alerted when mail arrives in this folder, but still alerted for mail arriving at my inbox.
    Thanks

    After reading that thread over a few more times and doing some more research, what I found is that what I am asking to do is impossible.  IOS mail cannot follow rules made by exchange that are client side only.  Sorting mail by keywords in the subject line is a rule that can only be applied on the client side and not the server side.

  • How to get an international English date format if I'm in a country where the date format is something else?

    I'm physically in Malaysia and my iPad sets Malay as my default time format setting. How to get rid of the whole thing of using Malay as my date format and use English as default for everything including date and time ? Under setting> general > international, I have to choose something and English is not an option.

    You need to choose an English-speaking country - I have Settings > General > International > Region Format set to United Kingdom (as I'm in the UK), so the first day of the week is monday and times are of the format 01:23 etc (there also options for US, Canada, Australia etc)

Maybe you are looking for

  • Issues in creating the sales order with oe_order_pub.process_order api

    Hi All, I am trying to create a sales order with BOOKED status using oe_order_pub.process_order api, and I am getting response as <X_RETURN_STATUS>E</X_RETURN_STATUS>           <X_MSG_COUNT>1</X_MSG_COUNT>           <X_MSG_DATA>ONTOE_LOCK_ROW_DELETED

  • Burning DVD's

    Why can't iTunes burn dvd's? I have a dvd burner on my computer, which is new, and I would really much appreciate it if it could. Seeing is how I'm Canadian, I'll have to wait until late 2008 until movies, tvs shows, etc are available on the Canadian

  • Post a invoice

    Hi every body, I post a invoice in AP. I want to input name item, quantity for each G/L line item but on the screen without the fields Please tell me how to configure or select variant to input data Thank in advance Minhtb

  • SimpleDeserializer encountered a child element, which is NOT expected,

    Hi All, I created a webservice using JAVA. Got WSDL for a SAP Funtional Module(BAPI_MATERIAL_SAVEDATA) and created Java Classes using (WSDL2Java -t XXX.wsdl ). Wrote a Java Client Prog to invoke the services. While Invoking the service from a Java Cl

  • I upgraded to 4.0 and my refresh button is gone.

    I am pretty much computer illiterate so I need very detailed instructions on how to get it back. Thanks!