Bogus/Impossible Errors? Part 1

Has anyone experienced seemingly impossible errors in CF8? I've been a CF developer for nine years now, recently started a new job where we use CF8. We use onError() in Application.cfc to catch and report errors via email. We're experiencing a number of situations where the error just seems bogus.
Here's the simplest example:
Code:
<cfif isdefined('s.business_id') AND s.business_id EQ 0>
Error:
Element BUSINESS_ID is undefined in S.
This particular bit of code executes probably 500,000 times a day. We get anywhere from 20-30 error emails per day and can never reproduce the error. It's quite annoying and totally baffling.
Things we've tried:
putting the isdefined() condition in its own <cfif>, and nesting the second condition within it
using structkeyexists() instead of isdefined()

[Been doing CF development same amount of time as you - started back with CF5 in 2000 as a matter of fact.]
No help for you except to say that I've experienced exactly the same errors when attempting to combine cfif IsDefined() AND/OR - sometimes with parentheses and sometimes the same only cfif NOT IsDefined().
It's exasperating - telling me that one of the elements doesn't exist, when it matter of factly does.
Unlike you, I've been able to solve it every time by just nesting the cfif IsDefined() statements instead of trying to put them all in one statement.  It's been so bad I've pretty much just started nesting them without even trying to put them all together.

Similar Messages

  • External SOAP-Call ends with general error "PART UNKNOWN (NULL)"

    Hi,
    we generated a consumer proxy using the following WSDL file:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:intf="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="https://soap.global-esign.com/xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)-->
       <wsdl:message name="CreatePdfSignatureRequest">
          <wsdl:part name="in0" type="xsd:string"/>
          <wsdl:part name="in1" type="xsd:string"/>
          <wsdl:part name="in2" type="xsd:base64Binary"/>
          <wsdl:part name="in3" type="xsd:string"/>
          <wsdl:part name="in4" type="xsd:boolean"/>
          <wsdl:part name="in5" type="xsd:string"/>
          <wsdl:part name="in6" type="xsd:string"/>
       </wsdl:message>
       <wsdl:message name="CreatePdfSignatureResponse">
          <wsdl:part name="CreatePdfSignatureReturn" type="xsd:base64Binary"/>
       </wsdl:message>
       <wsdl:portType name="GlobalEsignSoapExt">
          <wsdl:operation name="CreatePdfSignature" parameterOrder="in0 in1 in2 in3 in4 in5 in6">
             <wsdl:input message="impl:CreatePdfSignatureRequest" name="CreatePdfSignatureRequest"/>
             <wsdl:output message="impl:CreatePdfSignatureResponse" name="CreatePdfSignatureResponse"/>
          </wsdl:operation>
       </wsdl:portType>
       <wsdl:binding name="GlobalEsignSoapExtSoapBinding" type="impl:GlobalEsignSoapExt">
          <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
          <wsdl:operation name="CreatePdfSignature">
             <wsdlsoap:operation soapAction=""/>
             <wsdl:input name="CreatePdfSignatureRequest">
                <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://GlobalEsign.tsi.de" use="encoded"/>
             </wsdl:input>
             <wsdl:output name="CreatePdfSignatureResponse">
                <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" use="encoded"/>
             </wsdl:output>
          </wsdl:operation>
       </wsdl:binding>
       <wsdl:service name="GlobalEsignSoapExtService">
          <wsdl:port binding="impl:GlobalEsignSoapExtSoapBinding" name="GlobalEsignSoapExt">
             <wsdlsoap:address location="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt"/>
          </wsdl:port>
       </wsdl:service>
    </wsdl:definitions>
    The coding of the test program is:
    *& Report  Z_SOAP_PDF_SIGNATUR
    REPORT  z_soap_pdf_signatur.
    *------ Type pools
    type-pools: sai.
    *------ Class definitions and references
    DATA: lo_zpdf_sign    TYPE REF TO zpdfco_global_esign_soap_ext,
          lo_system_fault TYPE REF TO cx_ai_system_fault,
          lo_appl_fault   type ref to cx_ai_application_fault.
    *------ data
    DATA: output TYPE zpdfcreate_pdf_signature_respo,
          input TYPE  zpdfcreate_pdf_signature.
    DATA: wa_controller TYPE prxctrl.
    DATA:  pdfout(255) TYPE c  VALUE
    'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005.pdf',
           pdfsign(255) TYPE c  VALUE
    'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005-sign.pdf',
            wa_objcont TYPE soli,
            objcont LIKE soli  OCCURS 0.
    DATA: xlines TYPE string,
          buffer TYPE  xstring,
          x_msg  TYPE c LENGTH 100.
    TRY.
        CREATE OBJECT lo_zpdf_sign
          EXPORTING
            logical_port_name = 't_systems'.
      CATCH cx_ai_system_fault .
    ENDTRY.
    * read unsigned pdf
    OPEN DATASET pdfout FOR INPUT MESSAGE x_msg
                        IN BINARY MODE.
    TRY.
        READ DATASET pdfout INTO xlines.
      CATCH cx_sy_file_open_mode.
        EXIT.
    ENDTRY.
    CLOSE DATASET pdfout.
    * convert string
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
      EXPORTING
        text           = xlines
    *   MIMETYPE       = ' '
    *    encoding       = 'UTF-8'
    IMPORTING
        buffer         = buffer
      EXCEPTIONS
        failed         = 1
        OTHERS         = 2  .
    TRY.
        input-in0 = 'user'.
        input-in1 = 'password'.
        input-in2 =  buffer.
        input-in3 = 'affilinet'.
        CALL METHOD lo_zpdf_sign->create_pdf_signature
          EXPORTING
            input  = input
          IMPORTING
            output = output.
      CATCH cx_ai_system_fault INTO lo_system_fault.
        DATA: lv_message TYPE string.
        DATA: lv_message_long TYPE string.
        CALL METHOD lo_system_fault->if_message~get_text
          RECEIVING
            result = lv_message.
        CALL METHOD lo_system_fault->if_message~get_longtext
          RECEIVING
            result = lv_message_long.
        WRITE lv_message.
        WRITE lv_message_long.
      CATCH cx_ai_application_fault into lo_appl_fault.
        DATA: lv_messaap TYPE string.
        DATA: lv_messaap_long TYPE string.
        CALL METHOD lo_appl_fault->if_message~get_text
          RECEIVING
            result = lv_messaap.
        CALL METHOD lo_appl_fault->if_message~get_longtext
          RECEIVING
            result = lv_messaap_long.
        WRITE lv_messaap.
        WRITE lv_messaap_long.
    ENDTRY.
    LOOP AT output-controller INTO wa_controller.
      WRITE:/ wa_controller-field.
      WRITE:/ wa_controller-value.
    ENDLOOP.
    * store signed pdf
    OPEN DATASET pdfsign FOR output MESSAGE x_msg
                        IN BINARY MODE.
    transfer output-CREATE_PDF_SIGNATURE_RETURN
             to pdfsign.
    Processing the soap call in the test programm ends in a system exception (cx_ai_system_fault)  with the message:
    "General Error Es ist ein Fehler bei der Proxy-Verarbeitung aufgetreten (  PART UNKNOWN (NULL)    )"
    It seems as if there is no response or a response in a wrong format given by the webservice.
    We had a look at the ICF-Trace.
    The request seems to be a proper soap-call.
    But the response is not in XML-format and therefore could not be completely displayed.
    it says:
    Ungültig auf der obersten Ebene im Dokument. Fehler beim Bearbeiten der Ressource 'file:///C:/Dokumente und Einstellungen/S...
    HTTP/1.1 200 OK
    ^
    Could anybody help ?
    Kind regards
    Heinz

    Hello Mathias,
    in our case the problem was, that the WDSL used parameters, which were not correcty interpreted by the SAP-Routine that creates the proxy.
    We changed the WDSL using only paramters covert by SAP.
    Here ist the WSDL that worked fine:
    <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:tsi="http://GlobalEsign.tsi.de">
    - <wsdl:documentation>
    <sidl:sidl xmlns:sidl="http://www.sap.com/2007/03/sidl" />
    </wsdl:documentation>
    - <wsdl:types>
    - <xsd:schema elementFormDefault="qualified" targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt">
    - <xsd:complexType name="CreatePdfSignature">
    - <xsd:sequence>
    <xsd:element name="in0" type="xsd:string" />
    <xsd:element name="in1" type="xsd:string" />
    <xsd:element name="in2" type="xsd:base64Binary" />
    <xsd:element name="in3" type="xsd:string" />
    <xsd:element name="in4" type="xsd:boolean" />
    <xsd:element name="in5" type="xsd:string" />
    <xsd:element name="in6" type="xsd:string" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    - <xsd:schema targetNamespace="http://GlobalEsign.tsi.de" xmlns="http://GlobalEsign.tsi.de">
    <xsd:import namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" />
    <xsd:element name="CreatePdfSignature" type="tns:CreatePdfSignature" />
    - <xsd:element name="CreatePdfSignatureResponse">
    - <xsd:complexType>
    - <xsd:sequence>
    <xsd:element name="CreatePdfSignatureReturn" type="xsd:base64Binary" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </wsdl:types>
    - <wsdl:message name="CreatePdfSignature">
    <wsdl:part name="CreatePdfSignature" element="tsi:CreatePdfSignature" />
    </wsdl:message>
    - <wsdl:message name="CreatePdfSignatureResponse">
    <wsdl:part name="CreatePdfSignatureResponse" element="tsi:CreatePdfSignatureResponse" />
    </wsdl:message>
    - <wsdl:portType name="GlobalEsignSoapExt">
    - <wsdl:operation name="CreatePdfSignature">
    <wsdl:input message="tns:CreatePdfSignature" />
    <wsdl:output message="tns:CreatePdfSignatureResponse" />
    </wsdl:operation>
    </wsdl:portType>
    </wsdl:definitions>
    <wsdl:part name="in1" type="xsd:string"/>   was changed to <xsd:element name="in0" type="xsd:string" /> .
    Please let me know, whether you succeeded.
    Kind regards
    Heinz Schäfe

  • Mission impossible errors when downloading from iTunes

    We've been trying to download the latest digital copy of Mission Impossible from iTunes and have had no luck.  It stops downloading and gives an error message (unknown error occurred (-50)) and have received (err - 8008).  We've checked for software updates, rebooted the system and tried again, but nothing.  Any help would be appreciated.

    Me too. But mine is odd in that I HAD the file - downloaded on the day it came out, and then watched.  But then it disappeared.  I've emailed Apple support and they've resent the file, but I get the same answer.  They tell me to try again, but itunes seems to think I've already downloaded it.
    I got the iTunes extras, but not the movie.
    Please let me know if there's any resolution! Thanks.

  • BAPI_SAG_CREATE error part profile ME366 in Scheduling Agreement

    Hi All,
    We are using BAPI_SAG_CREATE to create Scheduling agreement. In which we are getting an error ' #Following mandatory roles missing in partner maintenance: PI" i.e. error # ME 366.
    Details are as below -
    1) This error is related to Partner function and determination.
    2) We can have more than one Invoice presented Vendor i.e. PI attached to Vendor VN.
    3) If ONLY one Invoice presented Vendor i.e. PI attached to Vendor VN , then BAPI is working fine and new SA is getting created. We did not find any issue with it.
    4) If more than Invoice presented Vendor i.e. PI attached to Vendor VN, then BAPI is giving the said error.
    5) Seems there is an issue and BAPI is not able to get  / pass correct Invoice presented Vendor i.e. PI.
    We have checked, config is OK and everything works fine when only one Invoice presented Vendor i.e. PI attached to Vendor VN. So do not see any issue with config or any other setting.
    Request you to please let us know, if you had similar issue in past. Please let us know, if you know any OSS notes or any kind of solutions.
    Thanks and regards,
    Rajesh Raj

    Hi,
    I think this is related to master data and the configuration.  Check for Shipping data for the material
    Also check with your functional team.
    Please check the below links:
    Not possible to determine shipping data for material
    STO - Not possible to Determine Shipping Data for Material.
    Shiva

  • SMARTFORM ERROR - Part of Text is cutting down after SPACE

    Hi,
    I have made a simple smartform just for test purpose.
    I included a simple template in the main window which has 5 mm height and 3 cm width.
    In the template there is one text element, and 1 included a constant text:
    LABEL: YYYYYYYY
    If i see the print preview, it displaying correctly.
    BUT!
    If I change the constant text to longer, to test what happens if the field is longer than the available size to display:
    LABEL: YYYYYYYYYYYYYYY
    In the print preview this will be shown:
    LABEL:
    So it means that those Y's are just cutting down.
    If I replace the longer version of the text to:
    LABEL:_YYYYYYYYYYYYYYY
    In the print preview I can see as many characters as it can display, so some Y's are not printing:
    LABEL:_YYYYYYYY
    Can somebody tell me if I use spaces, how to avoid to cut the remaining text and display as many characters as it can like with underscore character?
    This is a very strange and buggy behaviour.
    BR,
    Gabor from Hungary

    Hi
    I suppose I depends on the logic used in order to print a text in an area smoller than text
    It seems it always tries to write fully the words, that means if the text has many words, the smartform writes the first words (on the left) fully and truncates the remaining words, if the text has one word only, smartform write the part of it can be contained.
    So if you insert
    A) LABEL: YYYYYYYY
    There are 2 words:
    LABEL:
    YYYYYYYY
    Both words can be contained so smartform writes both of them
    B) LABEL: YYYYYYYYYYYYYYYYYYYYYYY
    There are 2 words:
    LABEL:
    YYYYYYYYYYYYYYYYYYYYYYY
    The second word should be trucated, so the smartform writes the first only
    C) LABEL:YYYYYYYYYYYYYYYYYYYYYYY
    There is only one word, so smartform writes only the character can be contained in the window
    Max
    Edited by: max bianchi on Nov 10, 2010 6:21 PM
    Edited by: max bianchi on Nov 10, 2010 6:26 PM

  • Ipad syncing impossible - error -48

    I tried to sync my ipad since I own it and spent many hours doing so without any results and I really need help on this one. The problem is that when the iPad is plugged in and trying to sync, iTunes gives me an syncing error -48 followed by many other error messages like "Error while syncing, the file could not be found", etc. Here are the steps I already been through:
    -Reinstalling Itunes to latest version (3 times)
    -Restoring to factoy settings from the iPad
    -Restoring iPad firmware from iTunes
    -Delete the iPad firmware to force iTunes to download it and then perform restore
    -Restore as new iPad
    -Restore iPad from existing backup
    None of the above worked and the strangest thing about this error is that I do not receive the same error message from time to another. Sometime I can sync 2-3 individual applications, sometime not. Sometime after an error message iTunes see my iPad as a 4Gb model and after unplug its back to normal. I think the problem is on the computer side since a full restore does not change anything but please dont reply the easy way with a "Change your pc to a mac". The error is probably due to a file corruption. USB port? is this possible?
    Interresting fact is that I also own an iPod Touch and it also gives random sync errors. In these situations, I unplug it and then replug it and it work.
    There is an walkthrough on the internet for that kind of error applyed to iPods. The procedure is available on the internet by the link below but unfortunatly cannot be applyed to iPads since iPad do not appear under My Computer.
    http://www.chromewalker.com/cw_six/?p=148
    Your help will be greatly appreciated.
    Message was edited by: Toony06

    I wouldn't suggest that you swap your PC for a Mac, but I do suspect the problem is either in your Windows installation, or in the USB hardware.
    Is there a friend's or colleague's PC you could try? If it works there, you know the problem is with the PC, not the iPad.
    If t looks like the problem is on the PC:
    Are there other ports on your PC that you could use? Try a USB port that doesn't use any kind of hub. I don't know what model of PC you have, but generally ports on the front of the case, or on the monitor, come through a hub. If you can, try one round the back (if you have a laptop, this is irrlevant).
    Your Windows installation might have a porblem. I don't remember what Win7 has in the way of repair options, but that might help. If you frequently install and uninstall a wide range of sofwtare, it could cause this kind of problem.
    If the iPad won't work on another PC then the problem is there, and you should take for repair/replacement.

  • Application server error (Part 2) - Please Help!

    Hi there
    Yesterday I made this thread, [Click Here|Application server error - Please Help!;
    We installed a application server and it could not locate that host which was fixed by adding the app server name in the host file on the production box. We now have another issue.
    I we remove/disable the app server the messages still fail, cause it's looking for the app server host. I checked in ZR10 but nothing there is pointing to the app server.
    Is there some other parameter we can check to change the system not to point to the app server but the original production server?
    Thanks,
    Jan
    Edited by: Jan de Lange on Feb 11, 2010 9:49 AM

    Hi Jan
    Check the How to guide below. This documents the necessry configurations etc.
    How Tou2026Scale Up SAP Exchange Infrastructure 3.0
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c3d9d710-0d01-0010-7486-9a51ab92b927?quicklink=index&overridelayout=true
    Regards
    Mark

  • Bogus PreloadSwf error on launch

    I'm getting a PreloadSwf when launching my flash application in my browser.
    The error message is: PreloadSwf paths must be local trusted: [bogus_path]
    It's referencing a file that doesn't exist in a directory that doesn't exist.  I've seen some posts on the web about how to configure PreloadSwf via mm.cfg, but my mm.cfg doesn't reference any path (just sets log levels).
    How do I tell Flash Player to skip this preloadswf so I can launch my app?
    Thanks in advance!
    /HKR

    Thanks for the replies, guys.
    Unfortunately, I am not familiar with any of the tools you reference in your replies.  All my SWF work is done using Adobe's command line tools.  I use Jetbrain's Intellij as my IDE.
    The problem turned out to be a copy of Flash Firebug that wasn't active.  I've since disabled it in Firefox, and uninstalled it completely, and rebooted for good measure.  That fixed my problem.
    Thanks agian.

  • Cloning Error Part 12

    Hi ,
    EBS 11i
    RHEL 4.6
    I been unluckly today :( , I did a lot of cloning and re-cloning but I still hits weird errors.
    I clone our PROD instance to DEV instance to test some patch and fuctional data update proces
    I successfully cloned the intance and started all server processes with status “0”.
    When I login to the webpage , I got “ internal server error”.
    The following are the Apache logs
      $IAS_ORACLE_HOME/Apache/Apache/logs/error_log
    [Wed May 12 12:12:00 2010] [notice] FastCGI: process manager initialized (pid 28828)
    [Wed May 12 12:12:01 2010] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Wed May 12 12:12:15 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:28832, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:18 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30002, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:21 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30168, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:24 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30227, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:27 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30282, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:30 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30337, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:33 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30396, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:36 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30538, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:39 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30595, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:45 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:30843, group:XmlSvcsGrp) died, restarting.
    [Wed May 12 12:12:48 2010] [warn] OPM: EW: Process oracletrng.abc.local:19000 (pid:31144, group:XmlSvcsGrp) died, restarting.
    $IAS_ORACLE_HOME/Apache/Jserv/logs/jvm/XmlSvcsGrp.0.stderr
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection
            at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:678)
            at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4684)
            at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4507)
            at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
            ... 23 more
    Exception in thread "main" java.lang.ExceptionInInitializerError
            at org.apache.jserv.JServServletManager.load_init(JServServletManager.java:765)
            at org.apache.jserv.JServServletManager.loadServlet(JServServletManager.java:659)
            at org.apache.jserv.JServServletManager.loadStartupServlets(JServServletManager.java:789)
            at org.apache.jserv.JServServletManager.init(JServServletManager.java:447)
            at org.apache.jserv.JServ.start(JServ.java:625)
            at org.apache.jserv.JServ.main(JServ.java:234)
    Caused by: oracle.apps.fnd.cache.CacheException
            at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
            at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)
            at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
            at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
            at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
            at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
            at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1149)
            at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1010)
            at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:979)
            at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:946)
            at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:933)
            at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
            at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:932)
            at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:917)
            at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:882)
            at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:742)
            at oracle.apps.ecx.oxta.SystemProperties.<clinit>(SystemProperties.java:129)
            at oracle.apps.ecx.oxta.TransportAgentMain.init(TransportAgentMain.java:192)
            at org.apache.jserv.JServServletManager.load_init(JServServletManager.java:755)
            ... 5 more
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection
            at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:678)
            at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4684)
            at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4507)
            at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
            ... 23 more
    $IAS_ORACLE_HOME/Apache/Jserv/logs/mod_jserv.log
    [12/05/2010 12:12:42:894] (EMERGENCY) ajp12: auth did not receive challenge size
    [12/05/2010 12:12:42:894] (EMERGENCY) ajp12: function auth fail
    [12/05/2010 12:12:50:262] (ERROR) ajp12: Servlet Error: oracle.apps.fnd.cache.CacheException: null
    [12/05/2010 12:12:50:262] (ERROR) an error returned handling request via protocol "ajpv12"
    [12/05/2010 12:12:50:262] (ERROR) balance: 28923 internal servlet error in server oracletrng.abc.local:16000
    [12/05/2010 12:12:50:262] (ERROR) an error returned handling request via protocol "balance"
    [12/05/2010 12:13:21:765] (ERROR) ajp12: Servlet Error: oracle.apps.fnd.cache.CacheException: null
    [12/05/2010 12:13:21:765] (ERROR) an error returned handling request via protocol "ajpv12"
    [12/05/2010 12:13:21:765] (ERROR) balance: 28968 internal servlet error in server oracletrng.abc.local:16000
    [12/05/2010 12:13:21:765] (ERROR) an error returned handling request via protocol "balance"Please help....
    Thanks a lot
    Ms K

    Thanks hussein,
    Actually this what happened ( actual scenario)
    1. We had PROD instance (on PROD server)
    2. We clone it on the DEV instance (on DEV server), a separate server.
    3. We got issue, and need to apply PATCH-A
    4. We apply PATCH-A on DEV at in was successful.
    5. Then apply PATCH-A on PROD and in was successful.
    6. ....Note...that I did not run any preclone after the patch, because I am not aware that it must be done.
    7. We perform PROD backup daily at midnyt (cold backup)...so we have DAY 1 backup (after the patch)
    8. Day2 Backup....and so on.
    9. Now, here comes a time that we need the transaction for testing from Day1 backup.
    10. So I copied the Day1 Backup (apps and DB tiers) on DEV server and perform and run postclone.
    11. But the error I mentioned above appeared, my suspesion is that I did not run preclone after the patch.
    12. My question is...HOw can I run preclone to a backup? to its original state?
    Or how can I restore a backup of PROD to DEV server without running postclone?
    What I mean is just start it up on DEV to its original state like its source on PROD server?
    13. I can not restore it in PROD because the current prod is there.
    ****END****
    Thanks a lot

  • Bogus Disk Error With SL

    Updated yesterday, only problem of note is this error:
    "The disk you inserted is not readable by this computer" The error window has 'Ignore" and "Eject" radio buttons.
    This error happens immediately after log in, as either me or as a guest. If I click on either button the window goes away and everything appears to be fine until I restart/power on restart again.
    I also disconnected all external devices such as my external disk for Time Machine or a Zip Drive and a Iomega floppy disk drive. Still does it.

    When you launch - or the radio dialogue offers to initialize (it launches Disk Utility and doesn't do anything).
    Sounds like it is seeing a hidden volume or partition.
    When did you last REPAIR your drive? last reformat?
    There are hidden partitions that can only be created during a full format, and during that time, it checks integrity and for weak/bad blocks to map out.
    Sounds like there is an underlying error. This has nothing to do with disk permissions or ownership.
    Do you have more than one partition on your hard drive that you use?
    If it was me, I would install SL on one of your external devices, create a 25GB partition from your TimeMachine or other drive with free space, and use that for disk maintenance and repairs - and use a good 3rd party tool (Disk Warrior is popular but may not work with SL) so use Apple First Aid while booted from there and inspect and repair. For now, from SL DVD boot and go to Utility => Disk Utilty and REPAIR HARD DRIVE.

  • PP 7.2.0 Last video Frame Error - partly disappears

    Hi Since the 7.1.0 update I've been suffereing from an error on the last video frame.
    The right side of the frame goes to black with a gray band between it and the video.
    This also exports and happens on all projects and all sequences.
    Any ideas?
    David

    Thanks Mark,
    How do I stop this from being exported. I've just found the notes for 7.1 and it says it's always on - I guess this means there's no off switch?

  • "part of this item already downloaded" error when attempting to purchase movie bundle

    I rented "The Fast and the Furious" through AppleTV. (https://itunes.apple.com/us/movie/the-fast-and-the-furious/id279653553)
    I then saw there was a Fast and Furious 6 movie Bundle I could BUY (https://itunes.apple.com/us/movie-collection/fast-furious-6-pack-extended/id7502 60885)
    I attempted to buy the 6 pack bundle (as I had only RENTED the first movie).
    I received an error, "Part of this item is already downloaded" and it wouldn't let me make the purchase.
    I've tried restarting, and then totally resetting the AppleTV, but the error still comes up.

    I really think problem has something to do with the Starbucks Pick Of The Week redeem code and Itunes does not know how to handle it so it will not let me download the album.  Maybe a Bug in the code.
    I was trying to download the album "Hurry Up We're Dreaming" by M83. After a couple of days of not being able to download it from iTunes I bought it from Amazon.  With how loyal I am to Apple it was hard to buy it somewhere else but I had to.  This album is a musical journey from start to finnish - you have to play the song in order or it's not the same.

  • Trying to mark a grub GPT partition with parted give me error

    i try to mark mygrub partition to boot my system and when i reach the line in grub archwiki
    parted /dev/disk set X bios_grub on
    i get an error :
    Parted: Invalid token: bios_grub
    Last edited by Ferdinand866 (2013-05-27 22:43:35)

    Have you already made the parition?  I know next to nothing about using parted, I am a gptfdisk user myself (gdisk), but I do know that if that is the exact command you used, you are not actually specifying anything with /dev/disk.  There is a /dev/disk directory, but it leads to a bunch of symlinks for various alternative names for /dev/sda, /dev/sdb, etc.  I think what it is asking for is to actually specify the partition where the small grub partition is located.  So if you put it at the beginning of the first disk it would be /dev/sda1. 
    Alternatively, you could just use gdisk.  I think gdisk is much much more user friendly, and has a much saner approach to partition type codes.  Use the interactive functionality with "gdisk /dev/sda" (assuming you want to modify sda), then enter a "?" to get a list of available options.  I think it is a "t" that allows you to change the partition's type code.  Select the partition you want to modify, and then change the code to ef02.

  • Error in " Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-11 2002/10/31"

    I'm getting the following error while I compiled my source. The funny thing was, without the new patch (111685-16) it compiled fine but once I install the new patch I got the following errors. Please somebody help me to identify the problem.
    Compile options:
    CC -c -g -w -mt -I/h -I. -I/opt/SUNWconn/osinet/include
    -DSolaris -D_Solaris_28 -DSYS5 -DD_Solaris_28 -D_REENTRANT -DD_PTHREAD -D_POS
    IX_C_SOURCE=199506L -D__EXTENSIONS__ -DAPLI test.C
    Errors:
    "/D_stdextex.h", line 39: Error: Function std
    extensions::impossibleerror::~impossible_error() can throw only the exceptions
    thrown by the function std::domain_error::~domain_error() it overrides.
    "/D_stdextex.h", line 58: Error: Function std
    extensions::featurenot_supported::~feature_not_supported() can throw only the
    exceptions thrown by the function std::domain_error::~domain_error() it override
    s.
    "/D_stdextex.h", line 77: Error: Function std
    extensions::resourcelimit::~resource_limit() can throw only the exceptions thr
    own by the function std::runtime_error::~runtime_error() it overrides.
    "/D_stdextex.h", line 96: Error: Function std
    extensions::configurationerror::~configuration_error() can throw only the exce
    ptions thrown by the function std::runtime_error::~runtime_error() it overrides.
    "/D_asn1ex.h", line 48: Error: Function ASN1:
    :ConstraintError::~ConstraintError() can throw only the exceptions thrown by the
    function std::runtime_error::~runtime_error() it overrides.
    "/D_asn1ex.h", line 100: Error: Function ASN1
    ::DecodeError::~DecodeError() can throw only the exceptions thrown by the functi
    on std::runtime_error::~runtime_error() it overrides.
    "/D_asn1ex.h", line 125: Error: Function ASN1
    ::ElementMissing::~ElementMissing() can throw only the exceptions thrown by the
    function std::runtime_error::~runtime_error() it overrides.
    Test.C
    #include <ASN1>
    main()
    cout << "The compilation is OK";
    Note: This ASN1 file has inclued D_stdextex.h, D_asn1ex.h files, etc
    D_stdextex.h: (part of as follows)
    * ==============================================================
    * std_extensions::impossible_error
    * ==============================================================
    class impossible_error : public NSSTD_ domain_error
    public:
    impossible_error(void)
    : NSSTD_ domain_error("impossible error")
    impossible_error(const NSSTD_ string& what)
    : NSSTD_ domain_error(what)
    virtual ~impossible_error(void) D_EX_THROWSPEC_NULL {} // error comes out from this line //
    Your help will be very much appriciated.
    Thanks.....Murad

    Seems this is posted twice under different topic. As I mentioned:
    We are unable to duplicate the error in any of our compilers. The snippet of code that you provided compiles fine. Can you create a self-contained test case that shows the error? Snippiets of code that reference your environment are impossible to debug from here.
    Thanks.
    - Rose

  • Error msg 'attached accessory uses too much power' ??!

    WOW...HELP!!
    I get an error message:  'attached device uses too much power' virtually every time I attach ANYTHING.  Really?  Is this related to my distressingly sophisticated cyber-stalker- from- ****?  All I want to do is download some pics from my camera, for heaven's sake!  As a bonus, it would be cool if the apps I've purchased would actually function; scratch that - if they'd just show up in the apps list in my settings, even...that would be progress!
    I love Apple; my issues are NOT the result of the product, nor a lack of patience (and kindness) on Apple's part.  However, I refuse to accept 'statistically impossible error' as my lot in life...especially not as the result of some idiot stalker.
    BUT....
    I am woefully outclassed by this hacker jack***
    HELP!

    I get an error message:  'attached device uses too much power' virtually every time I attach ANYTHING.
    What are you trying to attach?
    As a bonus, it would be cool if the apps I've purchased would actually function; scratch that - if they'd just show up in the apps list in my settings, even...that would be progress!
    If there are no user settings in the app, it will not show up in Settings since there is nothing you can set.

Maybe you are looking for

  • Plugin-Check page... Mozilla is missing the point.

    Mozilla, I have used Firefox FAITHFULLY for the past 10 years. I chose Firefox over IE specifically because it has ALWAYS been customizable. While IE (and microsoft) has always been rigid, and forced the user to do things their way, Firefox has been

  • How to get updated data automatically  on flex scroll screen

    i am showing invoices and corresponding articles in the invoice on flex scrolling screen.details of invoices i am storing in a xml object through java class. i want that whenever i create a invoice it should automatically appear on screen.what method

  • Fails to update data during view object test

    Hi, I'm using: Postgresql w/JDBC drivers Jdeveloper 10g I created entities and associations for my tables, and now I created a view object, assigned it to application module and run it. It shows the data properly, but when I try to commit a change, i

  • Help: Template for FORMS

    I am working on a set of forms. I'd like to call one of the form be template. It has: 1. Form level triggers; 2. Button controls; 3. Message controls; these features can be applied to all about 20 forms except for very minor changes. I'd like all oth

  • How process messages in intervals?

    In file to idoc scenario, I want to send p.order data present in  flat file and through xi the p.order data need to send to receiver r/3 only 3 times a day ( 10 am, 2 pm, 5 pm).Please help me how to configure a scenario like this?