Sources for package oracle.toplink.internal.expressions in version 10.1.3.5

Hi there,
I just downloaded file toplink_101350.zip from Oracle and in folder \toplink\jlib it has a file called toplink-src.zip. When I look at jar file toplink.jar it contains much more packages like oracle.toplink.internal.expressions that in the source file.
Now where can I get the full oracle toplink source?
Thanks.
Regards,
Joao

Hi,
the web appears to be full of such error messages and some point to the use of named native query vs. named query. So here are some options for you to try
1. Create a test project in 11g using the same tables and compare the generated code with yours to see a difference
2. Get a 10.1.3.5 project that you haven't migrated and pass it on to customer support for them to have a try on this.
+"If this is not resolved, we can not chose Jdeveloper as a future IDE at the company..."+ Actually it doesn't appear to be a JDeveloper issue but a TopLink / EclipseLink issue. Abandoning JDeveloper is like shooting the messenger. Just so you know.
Frank

Similar Messages

  • Bug in  oracle.toplink.internal.helper.JDK14Platform?

    It looks like JDK14Platform tries to compile the text we are searching as regular expressions...
    Yet the descriptions we are searching can contain special characters like "{" or "+"...
    Caused by: java.util.regex.PatternSyntaxException: Illegal repetition near index 15
    ceci est un test{{Text1}}
    ^
         at java.util.regex.Pattern.error(Pattern.java:1528)
         at java.util.regex.Pattern.closure(Pattern.java:2545)
         at java.util.regex.Pattern.sequence(Pattern.java:1656)
         at java.util.regex.Pattern.expr(Pattern.java:1545)
         at java.util.regex.Pattern.compile(Pattern.java:1279)
         at java.util.regex.Pattern.<init>(Pattern.java:1035)
         at java.util.regex.Pattern.compile(Pattern.java:779)
         at java.util.regex.Pattern.matches(Pattern.java:865)
         at oracle.toplink.internal.helper.JDK14Platform.conformLike(JDK14Platform.java:54)
         at oracle.toplink.internal.helper.JavaPlatform.conformLike(JavaPlatform.java:57)
         at oracle.toplink.expressions.ExpressionOperator.doesRelationConform(ExpressionOperator.java:750)
         at oracle.toplink.internal.expressions.RelationExpression.doesConform(RelationExpression.java:126)
         at oracle.toplink.internal.identitymaps.IdentityMapManager.getAllFromIdentityMap(IdentityMapManager.java:209)
         at oracle.toplink.publicinterface.Session.getAllFromIdentityMap(Session.java:1251)
         at oracle.toplink.queryframework.ReadAllQuery.conformResult(ReadAllQuery.java:314)
         at oracle.toplink.queryframework.ReadAllQuery.registerObjectInUnitOfWork(ReadAllQuery.java:684)
         at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2217)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1086)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1038)
         at oracle.toplink.publicinterface.Session.readAllObjects(Session.java:2423)

    This is a known issue and will be fixed in the next 9.0.4 patch release.

  • Data truncation with oracle.toplink.internal.databaseaccess.OraclePlatform

    Hello everyone
    I use Toplink 10g(9.0.4.5) with Oracle Lite database. I use the oracle.toplink.internal.databaseaccess.OraclePlatform and everything seems to be fine, except that when I pass a String more than the length defined in the Database, data is getting truncated to the maximum possible length in the Database and no exception is thrown. If I run a SQL statement directly on the Oracle Lite database using msql "value too large for column" exception is thrown.
    The question is it the default behviour of oracle.toplink.internal.databaseaccess.OraclePlatform to truncate the data for the large Strings? How can i change this behaviour to throw an exception?
    Any information on this would be highly appreciated.
    Thanks in advance..

    Thanks for the reply.
    But my tests are pointing towards ToplinkPlatform only. I use the oracle.lite.poljdbc.POLJDBCDriver with Oracle Database Lite, and when I do a simple test to insert a large String wiht plaing JDBC and POLJDBCDriver, i receive the following error.
    [POL-2403] value too large for column
    However if i did the same using Toplink and oracle.toplink.internal.databaseaccess.OraclePlatform, the SQL statement generated by Toplink does not throw any errors. When i query the database, i see that the data is truncated. I use the same oracle.lite.poljdbc.POLJDBCDriver with Toplink.
    <session>
    <name>testLite</name>
    <project-class>com.entityobjects.mappings.testLite</project-class>
    <session-type>
    <server-session/>
    </session-type>
    <login>
    <driver-class>oracle.lite.poljdbc.POLJDBCDriver</driver-class>
    <connection-url>jdbc:polite:POLITE;DataDirectory=C:\;Database=testLite;</connection-url>
    <platform-class>oracle.toplink.internal.databaseaccess.OraclePlatform</platform-class>
    <user-name>test1</user-name>
    <password>test1</password>
    <should-bind-all-parameters>true</should-bind-all-parameters></login>
    <enable-logging>true</enable-logging>
    <logging-options/>
    </session>
    I do not want to add a check at the object setter level, as the same object model is used in different projects and published across.
    Any more ideas why data is getting truncated?
    Thanks in advance for any suggestions..

  • Oracle.toplink.internal.helper.NonSynchronizedVector exception

    I get following exception when invoking session bean from EJB client generated by JDev (EJB JPA project). Session bean returns the list of value objects created using TopLink Essentials based JPA native query. Does anybody know what is causing this exception and if there is a workaround?
    java.lang.ClassCastException: oracle.toplink.internal.helper.NonSynchronizedVector
    List<ProfileBasicVO> profiles = searchFacade.queryBasicProfilesByLastName( partialName );
    I get exception at this point:
    for( ProfileBasicVO profile: profiles ) {
    System.out.println( "lastName = " + profile.getLastName() );
    ...

    I changed the code to return List and I added mapping as a second parameter:
    public List queryBasicProfilesByLastName(String partialName) {
    Query basicProfileQuery =em.createNativeQuery( "findBasicProfilesByLastName", "BasicProfileResults" );
    return basicProfileQuery.getResultList();
    It fails with following exception:
    Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
    and the query is defined as
    <query>
    select o.last_name as LAST_NAME,
    o.first_name as FIRST_NAME,
    o.middle_name as MIDDLE_NAME,
    o.birth_date as BIRTH_DATE,
    o.sex_code as SEX_CODE,
    a.height_cm as HEIGHT_CM,
    a.weight_kg as WEIGHT_KG,
    o.PERSON_ID as PERSON_ID
    from offenders o,
    person_bookings b,
    person_physical_attributes a
    where o.PERSON_ID = b.PERSON_ID
    and b.PERSON_BOOK_ID = a.PERSON_BOOK_ID
    and o.last_name = 'POTTER'
    </query>
    Mapping is defined as:
    <sql-result-set-mapping name="BasicProfileResults">     
    <entity-result entity-class="entities.Persons">
    <field-result column="LAST_NAME" name="lastName"/>
    <field-result column="FIRST_NAME" name="firstName"/>
    <field-result column="MIDDLE_NAME" name="middleName"/>
    <field-result column="BIRTH_DATE" name="birthDate"/>
    <field-result column="SEX_CODE" name="sexCode"/>
    <field-result column="PERSON_ID" name="personId"/>
    </entity-result>
    <entity-result entity-class="entities.PersonPhysicalAttributes">
    <field-result column="HEIGHT_CM" name="heightCm"/>
    <field-result column="WEIGHT_KG" name="weightKg"/>
    </entity-result>
    </sql-result-set-mapping>
    I can execute the query manually without problem, i.e. it is valid query, but I still get exception

  • Oracle/toplink/internal/helper/ConcurrencyManager.acquire "Hang"

    Hi,
    I am trying to test an application on WAS with some load (200 virtual users from a load-runner) experiencing a hand condition. There are 128 threads waiting with the below stack trace.
    at java/lang/Object.wait(Native Method)
    at java/lang/Object.wait(Object.java:199(Compiled Code))
    at oracle/toplink/internal/helper/ConcurrencyManager.acquire(ConcurrencyManager.java:47(Compiled Code))
    at oracle/toplink/internal/sequencing/SequencingManager.acquireLock(SequencingManager.java:487(Compiled Code))
    at oracle/toplink/internal/sequencing/SequencingManager$ForcedToUseWriteAccessor_State.getNextValue(SequencingManager.java:678(Compiled Code))
    at oracle/toplink/internal/sequencing/SequencingManager.getNextValue(SequencingManager.java:325(Compiled Code))
    at oracle/toplink/internal/sequencing/ClientSessionSequencing.getNextValue(ClientSessionSequencing.java:76(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.assignSequenceNumber(ObjectBuilder.java:127(Compiled Code))
    at oracle/toplink/publicinterface/UnitOfWork.assignSequenceNumber(UnitOfWork.java:297(Compiled Code))
    I am using the following oracle version:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Windows Server 2003 Version V5.2 Service Pack 1
    CPU : 4 - type 586, 2 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:1831M/3583M, Ph+PgF:3736M/5475M, VA:495M/2047M
    The server slowly slips into a hang state and later becomes unresponsive.
    I request you guys to provide an insight into the problem area here?
    Thanks
    Phani

    Is the stack the same? There must be at least one thread that has the lock and is waiting on another resource to have a deadlock, could you include its stack.
    What type of sequencing are you using, table or native (sequence object)?
    Are you using JTA, and have you set a non-JTA read connection pool?
    If you are using table sequencing and JTA, what could be occuring is a database deadlock on the sequence table. Some solution would be:
    - Use native sequencing (sequence objects).
    - Specify a sequence connection pool on your TopLink ServerSession using a non-JTA datasource or TopLink direct-JDBC connection pool.
    You may also want to try using the TopLink 11g preview, it may not encounter the issue.

  • Oracle.toplink errors, but no toplink installed? (10G, SRDemo)

    Hello, I installed the Chapter 4 SRDemo on my machine, and I am receiving an error. (at bottom)
    However, I am able to connect to the database without any problems, have been using the same database connection for over a month, but wanted to trying doing the EJBs and following the SRDemo tutorial.
    This locks my account, so it is using the correct account name (Which is not the same as the default from the demo)
    What is really confusing me is the references to TopLink everwhere. I do not have TopLink installed. When I try to debug when I step into the line where the error is thrown it tells me "Unable to find source file for package oracle.toplink.essentials.exceptions, filename TopLinkException.java.
    Here is the error I receive on running the ServiceRequestFacadeClientEmbed.java in the SRDemo:
    Mar 16, 2009 12:05:14 PM oracle.toplink.essentials.session.file:/C:/TEMP/oratemp/SRDEMO/Model/classes/-Model
    INFO: TopLink, version: Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))
    Mar 16, 2009 12:05:14 PM oracle.toplink.essentials.session.file:/C:/TEMP/oratemp/SRDEMO/Model/classes/-Model
    INFO: Server: unknown
    Mar 16, 2009 12:05:16 PM com.evermind.server.ejb.logging.EJBMessages logException
    SEVERE: [ServiceRequestFacade:public org.srdemo.persistence.Products org.srdemo.business.ServiceRequestFacadeBean.findProductById(java.lang.Long)] exception occurred during method invocation: oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017; nested exception is:
         Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    ....

    OK... so I started with a new try. (Same machine) Edit --- installed Oracle and JDev on a new machine, got the exact same results.
    Downloaded JDeveloper 10G
    Extracted to new directory.
    New application - accepted all defaults.
    New Business Tier->EJB->Entities from Tables
    Substep - New Database Connection Accepted defaults, entered user name and password, entered hostname (not on localhost) and sid. Tested connection (Success!)
    Selected only Address Table and accept all defaults.
    project1.Addresses.java is created.
    New Session Bean -> accepted all defaults
    SessionEJBBean.java is created
    New Sample Java Client -> accepted all defaults
    SessionEJBClient.java is created
    Ran SessionEJBBean.java
    [Starting OC4J using the following ports: HTTP=8989, RMI=23891, JMS=9227.]
    C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\config>
    C:\Jdev10-2\jdk\bin\javaw.exe -client -classpath C:\Jdev10-2\j2ee\home\oc4j.jar;C:\Jdev10-2\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\dms.war...
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Unjar C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\dms.war in C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\dms
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Finished auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\dms.war
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\connectors\datasources\datasources.rar...
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Unjar C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\connectors\datasources\datasources.rar in C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\connectors\datasources\datasources
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Finished auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\connectors\datasources\datasources.rar
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags.ear...
    Mar 17, 2009 10:54:42 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Unjar C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags.ear in C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags
    Mar 17, 2009 10:54:43 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Finished auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags.ear
    Mar 17, 2009 10:54:43 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags\webapp.war...
    Mar 17, 2009 10:54:43 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Unjar C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags\webapp.war in C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags\webapp
    Mar 17, 2009 10:54:46 AM oracle.oc4j.util.FileUtils autoUnpack
    INFO: Finished auto-unpacking C:\Jdev10-2\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\applications\datatags\webapp.war
    Mar 17, 2009 10:54:46 AM com.evermind.server.XMLApplicationServerConfig randomizeJtaAdminPassword
    INFO: Updating JtaAdmin account
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 31654 ms.
    09/03/17 10:54:51 Oracle Containers for J2EE 10g (10.1.3.4.0)  initializedRun SessionEJBClient.java
    Mar 17, 2009 10:55:30 AM oracle.j2ee.rmi.RMIMessages EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER
    WARNING: Exception returned by remote server: {0}
    javax.ejb.EJBException: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017; nested exception is:
         Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017; nested exception is: oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017; nested exception is:
         Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017
    oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Error Code: 1017
         at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
         at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:75)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at SessionEJB_RemoteProxy_11o700f.queryAddressesFindAll(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         Nested exception is:
    .....So I would really appreciate any help, I have no good idea where to go next. I'm going to go try wiping a machine in the next cube and installing Oracle from scratch too.
    Thanks,
    Jeff
    Edited by: jeffles on Mar 17, 2009 9:49 AM

  • Security settings for Packages Data Source

    Hello,
    Can someone please help me or address me to some technical advise  about the way to configure the security options of a folder designed as a Data Source for Packages (or OS Images)  to work with SCCM 2012? I'm having a lot of troubles in distributing
    content from network shares (access denied and the like). 
    I've set up the Security Options for Data Source folder so that they inlcude full control for:
    any SCCM admin user
    site server computer account
    distribution point computer account
    what else should I put in?
    Thank you very much!
    Davide

    Hi,
    Please check despool.log on the primary site. There might be some errors about the WIM OS image.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Oracle.toplink.exceptions.ConcurrencyException

    Hi,
    We encountered a ConcurrencyException while running our batch process.
    - The have our minNumReadPoolsize = 5
    - The have our maxNumReadPoolsize = 20
    - read Pool is exclusive
    and we run our batch with 4 threads.
    Here is the stack trace.
    Any ideas?
    Thanks
    com.fmrco.gett.dataaccess.DAException: Exception while doing a commit
    at com.fmrco.gett.dataaccess.toplink.ToplinkDATransaction.commit(ToplinkDATransaction.java:115)
    at com.fmrco.compliance.cws.ipe.batch.IPETask.run(IPETask.java:159)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:642)
    at java.lang.Thread.run(Unknown Source)
    Caused by: Exception [TOPLINK-2003] (OracleAS TopLink - 10g (9.0.4.2) (Build 040311)): oracle.toplink.exceptions.ConcurrencyException
    Exception Description: Wait failure on ClientSession.
    Internal Exception: java.lang.InterruptedException
    at oracle.toplink.exceptions.ConcurrencyException.waitFailureOnClientSession(ConcurrencyException.java:44)
    at oracle.toplink.threetier.ConnectionPool.acquireConnection(ConnectionPool.java:72)
    at oracle.toplink.threetier.ServerSession.acquireClientConnection(ServerSession.java:272)
    at oracle.toplink.threetier.ClientSession.basicBeginTransaction(ClientSession.java:100)
    at oracle.toplink.publicinterface.Session.beginTransaction(Session.java:448)
    at oracle.toplink.publicinterface.UnitOfWork.beginTransaction(UnitOfWork.java:387)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1066)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1134)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:955)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:770)
    at com.fmrco.gett.dataaccess.toplink.ToplinkDATransaction.commit(ToplinkDATransaction.java:111)
    ... 3 more
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Unknown Source)
    at oracle.toplink.threetier.ConnectionPool.acquireConnection(ConnectionPool.java:70)
    ... 12 more
    20050512 05:22:19 EDT FATAL ipe.batch.IPETask [Thread-4] IPE Failed
    com.fmrco.gett.dataaccess.DAException: Exception while doing a commit
    at com.fmrco.gett.dataaccess.toplink.ToplinkDATransaction.commit(ToplinkDATransaction.java:115)
    at com.fmrco.compliance.cws.ipe.batch.IPETask.run(IPETask.java:159)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:642)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:258)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:559)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2888)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:2960)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:724)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:778)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:639)
    at oracle.toplink.publicinterface.UnitOfWork.executeCall(UnitOfWork.java:1397)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:134)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:115)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeNoSelectCall(CallQueryMechanism.java:167)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.updateObject(CallQueryMechanism.java:648)
    at oracle.toplink.internal.queryframework.StatementQueryMechanism.updateObject(StatementQueryMechanism.java:425)
    at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.updateObjectForWriteWithChangeSet(DatabaseQueryMechanism.java:1004)
    at oracle.toplink.queryframework.WriteObjectQuery.executeCommitWithChangeSet(WriteObjectQuery.java:107)
    at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:258)
    at oracle.toplink.queryframework.WriteObjectQuery.execute(WriteObjectQuery.java:51)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:493)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1958)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2252)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1086)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1038)
    at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:177)
    at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3223)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1089)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1134)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:955)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:770)
    at com.fmrco.gett.dataaccess.toplink.ToplinkDATransaction.commit(ToplinkDATransaction.java:111)

    The ConcurrencyException is occurring attempting to get a connection from the write-pool, not the read-pool. What size are you using for the write pool, ensure that it is large enough?
    Could you include your entire session configuration or sessions.xml file.
    Does the error only occur under heavy load, or does it start occurring after a certain point or after the null-pointer exception occurs?
    The null-pointer exception occurring in the JDBC driver is also very odd; the driver should never be encountering a null-pointer. Are you using the correct JDBC driver version for your database version?

  • Missing oracle.toplink.ejb.cmp3.EntityManagerFactoryProvider

    I have been trying to use Toplink 11G with Spring 2.5 and when I wire it up according to the Oracle JPA/Toplink article I get a class not found error. When I look at the toplink.jar the EntityManagerFactoryProvider its looking for its not there but the oracle.toplink.internal.ejb.cmp3.EntityManagerFactoryProvider exists instead.
    When I look at the toplink.jar shipped with jdeveloper 11 TP2 the EntityManagerFactoryProvider is there. Am I missing a jar?

    TopLink Essentials was intended to be a JPA implementation that offered most of what was needed by an average application that needed ORM. It was a pared down version derived from TopLink code and was never intended to include full TopLink functionality.
    The official plan of record (not just my opinion) is that both TopLink and EclipseLink will be shipped in 11g, but in future releases the TopLink product will be composed of the EclipseLink code base plus some server integration code.
    I don't know what the rules are with your client, but a) Oracle is the lead of the EclipseLink project and b) Oracle will be shipping it in 11g, so my personal opinion is that you should be able to consider it part of the Oracle stack.
    As an open source project the usual kinds of support will be available (forums, etc.) but assuming that your client has an Oracle support contract then I would guess (personal opinion again) that if they are using 11g then they would also be entitled to official support on the version of EclipseLink that is shipped with 11g, anyway.
    In the end you should check with your client but if they (or you) have any questions then they (or you) can always contact us for clarification.

  • Using Oracle Stored Proc as Data Source for PowerBuilder Data Window Object

    Hi,
    I'm trying to use an Oracle stored procedure as the data source for a PowerBuilder data window object. I'm using the following (which is a variation of an example given on Sybase's web site, with the appropriate database/column name changes and use of %TYPE):
    ======================
    CREATE OR REPLACE PACKAGE pkg_dw_sp_example
    AS
    TYPE typ_example_rec1 IS RECORD(
    v_comcodsa st_sa.comcodsa%TYPE,
    v_comnamsa st_sa.comnamsa%TYPE,
    v_cocitysa st_sa.cocitysa%TYPE);
    TYPE cur_example_cur1 IS REF CURSOR;
    RETURN typ_example_rec1;
    END;
    ======================
    CREATE OR REPLACE PROCEDURE sp_dw_example1
    (arg_teamid IN st_sa.comcodsa%TYPE,
    cur_team IN OUT pkg_dw_sp_example.cur_example_cur1)
    AS
    BEGIN
    OPEN cur_team FOR
              SELECT comcodsa,
              comnamsa,
              cocitysa
              FROM st_sa
              WHERE st_sa.comcodha = arg_teamid;
    END sp_dw_example1;
    ======================
    The package is created okay, but the procedure is saved with compilation errors. Unfortunately, Oracle does not indicate what the errors are (great product), so I have no idea what it is complaining about.
    Questions:
    1) Can anyone point me to/or provide a better example?
    2) The examples in books I have seen all would have declared the procedure in the package specification - is the above valid?
    3) This is a PowerBuilder specific question, but if the package does not show up in the stored procedure list when creating a data window object, how does one use it as a data source?
    Oracle 8.1.7
    PowerBuilder 8.0.1
    Thanks,
    Ed Holloman

    1) Everything looks fine with your code. You did not mention the environment you are compiling your code in, but if it is SQL*Plus, you can type 'show errors' after the compile and it will list the errors and line numbers for you.
    2) You can include the procedure in the package - in which case you would have a procedure declaration in the spec and the actual procedure in the body. You would no longer include the 'create or replace' - the declaration and procedure would just start with 'procedure'. The spec would look include:
    PROCEDURE sp_dw_example1
      (arg_teamid IN st_sa.comcodsa%TYPE,
       cur_team OUT cur_example_cur1);Note the removal of the package reference (since we are now IN the package) and the second parameter is just OUT instead of IN OUT.
    3) Not much, but I know that in PB8, our developers have said they have visibility now to the package when creating a DW - something they didn't have in PB7. Previously, we had to create a dummy standalone procedure that they would select and they would later modify the code to include the package prefix.
    Hope this helps a bit.

  • Error Importing data into switching data source using cim for CRS Oracle Commerce 11

    Hi All,
         I am getting the below error while importing data into the switching data source for oracle commerce 11 with CRS.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339319
    atg.cim.database.ImportDataTask
    4 Data Import:  Repository: /atg/commerce/locations/LocationRepository  Path: /CIM/tmp/import/switchingA-import3.xml Module: Store.EStore,Store.EStore.International  state:error
    **** info
    Fri Apr 17 12:18:59 IST 2015
    1429253339321
    atg.cim.util.AdminDatabaseUtils
    The administrative tables have not been initialized. Unable to update the administrator password for this datasource.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.database.ImportDataTask
    1 of 8 data imports had errors. Please check C:\OracleCommerce\ATG\ATG11.0\CIM\log/cim.log for more details.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    atg.cim.StepException: StartSqlRepositoryTemplateStep:Error Executing Step
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:112)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by :atg.cim.StepException: StartSqlRepositoryTemplateStep:Error Executing Template
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:158)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#2):atg.cim.CommandException: Error Executing Template
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:93)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#3):atg.cim.RunnerException: Error processing Steps.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:173)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#4):atg.cim.StepException: switchingAImportStep:Error Executing Step
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:123)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#5):atg.cim.StepException: switchingAImportStep:Error Executing Pre Navigation Validation
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.text.TextDisplay.processStep(TextDisplay.java:377)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.UIDispatchImpl.processStep(UIDispatchImpl.java:109)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:239)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#6):atg.cim.ValidatorExecutionException: AlwaysTrueValidator:Error Executing Validator Commands
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.executeValidations(StepExecutor.java:363)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.text.TextDisplay.processStep(TextDisplay.java:375)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.UIDispatchImpl.processStep(UIDispatchImpl.java:109)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:239)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error

    Hi,
    I think I faced the same issue when I trying to import data for international(multiple currency support) version of CRS/Motorprise and that time I just switched to use only English version import as last time I concluded was that there is some encoding issue in oracle database.
    Please check once you are using right version of oracle db which are supported by ATG 11.
    Hope this will help.

  • OIM 9.1.0.2 - Weblogic JDBC Multi Data Sources for Oracle RAC

    Does OIM OIM 9.1.0.2 BP07 support Weblogic JDBC Multi Data Sources (Services>JDBC>Multi Data Sources) for Oracle RAC instead of inserting the "Oracle RAC JDBC URL" on JDBC Data Sources for xlDS and xlXADS (Services>JDBC>Data Sources> xlDS|xlXADS > Connection Poll> URL) ?
    If yes, is there are any other modifications that need to be made on OIM, or just changing the data sources?

    Yes, it's supported. You install against one instance directly of the Rac Server. Then you update the config.xml file and the jdbc resource in your weblogic server with the full rac address. It is documented for installation against RAC. http://docs.oracle.com/cd/E14049_01/doc.9101/e14047/database.htm#insertedID2
    -Kevin

  • Using Oracle BI Server as a Data Source for Third Party Tools

    I have been researching how to use the Oracle BI Server as a data source for two days now. I have not yet found a solution to my problem.
    We have a remote user who is pulling data from one of our Oracle databases using automated tools. This data base is essentially being replaced by Oracle Analytics. However, we do not want this user to get at the physical tables of Analytics, rather, we want the user to be able to connect to the Oracle BI Server itself, and issue Logical SQL to pull data.
    Here are the requirements which I need to be fulfilled:
    1) The ability for a remote user to connect to the BI Server as a data source.
    2) The remote user must be able to do this on a Unix box.
    3) The remote user must be able to automate the process of issuing SQL to the BI Server. (Command line interface is preferable)
    4) The solution needs to be easily implementable, that is, this solution will be implemented many times over.
    I found many articles explaining how to set up a Windows box to connect to the BI Server in this way. However, these articles outline how to use tools like Excel and Microsoft Query to pull data from the BI Server. Our current user is using SQLplus.
    If possible, I would like the user to continue using SQLplus as the tool for connecting to and retriving information from our BI Server. I have tested using SQLplus many different ways to no avail. I have also tried using other tools, such as Oracle SQL Developer.
    Is there a program out there that will fulfill the needs I have outlined above? Or, does someone know of a way to use SQLplus to connect to the Oracle BI Server as a data source? Or, is there a series of solutions which will fulfill the needs outlined above?
    Edited by: user11177366 on Jun 11, 2009 11:46 AM

    I agree it would be inefficient but only because you are using OBIEE for something it was not designed to do. You are basically asking for a "DB feed" and that should designed using PL/SQL, DB Links, Web Services or whatever is your entreprise standard to send data from one system to another. Using OBIEE for this seems a bad architecture decision to me.You are correct, the BI Server is not really intended to be queried like another Oracle Database remotely. However, the reason we are trying to do it this way is twofold:
    1) We want to enforce data level security.
    2) The BI Server has been fine tuned for high performance.
    Forcing the end users to go through the BI Server rather than directly to the physical tables or other sorts of systems built on top solves both of these issues.
    I think you are wrong. I don't see why SQLPlus should be able to query the BI Server. The BI Server can sit on top of many different DBs not just Oracle, even flat files etc. So you can't really expect the BI Server to able to translate all that into Oracle SQL output so you can query it using SQLPlus. The BI Server is not an Oracle RDBMS.You're right again. The BI Server isn't an Oracle RDBMS, and I have been wanting to treat it like one. From the data I have gathered SQLPlus can't query the BI Server.
    However, my research has led me to realize that the BI Server supports the JDBC API. Therefore, (I should have went down this route in the first place) one can use the JDBC driver provided by Oracle (bijdbc14.jar) to interface with the BI Server. There are many programs and applications out there that support the JDBC API and let us connect to BI Server the way we want to. Furthermore, these programs are mostly platform independent, as they are mostly written in Java.
    Lastly, from what I understand the NQCMD program can be installed on any platform as well (provided by Oracle). This is another option to connect to the BI Server as well.
    Thanks for your help and your comments as I went through this process of discovery.

  • How to download and Install bos.loc.utf.EN_US Package for the Oracle BI locale setting english-usa language in Windows 7 64bit

    OBIEE 11G Installation error during configuration steps with message "Distributing Repository" failed.
    I searched lot of forums but all they say, install bos.loc.utf.EN_US Package for the Oracle BI locale setting english-usa language. From where we can download this package.
    Thanks in advance.

    But I am assuming that when I make the installer, the 32-bit Run Time Engine is appened with the installer, as show below
    Since from the picture you can see its including the support installers from '\Program Files (x86)\'
    The application runs queries to fetch data from database in SQL server 2008, and for that I am using a Microsoft SQL Native Client 2008 R2 64 bit ( this is the only version that installs on either PC, even the one on which I developed my LV Application).
    I am not using any driver, only toolkits for reports - and for that I un-checked the "Remove unused polymorphic VI instances" when making the executable, otherwise LV throws up an exception that share variable are not being included.
    Yes I did reboot every time after I ran the installation.
    Still getting the same error.

  • Dynamic Sources for a field in Oracle Reports

    Hi there,
    I am sure someone might have encountered this problem.
    I have six Queries in Data Model. Based on certain parameter value, I need to change the source field setting for each field in the report
    output.
    e.g in Report LayOut Model, I have a field F_1. The source for this field in
    the Property pallette is COL1 which is coming from Query1.
    I need to assign a new source based on parameter value for field F_1 to
    COL2 from Query2 or COL3 from Query3 or COL4 from Query4, COL5 from Query5, COL6 from Query6 in the Before Report Trigger. Is there any way to achieve this using srw or any other PL/SQL code?
    This way I can save a lot of devlopment time and use a single physical layout for six different reports and avoid the hassles of creating frames,
    repeating frame and formatting.
    Any help greatly appreciated.
    Let me know if something is not clear in the email. I will provide
    additional information

    Ashok,
    Looks like you've landed in the wrong Forum - this one is for Oracle HTML DB.
    Thanks,
    - Scott -

Maybe you are looking for

  • RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface

    HI All, I am trying to execute an RFC through JCO connection and getting the error "RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface". While debugging I have found that the actual cause of dump is a SQL command written in this

  • Why doesn't the image from my fillable form not appear when I save it as a PDF?

    I created a fillable form and when I save it as a PDF and view my image at the top does not appear. How can I fix this?

  • LENOVO ideapad u350 bsd problem

    Hi everyone, this morning I tried to boot my ideapad u350, but unfortunately i experienced the bsd (blue screen of death) with the following message "unmountable boot volume" and the following codes "STOP: 0X000000ED (0X858BCA08, 0XC0000185, 0X000000

  • SAP Upgrade 4.7ee to ECC 6.0

    Dear experts we are planing SAP Upgrade 4.6 C to ECC 6.0 on windows 2003 Server with Oracle Database please anybody explain prerequests and post upgrade activities and upgrade phase's. what are the phase's are inportant...to monitor Regards Bandla

  • I need help to configure gestures in iphone 5

    hi hope you can help me, I have a doubt about gestures in ios 7 my question is if you can do that on the iphone to close out an application as on the ipad without having to use the home button, such as when pelliscas with 3 ipad screen finger closes