How To solve this date issue

Hello frenz,
I have date in xml file as 2010-11-20T00:00:00.000+04:00
but when I give this in the template as <?format-date:TRUNC_STH.TRAN_DATETIME_;'dd-MON-yyyy'?>)
I get this date as 10-NOV-2010 but not 11-NOV-2010
what's wrong pls tell me... has it got anything to do with the GMT

Do have a look at the blog http://blogs.oracle.com/xmlpublisher/2009/06/how_to_keep_your_dates_from_go.html

Similar Messages

  • How to solve this Data Configuration issue with error message ORA: 01017

    Bad public user name or password. ORA-01017: invalid username/password; logon denied
    How to solve this?

    I'm using JCreator jdk1.5.0_7.But i don't know how
    to use command prompt. When i execute my program, the
    command prompt showed
    Exception in thread "main"
    java.lang.NoClassDefFoundError: StringManipulation
    Press any key to continue...So you managed to compile your code since now you are running it. This error means that the class StringManipulation was not found. Usually an indicator that your classpath is incorrect.
    What did you do to generate this error? That is, how did you execute your program?
    [edit] if you did not compile your code then there is no class file StringManipulation.class and this error will appear.

  • How to solve this snmpwalk issue?

    how to solve this error:
    this is my code for snmpwalk :
    package snmp;
    import java.io.IOException;
    import org.snmp4j.CommunityTarget;
    import org.snmp4j.PDU;
    import org.snmp4j.Snmp;
    import org.snmp4j.TransportMapping;
    import org.snmp4j.mp.SnmpConstants;
    import org.snmp4j.smi.Address;
    import org.snmp4j.smi.Integer32;
    import org.snmp4j.smi.Null;
    import org.snmp4j.smi.OID;
    import org.snmp4j.smi.OctetString;
    import org.snmp4j.smi.UdpAddress;
    import org.snmp4j.smi.VariableBinding;
    import org.snmp4j.transport.DefaultUdpTransportMapping;
    public class SNMPWalk
    // Command line format:
    // java SNMPWalk targetAddress targetOID
    // EX:
    // java SNMPWalk 192.168.76.15/161 1.3.6.1.4.1.517
    public static void main(String[] args)
    Address targetAddress = new UdpAddress("localhost/161");
    OID targetOID = new OID("1.3.6.1.2.1.1.1.0");
    // OID targetOID = new OID("1.3.6.1.4.1.517");
    PDU requestPDU = new PDU();
    requestPDU.add(new VariableBinding(targetOID));
    //requestPDU.setType(PDU.GETNEXT);
    requestPDU.setType(PDU.GETNEXT);
    CommunityTarget target = new CommunityTarget();
    target.setCommunity(new OctetString("demopublic"));
    target.setAddress(targetAddress);
    target.setVersion(SnmpConstants.version2c);
    try
    TransportMapping transport = new DefaultUdpTransportMapping();
    Snmp snmp = new Snmp(transport);
    transport.listen();
    boolean finished = false;
    while (!finished)
    VariableBinding vb = null;
    //line 57 PDU responsePDU = snmp.sendPDU(requestPDU, target);
    if (responsePDU != null)
    vb = responsePDU.get(0);
    if (responsePDU == null)
    System.out.println("responsePDU == null");
    finished = true;
    else if (responsePDU.getErrorStatus() != 0)
    System.out.println("responsePDU.getErrorStatus() != 0");
    System.out.println(responsePDU.getErrorStatusText());
    finished = true;
    else if (vb.getOid() == null)
    System.out.println("vb.getOid() == null");
    finished = true;
    else if (vb.getOid().size() < targetOID.size())
    System.out.println("vb.getOid().size() < targetOID.size()");
    finished = true;
    else if (targetOID.leftMostCompare(targetOID.size(),
    vb.getOid()) != 0)
    System.out.println("targetOID.leftMostCompare() != 0)");
    finished = true;
    else if (Null.isExceptionSyntax(vb.getVariable().getSyntax()))
    System.out.println(
    "Null.isExceptionSyntax(vb.getVariable().getSyntax())");
    finished = true;
    else if (vb.getOid().compareTo(targetOID) <= 0)
    System.out.println("Variable received is not "+
    "lexicographic successor of requested "+
    "one:");
    System.out.println(vb.toString() + " <= "+targetOID);
    finished = true;
    else
    // Dump response.
    System.out.println(vb.toString());
    // Set up the variable binding for the next entry.
    requestPDU.setRequestID(new Integer32(0));
    requestPDU.set(0, vb);
    snmp.close();
    catch (IOException e)
    System.out.println("IOException: "+e);
    line no. 57 as i have indicated.
    the error say: the method sendPDU is undefined for the type snmp
    i have included snmp4j.jar file.
    or atleast can i get snmpwalk example for java to test on eclipse

    This is a clear case of... (*puts on sunglasses*)
    http://www.snmp4j.org/
    RTFM!

  • How to solve this deployment issue?

    I tried to deploy the sample jspdemo project under OC4J standalone installation by running :
    java -jar admin.jar ormi://localhost:23791 oc4jadmin pwd -deploy -file dist\ojspdemos.ear -deploymentName ojspdemos
    But get the below error:
    java.rmi.RemoteException: deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException: Application: ojspdemos is in failed state as initialization failed
    at com.evermind.server.administration.DefaultApplicationServerAdministrator.internalDeploy(DefaultApplicationServerAdministrator.java:448)
    at com.evermind.server.administration.DefaultApplicationServerAdministrator.deploy(DefaultApplicationServerAdministrator.java:347)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Unknown Source)
    Caused by: oracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException: Application: ojspdemos is in failed state as initialization failed
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
    at com.evermind.server.administration.DefaultApplicationServerAdministrator.internalDeploy(DefaultApplicationServerAdministrator.java:446)
    ... 8 more
    Caused by: java.lang.InstantiationException: Application: ojspdemos is in failed state as initialization failed
    at com.evermind.server.Application.setConfig(Application.java:471)
    at com.evermind.server.Application.setConfig(Application.java:314)
    at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1853)
    at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:512)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:196)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    ... 9 more
    Caused by: java.lang.InstantiationException: Error initializing ejb-modules: Error generating wrappers for file:/E:/Java_Dev/oc4j_extended_101310/j2ee/home/applications/ojspdemos/o
    jspdemos-ejb.jar:
    javac.exe not found under C:\Program Files\Java\jre1.5.0_10, please use a valid jdk or specify the location of your java compiler in server.xml using the <java-co
    mpiler .../> tag
    at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:1064)
    at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:217)
    at com.evermind.server.Application.setConfig(Application.java:413)
    How come it says "javac.exe not found". Actually I have set all env variables correctly. Can sb help me out of this. Really appreciate...

    fireetl,
    Here is your problem:
    javac.exe not found under C:\Program Files\Java\jre1.5.0_10You need to install the JDK, not the JRE, because OC4J requires a java compiler,
    which is included in the JDK only -- and not in the JRE.
    Good Luck,
    Avi.

  • How to solve this major issue.

    Hello John,
    I am loading members for a particular dimension from an oracle
    view(say view1) to an oracle table(say table1).Here I have used
    an ORDER BY to load in a particular order always. I have created
    a view(say view2)from this table1.The reason to create the view2 is to use the logic
    ORDER BY ,CONNECT BY PRIOR to sort the stored/shared members.
    Now I am using this view2 to load members for a dimension in planning.
    On first execution, it executes without any error. But on executing it again, it throws
    many errors, most of which say Cannot load dimension member, error message is:
    com.hyperion.planning.HspRuntimeException: Move would result in base member being
    a sibling of a corresponding shared member
    This error occured previously as well.I mean before using an ORDER BY in my first interface,
    ie loading from view1 to table1.
    Kindly help me to resolve the problem.
    Regards
    Manoj.

    Did you try this?
    -I found this on a Mac site. Sometimes computers lose their mind. Don't ask me why or how it happens but it does. Sometimes you simply have to totally discharge the computer. One thing I have learned about the Blue and white and the Gray G4 Macs is that sometimes pushing the PMU is not enough. If your machine is dead, then try the following.
    * Unplug the unit.
    * Remove the battery
    * Push the PMU switch (count to 5 slow)
    * Push the start button on the front of the Mac (count to 5 slow)
    * Let the unit sit for 15-30 minutes
    * Replace the battery
    * Plug it back in, and push the start button
    If it doesn't work I usually repeat the steps above, pull the RAM, and let it sit longer. If it doesn't work after this, it is take it to the shop time.
    Cheers!
    DALE

  • Does anybody know how to solve this exporting issue?

    I am trying to export my video and this message keeps coming up and failing my export. I have never had a problem before and have been using Premiere for over 6 years now and have never seen this before. I have changed settings here and there, but regardless what I try to export into I get the same error message. Tried opening a new sequence and copying over my project to then export by still nothing.
    On a few instances it did export some of my video, but only about half of it, even though it was set to export the entire video.
    I can't find a solution to this issue. I have enough disk space, so that isn't the issue.
    Please can someone help?

    Error Compiling Movie... some past discussions and ideas
    -http://helpx.adobe.com/premiere-pro/kb/error-compiling-movie-rendering-or.html
    -http://helpx.adobe.com/premiere-elements/kb/error-error-compiling-movie-render.html
    -and nested sequences http://forums.adobe.com/thread/955172

  • How to solve the date issue with BIP report

    Even the below query also giving "invalid Number error"
    select * from scott.emp
    where hiredate between TO_DATE('01-01'||TO_CHAR(:p_end_date,'YYYY'),'MM-DD-YYYY')
    AND TO_DATE(to_char(:p_end_date,'MM-DD-YYYY'),'MM-DD-YYYY')
    Regards
    boo

    Use:
    BETWEEN TO_DATE(NVL(:p_varchar_FromDate, '01/01/1900'), 'MM/DD/YYYY')
    AND TO_DATE(NVL(:p_varchar_ToDate, '12/31/5000'), 'MM/DD/YYYY')
    Regards,
    Amit

  • How to solve this problem "ORA-01466: Unable to read data -- Table definiti

    Hi,
    I had deleted the entry and i want back now and in between i done the following
    alter table pv_head enable constraint FK_PV_HED__CRF_HEDwhen i try in the following one
    SELECT * FROM PV_HEAD AS OF TIMESTAMP TO_DATE('28-FEB-2011 9:45:00','DD-MON-YYYY HH24:MI:SS')
    WHERE PV_NO IN (703705,703704) the error i am receiving           
    ORA-01466: Unable to read data -- Table definition has changed how to solve this issue.
    please guide me.
    Kanish

    You can not perform DDL and then perform a flashback query to before the DDL.
    One might wonder why you chose this particular time to perform an ALTER TABLE but you did. It is what it is.

  • Transaction failed for unknown reason (100) Unable to complete backup at this time. Does anyone know how to solve this issue?

    Transaction failed for unknown reason (100) Unable to complete backup at this time. Does anyone know how to solve this issue?
    Thanks.

    The system is set up to backup files to the iCloud at the end of the day. This has ot happen for sometime now and the mesaage I get is the back up error.

  • Hi, my Ipod Schuffle (4 gen) dissapears from windows vista right after I execute Itunes, I've change the drive letter, erase temps in App data file, verified USB drivers, etc... Can someone guide on how to solve this?

    Hi, my Ipod Schuffle (4 gen) dissapears from windows vista right after I execute Itunes, I've change the drive letter, erase temps in App data file, verified USB drivers, etc... Can someone guide on how to solve this?

    If you want the shuffle to be always visible in Windows (outside of iTunes), you need to Enable disk use.
    Select the shuffle in the iTunes sidebar, under DEVICES.  Over to the right, select the Summary tab.  You should see a checkbox that says Enable disk use.  Check it and click Apply.
    NOTE:  If disk use is enabled, you have to Eject the shuffle in iTunes, BEFORE you physically disconnect it.  If disk use is NOT enabled, you can disconnect the shuffle at any time, as long as iTunes is not doing something with it at that moment (such as syncing); the shuffle's light will then be blinking (to indicate DO NOT DISCONNECT).
    So, unless you want to use the shuffle like a USB flash drive (carry random files on it), you may want to NOT Enable disk use.

  • How to solve this problem? '' can not activate cellular data network failure'' authenticating PDP  from already thank you

    how to solve this problem? '' can not activate cellular data network failure'' authenticating PDP  from already thank you

    What does this have to do with using an iPhone in an enterprise environment?
    What carrier are you using and where did you get the phone?

  • When starting a rental movie, I get the message: "An error occured loading this content, please try again later". Any ideas how to solve this issue?

    When starting a rental movie, I get the message: "An error occured loading this content, please try again later". Any ideas how to solve this issue?

    Firstly, I should have typed speedtest.net previously.
    Now that's an interesting comment you make, out of interest do you have any purchased HD movies in your iTunes collection, if so, do they play on the Apple TV with your new tv.

  • I have problem c connecting to cellular data network. There is massage "couldn't activate cellular data network, PDP authentication failure". What is it and how I solve this problem?

    I have problem c connecting to cellular data network. There is massage "couldn't activate cellular data network, PDP authentication failure". What is it and how I solve this problem?

    If you have a data only plan for the iPad with your carrier, if no change after powering your iPad off and on you will need to contact your carrier.

  • I'm not able to enrol in a iOS developer program as individual. My browser says too many redirects. I'm using the Safari Browser. Please let me know how to solve this issue.

    I'm not able to enrol in a iOS developer program as individual. My browser says too many redirects. I'm using the Safari Browser. Please let me know how to solve this issue.

    Further to my earlier post, I have just read an entry noting that if you already own a domain name, and ask your hosting service to forward and mask your iWeb '08 created, web.mac.com site to your personal domain, chances are that due to the masking of the site on web.mac.com, Safari browsers interpret the masking as being the end of the site, and as such, just return a blank page?
    This may explain the problem. However, call me old fashioned, and possibly a little naive, but surely this cannot be the problem?? It's OK in Firefox!

  • Can't watch video on CNN with IPAD after installation IOS 6 any tip to solve how to solve this issue.

    Can't watch video on CNN with IPAD after installation IOS 6 any tip to solve how to solve this issue.
    Thanks for your support in advance

    I have a few TV type Apps that are doing the same think since the  IOS6 update . I figure the problem is at there end and there will be an update from them soon.

Maybe you are looking for

  • How to Start Oracle Report in Unix?

    hi Does anyone know how to start oracle report in unix? I was told to try this (r60desm) but that did not work. We are on 11i and 6i. Please help alpha

  • Logo in Smartform output to pdf format is coming as Junk Character

    Hi All, I have a requirement to generate the Smartform output in PDF file. But when i am doing that i am getting the LOGO as Junk character in the PDF file. Can any one help me to resolve this issue?. Thanks, Muruganand.K

  • Mapping runtime Exception

    I have tested my mapping in IR, it is working good. Problem comes it is receving data from sender system. I have checked the sender side data type and Iam receving the data properly, once the data reaches XI, it could not map it to target structure.

  • Error in Mail configuration - parameters cannot be converted.

    Hello All, I have configured the mail configuration in 4.6d as per the notes 455127, 99965. but when i try to send the test mail i got the error Cannot process message in node, parameters cannot be converted ... Can any one please help me.... the tra

  • Why do the tools quit working in Lightroom 2?

    I have been dealing with this issue for a while - I start editing a batch of images, using the clone and dodge tool, and suddenly the "tool" turns into a magnifying glass instead of dodge or clone tool. The only way I can get it to work again is to e