Getting TP errorr

Hi Guru's
We are facing a typical issue. We want to do inbound trx 895 for one of our TP.For the same partner other inbound trx like 875 and 850 are working fine. We are using FTP as a protocol for inbound. Now when we put the file ( we verified the file in spec builder and there are no errors) we get the following error
AIP-50547: Trading partner agreement not found for the given input values: From party[NAME] "Kroger_KingSoopers", To party[NAME] "DPI", Business action name "null"; also verify agreement effectiveToDate
     at oracle.tip.adapter.b2b.tpa.RepoDataAccessor.getAgreementNameByBaTPName(RepoDataAccessor.java:2345)
     at oracle.tip.adapter.b2b.tpa.TPAIdentifier.identifyTPA(TPAIdentifier.java:186)
     at oracle.tip.adapter.b2b.tpa.TPAProcessor.processTPA(TPAProcessor.java:589)
     at oracle.tip.adapter.b2b.tpa.TPAProcessor.processIncomingTPA(TPAProcessor.java:240)
     at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1832)
     at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2573)
     at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2443)
     at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2398)
     at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
     at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
     at java.lang.Thread.run(Thread.java:534)
I tried setting the 820 for the same partner and it worked fine. PLz note than intrchange id's are exactly same for 895 and 820.
We checked in the logs also there are no errors of mismatch of parameters. Also I tried to chk for the Aggrement but all looks fine. Plz help us in resolving the issue
Regards
Sahil

Hi Sahil,
Issue is because B2B is not able to find a business action -
Business action name "null"; Please post the complete B2B log here/mail it to my id (in my profile)
Make sure you are following the naming convention of file properly.
Regards,
Anuj

Similar Messages

  • Getting constraint errorr for INSERT? Cannot insert duplicate key row in object 'etag.Tag_Processed' with unique index 'IX_Tag_Processed'

    I have an index constraint "IX_Tag_Processed" on the field "Tag_Name" for the table "Tag_Processed". I keep getting this constraint error:
    Msg 2601, Level 14, State 1, Line 15
    Cannot insert duplicate key row in object 'etag.Tag_Processed' with unique index 'IX_Tag_Processed'. The duplicate key value is (AZPS_TEMUWS0110BL4_CISO).
    The statement has been terminated.
    For this INSERT: I have tried using tagstg.Tag_Name NOT IN with same result:
    INSERT into [Forecast_Data_Repository].[etag].[Tag_Processed] (Tag_Name, Tag_Type,Start_Datetime, End_Datetime, Source_SC, Sink_SC, Source_CA, Sink_CA, Source, Sink, Load_dt, Energy_product_code_id)
    SELECT DISTINCT (Tag_Name), Tag_Type,Start_Datetime, End_Datetime, Source_SC, Sink_SC, Source_CA, Sink_CA, Source, Sink, GETUTCDATE(),  [Forecast_Data_Repository].rscalc.GetStubbedEngProductCodeFromStaging(tagstg.Tag_Name)
    FROM [Forecast_Data_Repository].[etag].[Tag_Stg] tagstg
    WHERE tagstg.Id BETWEEN @minTId AND @maxTId --AND
    --tagstg.Tag_Name NOT IN (
    -- SELECT DISTINCT tproc.Tag_Name from [Forecast_Data_Repository].[etag].[Tag_Processed] tproc
    thank you  in advance, 
    Greg Hanson

    I have even tried a merge with the same constraint error,
    DECLARE @minTId bigint, @minTRId bigint, @minEId bigint
    DECLARE @maxTId bigint, @maxTRId bigint, @maxEId bigint
    DECLARE @errorCode int
    DECLARE @ReturnCodeTypeIdName nvarchar(50)
    SELECT @minTRId = Min(Id) FROM [etag].[Transmission_Stg]
    SELECT @maxTRId = Max(Id) FROM [etag].[Transmission_Stg]
    SELECT @minTId = Min(Id) FROM [etag].[Tag_Stg]
    SELECT @maxTId = Max(Id) FROM [etag].[Tag_Stg]
    DECLARE @MergeOutputTag TABLE
    ActionType NVARCHAR(10),
    InsertTagName NVARCHAR(50)
    --UpdateTagName NVARCHAR(50)
    --DeleteTagName NVARCHAR(50)
    DECLARE @MergeOutputEnergy TABLE
    ActionType NVARCHAR(10),
    InsertTagId BIGINT
    --UpdateTagName NVARCHAR(50)
    --DeleteTagName NVARCHAR(50)
    DECLARE @MergeOutputTransmission TABLE
    ActionType NVARCHAR(10),
    InsertTagId BIGINT
    --UpdateTagName NVARCHAR(50)
    --DeleteTagName NVARCHAR(50)
    MERGE [Forecast_Data_Repository].[etag].[Tag_Processed] tagProc
    USING [Forecast_Data_Repository].[etag].[Tag_Stg] tagStg
    ON 
    tagProc.Tag_Name = tagStg.Tag_Name AND
    tagProc.Tag_Type = tagStg.Tag_Type AND
    tagProc.Start_Datetime = tagStg.Start_Datetime AND
    tagProc.End_Datetime = tagStg.End_Datetime AND
    tagProc.Source_SC = tagStg.Source_SC AND
    tagProc.Source_CA = tagStg.Source_CA AND
    tagProc.Sink_CA = tagStg.Sink_CA AND
    tagProc.Source = tagStg.Source AND
    tagProc.Sink = tagStg.Sink 
    WHEN MATCHED THEN
    UPDATE
    SET Tag_Name = tagStg.Tag_Name,
    Tag_Type = tagStg.Tag_Type,
    Start_DateTime = tagStg.Start_Datetime,
    End_Datetime = tagStg.End_Datetime,
    Source_SC = tagStg.Source_SC,
    Sink_SC = tagStg.Sink_SC,
    Source_CA = tagStg.Source_CA,
    Sink_CA = tagStg.Sink_CA,
    Source = tagStg.Source,
    Sink = tagStg.Sink,
    Load_dt = GETUTCDATE()
    WHEN NOT MATCHED BY TARGET THEN
    INSERT (Tag_Name, Tag_Type, Start_Datetime, End_Datetime, Source_SC, Sink_SC, Source_CA, Sink_CA, Source, Sink, Load_dt)
    VALUES (tagStg.Tag_Name, tagStg.Tag_Type, tagStg.Start_Datetime, tagStg.End_Datetime, tagStg.Source_SC, tagStg.Sink_SC, tagStg.Source_CA, tagStg.Sink_CA, tagStg.Source, tagStg.Sink, GETUTCDATE())
    OUTPUT
    $action,
    INSERTED.Tag_Name
    --UPDATED.Tag_Name
    INTO @MergeOutputTag;
    SELECT * FROM @MergeOutputTag;
    Greg Hanson

  • Error while running BPEL Process with Oracle Apps Adapter.

    Hi All,
    I am trying to configure the oracle apps adapter in JDeveloper.
    Here my EBS is running on different database where as SOA is installed on different database.
    I am able to properly configure the adapter & deploy the process to weblogic server.
    But when I am trying to run the process I am getting following errorr.
    <p>
    The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510\nJCA Resource Adapter location error.\nUnable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/>\nThe JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='*<JNDI Name passed in Oracle apps Adapter.>*'.\nThe reason for this is most likely that either \n 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or \n 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to <JNDI Name passed in Oracle apps Adapter.>
    </p>
    Please suggest the solution for the same.
    its really urgent . waiting for reply.
    Edited by: aumathe on Dec 16, 2010 2:33 PM

    Have you created a connection pool with the JNDI specified while configuring adapter in Oracle Apps adapter on weblogic admin console. You should create it at Deployments --> OracleAppsAdapter --> Configuration--> Outbound Connection pools
    Make sure to update the adapter after creating a connection pool so that changes can take effect.
    Regards,
    Anuj

  • BPM - Create process error - red flag in monitor

    Hi.
    I have a question about generating errors in a BPM.
    The scenario is like this:
    After some process I have a switch. In case of an error, the switch branch to a control step that throws an exception. A control step afterwards cancels the process.
    Everything works like it should, but in the monitor, every process step has a sucessfull flag. I would like the process to fail somehow, so the process step indicates an error.
    We do not use the alert framework!
    Anyone got an idea?
    Regards...
    Peter

    Peter,
    I got your flow. You need to do the below steps in order to achieve your scenario.
    --Place a block. In Block Properties enter Exception name[ Anything as ur wish]
    --Place the Switch step inside the Block.
    -- As per your above logic check for TYPE =E and place the Control block in the corresponding brach.
    -- Control Block choose Action as "Throw Exception" and Exception as defined in Step 1.
    -- Remember don't insert any Exception branch and catch the exception, then you won't get any errorrs. If you want the BPM to be errord out then follow the steps mentioned above.
    If you have any doubts, please revert back.
    raj.

  • Error launching the power pivot report builder in SharePoint 2013

    I have sharepoint site which uses classic windows authentication. 
    i uploaded a simple excel file with two columns which has a data model created in Excel 2013. 
    I am trying to create a power view report out of it in SharePoint ..
    I am getting following errorrs
                  <detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'http://devreports.hellosolutions.com/TestPowerPivotGallery/Ageofrol.xlsx'. Verify that the connection information is
    correct and that you have permissions to access the data source.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.5058.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.5058.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.5058.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'http://devreports.hellosolutions.com/TestPowerPivotGallery/Ageofrol.xlsx'. Verify that the connection information
    is correct and that you have permissions to access the data source.</Message><MoreInformation><Source>Microsoft.ReportingServices.ProcessingCore</Source><Message msrs:ErrorCode="rsErrorOpeningConnection" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsErrorOpeningConnection&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.5058.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">Cannot create a connection to data source 'TemporaryDataSource'.</Message><MoreInformation><Source></Source><Message>For more information about this error
    navigate to the report server on the local server machine, or enable remote errors</Message></MoreInformation></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    kukdai

    Hi,
    According to your post, my understanding is that you could not launch report builder in the client machine.
    Did you install the .Net 4.0 framework on your machine?
     .Net 4.0 framework needed to be installed on each user's machine, you can install it, then check whether it works.
    More information: 
    http://social.technet.microsoft.com/Forums/en-US/ac51a022-6173-4840-96b5-32119b132bb5/unable-to-launch-report-builder-30?forum=sqlreportingservices
    As this is the forum for SharePoint server on-premise, I’m not familiar with the Reporting service, for this issue, I recommend you can post a new question in the forum for SQL Server Reporting Services.
    https://social.technet.microsoft.com/Forums/en-US/ac51a022-6173-4840-96b5-32119b132bb5/unable-to-launch-report-builder-30?forum=sqlreportingservices
    More experts will assist you, then you will get more information relation to Reporting Services.
    Thank you for your understanding and support.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Some php + berkeley db questions

    I have some questions about using php with bdb.
    First, I compiled Berkeley db and then linked php to it using the configure directive.
    Then I accessed bdb through the php standard dba_* APIs. This works, but it seems like locking is broken. The php documentation (and common sense) says that calls to dba_open() with a write lock will block when another such call has succeeded in another process. But my tests show many concurrent processes all getting write locks no problem.
    So then I compiled the native php_db4 extension that ships with bdb. I tried to use the API documented here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/ext/php.html
    Can anybody direct me to a more complete (and more correct) fuller documented version of this API? For instance, the put method is not shown in the Db4 class, but it does exist.
    I'm trying to infer how the php API works from the C API docs, but it's not very easy, particularly when it comes to error codes returned. Is there a db_strerror in the php?
    I can get the simple demos that come in the db4 php dir to work, but what I need is a locking environment, much like the one documented here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/cam/intro.html
    However, when I try to open the DBENV with the DB_INIT_CDB and DB_INIT_MPOOL flags, as directed, the call fails in the php. I cannot figure out why or how to get an errorr code or message I can debug?
    Any help will be much appreciated. If you could just point me at any real-world examples of php and berkeley db that would be a great start.

    Hi,
    From what I'm aware of, there is no extra documentation on php & BDB (maybe just php.net :) ). Also, I don't know if is there anyone who published his source code.
    What kind of application do you want to build? I think that a good option for the moment is to try to use BDB XML version ( Berkeley DB XML and http://www.oracle.com/technology/products/berkeley-db/xml/index.html ), since there are many cases there in which the BDB XML product is used via PHP, and this is why you can have a better support. I think that you can try to achieve the same approach using XML, please let me know if you agree or not.
    BDB XML's PHP API's are mapped over C++ API, and you'll have the ability to use XML and XQuery rather than tables and SQL.
    If you can point me with a specific issue in PHP APIs for BDB, and provide me with test cases, I can try to work them out. Also, in the next weeks, I 'll try to have a look on PHP APIs in my spare time, and maybe I'll be able to work on supporting the latest BDB APIs. If there is somebody working on a PHP app and is willing to help on testing and maintaining the PHP APIs, please post here.
    Regards,
    Bogdan Coman, Oracle

  • Trying to include Richfaces into Myfaces JSF-Project

    Hello!
    I've got following problem:
    existing Project works with MyFaces
    want to include Richfaces
    using Tomcat 6.0.14 (Eclipse)
    I have copied all richfaces jar files into lib directory.
    I think i've done something wrong in web.xml
    When i start server i get this error:
    SCHWERWIEGEND: Error configuring application listener of class com.sun.faces.config.ConfigureListener
    java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1358)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1204)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3773)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)<listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    I removed this line from web.xml, cause somewhere i read that its not necessary anyway.
    When i start server now i finally get this errorr:
    11:17:33,640 ERROR [Digester] End event threw exception
    java.lang.IllegalArgumentException: argument type mismatch
         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 org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:216)
         at org.apache.commons.digester.Rule.end(Rule.java:230)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1130)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:186)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerResources(ResourceBuilderImpl.java:131)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.init(ResourceBuilderImpl.java:202)
         at org.ajax4jsf.framework.renderer.ChameleonRenderKitFactory.<init>(ChameleonRenderKitFactory.java:62)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:152)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:110)
         at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:735)
         at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:149)
         at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:68)
         at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         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 org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    11:17:33,640 ERROR [Digester] End event threw exception
    java.lang.IllegalArgumentException: argument type mismatch
         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 org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:216)
         at org.apache.commons.digester.Rule.end(Rule.java:230)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1130)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:186)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerResources(ResourceBuilderImpl.java:131)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.init(ResourceBuilderImpl.java:202)
         at org.ajax4jsf.framework.renderer.ChameleonRenderKitFactory.<init>(ChameleonRenderKitFactory.java:62)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:152)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:110)
         at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:735)
         at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:149)
         at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:68)
         at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         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 org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    11:17:33,656 ERROR [StartupServletContextListener] Error initializing ServletContext
    javax.faces.FacesException: java.lang.reflect.InvocationTargetException
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:161)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:110)
         at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:735)
         at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:149)
         at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:68)
         at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         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 org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:152)
         ... 20 more
    Caused by: javax.faces.FacesException: java.lang.IllegalArgumentException: argument type mismatch
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:193)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerResources(ResourceBuilderImpl.java:131)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.init(ResourceBuilderImpl.java:202)
         at org.ajax4jsf.framework.renderer.ChameleonRenderKitFactory.<init>(ChameleonRenderKitFactory.java:62)
         ... 25 more
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2919)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2945)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1133)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:186)
         ... 28 more
    11:17:33,656 ERROR [StartupServletContextListener] Error initializing ServletContext
    javax.faces.FacesException: java.lang.reflect.InvocationTargetException
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:161)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:110)
         at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:735)
         at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:149)
         at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:68)
         at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         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 org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:152)
         ... 20 more
    Caused by: javax.faces.FacesException: java.lang.IllegalArgumentException: argument type mismatch
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:193)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerResources(ResourceBuilderImpl.java:131)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.init(ResourceBuilderImpl.java:202)
         at org.ajax4jsf.framework.renderer.ChameleonRenderKitFactory.<init>(ChameleonRenderKitFactory.java:62)
         ... 25 more
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2919)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2945)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1133)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:186)
         ... 28 more
    javax.faces.FacesException: java.lang.reflect.InvocationTargetException
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:161)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:110)
         at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:735)
         at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:149)
         at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:68)
         at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
         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 org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at javax.faces.FactoryFinder.newFactoryInstance(FactoryFinder.java:152)
         ... 20 more
    Caused by: javax.faces.FacesException: java.lang.IllegalArgumentException: argument type mismatch
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:193)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerResources(ResourceBuilderImpl.java:131)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.init(ResourceBuilderImpl.java:202)
         at org.ajax4jsf.framework.renderer.ChameleonRenderKitFactory.<init>(ChameleonRenderKitFactory.java:62)
         ... 25 more
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2919)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2945)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1133)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at org.ajax4jsf.framework.resource.ResourceBuilderImpl.registerConfig(ResourceBuilderImpl.java:186)
         ... 28 moreFinally this is my web.xml code:
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee  http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>CiwiShop</display-name>
       <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
        </context-param>
    <context-param>
      <description>State saving method: "client" or "server" (= default)
                See JSF Specification 2.5.2</description>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>server</param-value>
    </context-param>
    <context-param>
      <description>This parameter tells MyFaces if javascript code should be allowed in the
                rendered HTML output.
                If javascript is allowed, command_link anchors will have javascript code
                that submits the corresponding form.
                If javascript is not allowed, the state saving info and nested parameters
                will be added as url parameters.
                Default: "true"</description>
      <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
      <param-value>true</param-value>
    </context-param>
    <context-param>
      <description>This parameter tells MyFaces if javascript code should be allowed in the
                rendered HTML output.
                If javascript is allowed, command_link anchors will have javascript code
                that submits the corresponding form.
                If javascript is not allowed, the state saving info and nested parameters
                will be added as url parameters.
                Default: "false"
                Setting this param to true should be combined with STATE_SAVING_METHOD "server" for
                best results.
                This is an EXPERIMENTAL feature. You also have to enable the detector filter/filter mapping below to get
                JavaScript detection working.</description>
      <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
      <param-value>false</param-value>
    </context-param>
    <context-param>
      <description>If true, rendered HTML code will be formatted, so that it is "human readable".
                i.e. additional line separators and whitespace will be written, that do not
                influence the HTML code.
                Default: "true"</description>
      <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
      <param-value>true</param-value>
    </context-param>
    <context-param>
      <description>If true, a javascript function will be rendered that is able to restore the
                former vertical scroll on every request. Convenient feature if you have pages
                with long lists and you do not want the browser page to always jump to the top
                if you trigger a link or button action that stays on the same page.
                Default: "false"</description>
      <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
      <param-value>true</param-value>
    </context-param>
      <filter>
            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
    <filter>
    <filter-name>LoginFilter</filter-name>
    <filter-class>at.ciwi.filter.LoginFilter</filter-class>
    </filter>
    <!-- Extensions Filter -->
    <filter>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
      <init-param>
       <description>Set the size limit for uploaded files.
                    Format: 10 - 10 bytes
                            10k - 10 KB
                            10m - 10 MB
                            1g - 1 GB</description>
       <param-name>maxFileSize</param-name>
       <param-value>20m</param-value>
      </init-param>
    </filter>
    <filter-mapping>
         <filter-name>LoginFilter</filter-name>
         <url-pattern>/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
      <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.)  -->
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <!-- Listener, that does all the startup work (configuration, init). -->
    <listener>
      <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
    </listener>
    <!-- Faces Servlet -->
    <servlet>
      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <login-config>
      <auth-method>BASIC</auth-method>
    </login-config>
    <!-- Ajax4JSF filter as given in the 1.1.1 README file -->
      <filter>
        <display-name>Ajax4jsf Filter</display-name>
        <filter-name>ajax4jsf</filter-name>
        <filter-class>org.ajax4jsf.Filter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>ajax4jsf</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>INCLUDE</dispatcher>
      </filter-mapping>
    </web-app>

    Already found the problem, I just had to delete the ajax4jsf lib in web-inf/lib, because the same classes are in richfaces.

  • Unable to Open SO Form in OM

    Hi Gurus
    I am unable to open sales order form in Order management modules, getting error message as "APP-AR-96575: Ledger not found" and 100501: non-Oracle Exception.
    As per this error message found that system options are not defined correctly in AR module, if I open the system options for respective Operating unit getting error message as "APP-AR-29447: system options were already defined for this operating unit. you can only view or update these options.
    I am trying to update the details in system options but getting same errorr message, not found any solution in Metalink also.
    By mistake we ran 'replicate seed data' yesterday, after that this issue happend, is there any impact if we run replicate seed data after doing all setups, we ran 3 times this concurrent problem.
    All profile options are set correctly, appreciate resolution for above problem.
    Regards
    AK
    Edited by: 21221 on Jan 7, 2013 11:24 AM

    Check the profile options for the corresponding responsibility.

  • Error on Export Excel?

    Hi All,
    Please suggest the following error:
    The initial exception that caused the request to fail, was:
    java.lang.NoClassDefFoundError: java/lang/StringBuilder
        at transactionsapplication.TransactionsApplication.trimHeaderText(TransactionsApplication.java:320)
        at transactionsapplication.TransactionsApplication.trimHeaderTexts(TransactionsApplication.java:309)
        at transactionsapplication.TransactionsApplication.toExcel(TransactionsApplication.java:242)
        at transactionsapplication.TransactionsApplication.exportToExcel2003(TransactionsApplication.java:188)
        at transactionsapplication.wdp.InternalTransactionsApplication.exportToExcel2003(InternalTransactionsApplication.java:145)
        ... 28 more
    Regards,
    CSP

    Hi,
    I reintalled the JDK1.5... Still I am getting the errorr....
    PLeasse suggest how to proceed.....
    Regards,
    CSP

  • Berkely XML DB Compiling error in Tourbo C - Need Help

    Hi, i am compiling the below program in turbo C. and getting 26 errorrs like unbale to open file "XMLPORTABILITY.HPP", "XMLCONTAINER.HPP" etc... which are defined in "DBXML.HPP"......i have placed all the said above files in the TC directory and saved the path as well. but still its not able to open those files while compiling hte below code and giving 26 error. Kindly sugsest what should i do. I have
    #include "DbXml.hpp"
    // exception handling omitted for clarity
    int main(void)
    // Open an XmlManager.
    XmlManager myManager;
    ----------------------------------------------------------------------

    Hi,
    I'm surprise that you are using DBXML with Turbo C. :)
    Because Xml*.hpp are in the same directory as DbXml.hpp, I guess the lib didn't be built/install correctly since Turbo C only can find DbXml.hpp.
    So how did you build and install the lib? Did you built the lib with Visual Studio or just install libs with DBXML Windows MSI installer?
    Best regards,
    Rucong Zhao
    Oracle Berkeley DB XML

  • REG: OBIEE Load Completion Report

    Hi all ,
    I need to built OBIEE Load Completion Report using Usage Tracking Subject Area. So for this I imported two tables W_ETL_Def_Run, W_ETL_Step_run into the physical layer(Oracle Analytics Usage-- Usage Tracking). Both these tables are coming from OBISchema.
    But other tables are coming from OBIAPP. So I created three connection pools i.e Usage Tracking Connection Pool, Usage Tracking Writer Connection Pool, DAC Connection Pool. For the first two connection pools I gave User as OBIAPP and for the last one I gave OBIschema. I am able to View data when click on the table in physical layer.(Right click and 'View Data' option)
    I gave all the joins correctly as per the Requirement.
    But when I try to build report using these tables... I am getting this errorr Insufficient privileges at OCI call OCIStmtExecute. [nQSError: 1701
    Need Help...
    Thanx in advance..                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    You can check that if the oracle schema users used in the 3 connection pools, have the respective access/grants?
    This has to do with the oracle connection user and grants on the tables for the oracle schema, it seems.

  • TS3694 Unable to update to iO6

    I recently purchase iPhone 4s factory unlocked and currently i am getting error 3194 when I try to update to iOS 6. I have tried editing host file but still getting same errorr... aNy suggestions???

    Read this thread.
    http://discussions.apple.com/message/19482036#19482036

  • Oracle.apps.fnd.*

    does anyone know how to use this package from within JSPs? there is an aoljtest.jsp page on our server which links to a login.jsp page that simply authenticates a user login and password for oracle applications. this works fine, however i am trying to simulate this in my desktop enviornment and i am having trouble. i copied the apps.zip file (which has all of these classes to my WEB-INF/lib directory, however when i try to start oc4j i get an errorr: java.lang.OutOfMemoryError). any ideas on how i could get this login.jsp page to work locally?

    does anyone know how to use this package from within JSPs? there is an aoljtest.jsp page on our server which links to a login.jsp page that simply authenticates a user login and password for oracle applications. this works fine, however i am trying to simulate this in my desktop enviornment and i am having trouble. i copied the apps.zip file (which has all of these classes to my WEB-INF/lib directory, however when i try to start oc4j i get an errorr: java.lang.OutOfMemoryError). any ideas on how i could get this login.jsp page to work locally?

  • ITunes Library locked - Nas drive

    Hello,
    Heres my situation
    I have an iMac at home and I recently purchased a Synology DS412+ NAS drive.
    I have created an iTunes library on the Synlology drive. Everythings been working reletively well. However I am now getting this errorr as soon as I load up iTiunes.
    The iTunes Library.itl file is locked, on a locked disk, or you do not have write permision for this file.
    I got this error after a cold boot after the last thing I did which was to use Terminal to force index on that drive.
    jonathans-imac:~ Phoenix$ sudo mdutil -i on /Volumes/music
    /Volumes/music:
              Indexing enabled.
    I have connected to the Synology via the Go, Connect to server command
    afp://DiskStation._afpovertcp._tcp.local
    Signed in with the login credentials that have full read/write access on the Synology.
    Can someone please assist me on what I am doing wrong as this is really ruining my Mac experience and I almost renders the point of my Synology pointless.

    All you need to do... if it's not too late... is click on the Synology icon in the upper left hand side of the menu bar (the icon with the four shapes in it).  This will open a dropdown menu.  At the bottom of this menu choose "restart".  This will shut down your Synology NAS and reboot it.  Everything should be fine after the reboot.

  • Using ANT

    Hi All,
    Can anybody help me in solving the error generated while compling a xml file.I am using ANT.

    Hi
    my code snippet is like this:
    <?xml version="1.0" ?>
    - <project name="Hello" default="say.Hello" basedir=".">
         <property name="Hello.msg" value="Hello, World"/>
         <property name="build" value="build"/>
         <target name="say.Hello">
              <echo>${Hello.msg}</echo>
         </target>
    </project>
    whenever i rum this file by using the command "ant -v" on the command prompt i get an errorr "C:\usingant\src\build.xml:2: Content is not allowed in prolog." Kindly help me in solving this problem

Maybe you are looking for

  • HT4848 I have a Recovery issue with late 2012 Mac Mini

    I have a Mac Mini late 2012 purchased last week. I put a Mercury 240GB SSD into the top bay and upped the RAM to 16GB. I then formatted the SSD and used Recovery to install the OS on the SSD. The system performs as expected EXCEPT... when I use the R

  • Trying to stream videos just spool and never play

    Hi, Like most people, my Apple TV (2) used to work fine and then after the latest updates (and an apparent lack of software testing by Apple before they release it nowadays) it has become next to useless. My Home Sharing is all turned on, firewalls o

  • Embedding full-text index via Script

    Hello Everyone, is there possibility to create and embed full-text index into my very long document via scripting Acrobat Pro? I've searched scripting API and there are objects like catalog or index, but both have only several methods and no embeding

  • Need SAP Note Explanation

    Hi Experts, While up grading company db from SAP 8.8 to 9.0 PL10. I got 4 warning messages. I am having little confusion in two messages (SAP Notes: 1729457 and 1934378). 1) SAP Note 1729457 tells about inventory tracking. Need explanation how it imp

  • Upgrade a 2008 Mac Pro to Yosemite

    I upgraded to Snow Leopard to get access to the app store and upgrade to Yosemite.  Now, the download of Yosemite seems "frozen".  The dock icon says "downloading", but it has been 10 minutes.  If I hit Command/Option/Escape it does not indicate that