FDM App Migration from 9.3.1 to 11.1.2.1  Error

Hi All,
We are migration a FDM App from V9.3.1 to V11.1.2.1.
1. We migrated the schema from DB of 9.3.1 to 11.1.2.1.
2. Migrated the Folder structure from 9.3.1 to 11.1.2.1.
3.In workbench added the Application .
4.When i try to update the schema its throwing up an error "-2147467259 - Data access error".
How can we solve it???

You are correct. The FDM 11.1.2.1 readme guide states that the supported upgrade path to 11.1.2.1 is from 9.3.3 to 11.1.2.1. If you are on 9.3.1.0, FDM should first be upgraded to 9.3.3 and the application schema updated from 9.3.1.0 to 9.3.3. The application can then be upgrated to the 11.1.2.1 schema level.

Similar Messages

  • What is the procedure for FDM App Migration from v9 to v11

    Kindly provide the procedure for Migrating of FDM application from system 9.3.1 to v11.1.2.1.
    and also Please share the documents if you folks having.
    Thanks in Advance.
    AVSR
    Edited by: 948364 on Jul 24, 2012 5:07 AM

    This is covered in the documentation pretty well I believe; however, here's the outline I followed...
    - Copy FDM databases to v11 database server. (I renamed mine to follow my v11 naming scheme, but ...)
    - Copy FDMApps folders over (i.e. Inbox files, scripts, etc)
    - Add the applications to the new FDM. (i.e. from the login screen, pick Add Application
    - Run Schema Update tool on your FDM applications
    - Run User Migration Tool on your FDM applications
    - Extract Oracle\Middleware\EPMSystem11R1\products\FinancialDataQuality\SharedComponents\DBSetup.zip to /Data/Scripts/Custom folder for each FDM App
    - Update Machine Profiles (Workbench) (Repeat for each application)
    - Add Adapter (Repeat for each application)
    - Configure Adapter (Repeat for each application)
    - Fix mappings*
    In v9, you don't have to map dimensions you don't use. In v11 you do.... Instead of doing it that hard way and manually updating hundreds of maps, I used SQL to do it. In my environment ICP, UD3, UD1, and UD2 generally were not mapped. You would need to update this accordingly.
    NOTE : I TAKE NO RESPONSIBILITY IF THE FOLLOWING CODE BLOWS YOUR STUFF UP. IT SHOULDN'T, BUT ...........
       Function    : Bulk Create Import File Format field creator
       Author      : Charles Beyer
       Date        : 5/10/2012
       Description : This routine will automatically create a new record for each Import File Format
                     Corresponding to the supplied information.  This may come in handy if you find
                     yourself needing to map a field that you have never needed before and MOST
                     of the locations are not actively mapping it yet.
                     It will also take care of the incrementing of the ImpSeq field automatically for you
                     Finally, it will create a * to * mapping to serve as a generic placeholder in the location's
                     map
       Input(s)    :
                     @FDMField = This is the FDM field name such as UD2
                     @FieldValue = This is the hardcoded value to start with such as [None]
    --Declare Working Memory
    DECLARE @FDMField varchar(50)
    DECLARE @FieldValue varchar(50)
    DECLARE @ImpSeq int
    --Initialize Working Memory
    SET @FDMField = 'UD2'
    SET @FieldValue = '[None]'
    SET @ImpSeq = (select top 1 ImpSeq from tBhvImpItemFile order by ImpSeq DESC)
    -- Insert a Import File Field corresponding to the supplied Field Name
    -- For each location that *DOES NOT* already have that field defined in their
    -- Import Format
    insert into tBhvImpItemFile (ImpGroupKey, ImpSeq, ImpFldFieldName, ImpFldFixedText, ImpFldStartPos, ImpFldLength)     
         select distinct (ImpGroupKey), 0 as ImpSeq, @FDMField, @FieldValue, 1, 1 from tBhvImpItemFile where ImpGroupKey not in (Select ImpGroupKey from tBhvImpItemFile where ImpFldFieldName = @FDMField)
    -- Since for some silly reason ImpSeq is not an identity field, we need to increment the values
    -- To play nice
    update tBhvImpItemFile set @ImpSeq = ImpSeq = @ImpSeq + 1 where ImpSeq = 0
    --Add a '* to *' type mapping
    insert into tdatamap (PartitionKey, DimName, SrcKey, SrcDesc, TargKey, WhereClauseType, WhereClauseValue, ChangeSign, Sequence,  VBScript)           
         select distinct partitionkey, @FDMField, '*','* to * Default Map', '*', 'Like', '*',0, 0, '' from tDataMap     
              where PartitionKey not in (select distinct partitionkey from tDataMap where DimName = @FDMField)

  • Migrating from crystal report 8.5 to 10.0 giving error 01S00:error

    migrating from crystal report 8.5 to 10.0 giving error
    I am working in migrating my cr application to 10th ver from the existing 8.5 where we have to explicitly make a query in query builder and then attach it. I was using dsn in ms odbc for oracle driver to connect the DB. Now in 10.0 i have removed the query file created using 8.5 query builder and trying to write directly to command editor. the report as stand alone is working fine. but when i try to generate the pdf using my vb application then on .export option it is giving error as "Logon failed.
    Details: 01S00:[Microsoft][ODBC driver for Oracle]Invalid connection string attribute". i think the problem might be with cddb_oracle.dll or crdb_oracle.dll file as i am using a evaluation version of crystal report 10. as input to dsn i am providing
    1.dsn
    2.usid
    3.database
    4.password
    what else is missing . plz help.....

    Well, you can migrate, you can not upgrade (semantics I suppose). E.g.; the RDC was deprecated in CR XI r1 and retired in CR 2008. Thus there is no way for you to upgrade to version 12 of the RDC as there is no such thing. So, from here, you have two options: migrate / port the app to .NET, or Java SDKs.
    Re. RDC, see my blog here:
    /people/ludek.uher/blog/2008/10/20/report-designer-component--past-present-future
    For porting the app to .NET, see this article:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0eb394f-931e-2b10-3b82-9413bfc3f457
    Ludek

  • Migrating from crystal report 8.5 to 10.0 giving error

    migrating from crystal report 8.5 to 10.0 giving error
    I am working in migrating my cr application to 10th ver from the existing 8.5 where we have to explicitly make a query in query builder and then attach it. I was using dsn in ms odbc for oracle driver to connect the DB. Now in 10.0 i have removed the query file created using 8.5 query builder and trying to write directly to command editor. the report as stand alone is working fine. but when i try to generate the pdf using my vb application then on .export option it is giving error as "Logon failed.
    Details: 01S00:[Microsoft][ODBC driver for Oracle]Invalid connection string attribute". i think the problem might be with cddb_oracle.dll or crdb_oracle.dll file as i am using a evaluation version of crystal report 10. as input to dsn i am providing

    migrating from crystal report 8.5 to 10.0 giving error
    I am working in migrating my cr application to 10th ver from the existing 8.5 where we have to explicitly make a query in query builder and then attach it. I was using dsn in ms odbc for oracle driver to connect the DB. Now in 10.0 i have removed the query file created using 8.5 query builder and trying to write directly to command editor. the report as stand alone is working fine. but when i try to generate the pdf using my vb application then on .export option it is giving error as "Logon failed.
    Details: 01S00:[Microsoft][ODBC driver for Oracle]Invalid connection string attribute". i think the problem might be with cddb_oracle.dll or crdb_oracle.dll file as i am using a evaluation version of crystal report 10. as input to dsn i am providing

  • Migrating from Weblogic 9.2 to 10.3.2 getting Error

    While Migrating from Weblogic 9.2 to 10.3, I am getting the following error. Please help me to solve this issue.
    <openjpa-1.1.1-SNAPSHOT-r422266:807362 fatal user error> org.apache.openjpa.util.MetaDataException: Errors encountered while resolving metadata. See nested exceptions for details.
    at org.apache.openjpa.meta.MetaDataRepository.resolve(MetaDataRepository.java:563)
    at org.apache.openjpa.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:308)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:248)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:219)
    at org.apache.openjpa.enhance.PCClassFileTransformer.transform0(PCClassFileTransformer.java:139)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.NullPointerException
    at org.apache.openjpa.meta.ClassMetaData.validateAppIdClass(ClassMetaData.java:1874)
    at org.apache.openjpa.meta.ClassMetaData.validateIdentity(ClassMetaData.java:1832)
    at org.apache.openjpa.meta.ClassMetaData.validateMeta(ClassMetaData.java:1749)
    at org.apache.openjpa.meta.ClassMetaData.resolve(ClassMetaData.java:1622)
    at org.apache.openjpa.meta.MetaDataRepository.processBuffer(MetaDataRepository.java:717)
    Truncated. see log file for complete stacktrace
    Dec 7, 2010 4:17:14 PM weblogic.utils.classloaders.ClassPreProcessor$ClassPreProcessorSupport preProcess
    WARNING: Error pre-processing class com.bac.fvo.model.exposure.RiskRatingExposure with weblogic.deployment.PersistenceUnitInfoImpl$ClassPreProcessorImpl@1074a5f'
    <openjpa-1.1.1-SNAPSHOT-r422266:807362 fatal user error> org.apache.openjpa.util.MetaDataException: Errors encountered while resolving metadata. See nested exceptions for details.
    at org.apache.openjpa.meta.MetaDataRepository.resolve(MetaDataRepository.java:563)
    at org.apache.openjpa.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:308)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:248)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:219)
    at org.apache.openjpa.enhance.PCClassFileTransformer.transform0(PCClassFileTransformer.java:139)
    at org.apache.openjpa.enhance.PCClassFileTransformer.transform(PCClassFileTransformer.java:120)
    at org.apache.openjpa.persistence.PersistenceProviderImpl$ClassTransformerImpl.transform(PersistenceProviderImpl.java:210)
    at weblogic.deployment.PersistenceUnitInfoImpl$ClassPreProcessorImpl.preProcess(PersistenceUnitInfoImpl.java:547)
    at weblogic.utils.classloaders.ClassPreProcessor$ClassPreProcessorSupport.preProcess(ClassPreProcessor.java:102)
    at weblogic.utils.classloaders.GenericClassLoader.doPreProcess(GenericClassLoader.java:357)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:338)
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:301)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:177)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:37)
    at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:107)
    at org.hibernate.ejb.Ejb3Configuration.classForName(Ejb3Configuration.java:1008)
    at org.hibernate.ejb.Ejb3Configuration.addNamedAnnotatedClasses(Ejb3Configuration.java:1080)
    at org.hibernate.ejb.Ejb3Configuration.addClassesToSessionFactory(Ejb3Configuration.java:871)
    at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:758)
    at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:425)
    at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:131)
    at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:227)
    at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:281)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1333)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1299)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:463)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:404)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:375)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:263)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:170)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:260)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:184)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:163)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeansOfType(DefaultListableBeanFactory.java:309)
    at org.springframework.beans.factory.BeanFactoryUtils.beansOfTypeIncludingAncestors(BeanFactoryUtils.java:270)
    at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.detectPersistenceExceptionTranslators(PersistenceExceptionTranslationInterceptor.java:122)
    at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.<init>(PersistenceExceptionTranslationInterceptor.java:78)
    at org.springframework.dao.annotation.PersistenceExceptionTranslationAdvisor.<init>(PersistenceExceptionTranslationAdvisor.java:70)
    at org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor.setBeanFactory(PersistenceExceptionTranslationPostProcessor.java:97)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1290)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:463)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:404)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:375)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:263)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:170)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:260)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:184)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:163)
    at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:881)
    at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:597)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:366)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:254)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:198)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1801)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3045)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1397)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:460)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:39)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
    at org.apache.openjpa.meta.ClassMetaData.validateAppIdClass(ClassMetaData.java:1874)
    at org.apache.openjpa.meta.ClassMetaData.validateIdentity(ClassMetaData.java:1832)
    at org.apache.openjpa.meta.ClassMetaData.validateMeta(ClassMetaData.java:1749)
    at org.apache.openjpa.meta.ClassMetaData.resolve(ClassMetaData.java:1622)
    at org.apache.openjpa.meta.MetaDataRepository.processBuffer(MetaDataRepository.java:717)
    at org.apache.openjpa.meta.MetaDataRepository.resolveMeta(MetaDataRepository.java:616)
    at org.apache.openjpa.meta.MetaDataRepository.resolve(MetaDataRepository.java:541)
    ... 95 more
    Thanks in Advance
    Sheejo Rapheal

    We have war application and we have antlr in preclasspath. have weblogic.xml entries as suggested. still it's going to OpenJPA.
    WARNING: Error pre-processing class com.bac.fvo.model.pricing.PricingVerificationPK with weblogic.de
    ployment.PersistenceUnitInfoImpl$ClassPreProcessorImpl@3d8b1e3'
    <openjpa-1.1.1-SNAPSHOT-r422266:891341 fatal user error> org.apache.openjpa.util.MetaDataException:
    Type "class com.bac.fvo.model.pricing.PricingVerificationPK" with application identity and no superc
    lass does not declare an id class. This type is not eligible for builtin identity, so it must decla
    re an id class.
    at org.apache.openjpa.meta.ClassMetaData.validateAppIdClass(ClassMetaData.java:1858)
    at org.apache.openjpa.meta.ClassMetaData.validateIdentity(ClassMetaData.java:1834)
    at org.apache.openjpa.meta.ClassMetaData.validateMeta(ClassMetaData.java:1751)
    at org.apache.openjpa.meta.ClassMetaData.resolve(ClassMetaData.java:1624)
    at org.apache.openjpa.meta.MetaDataRepository.processBuffer(MetaDataRepository.java:717)
    at org.apache.openjpa.meta.MetaDataRepository.resolveMeta(MetaDataRepository.java:616)
    at org.apache.openjpa.meta.MetaDataRepository.resolve(MetaDataRepository.java:542)
    at org.apache.openjpa.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:308)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:248)
    at org.apache.openjpa.enhance.PCEnhancer.<init>(PCEnhancer.java:220)
    at org.apache.openjpa.enhance.PCClassFileTransformer.transform0(PCClassFileTransformer.java:
    139)
    at org.apache.openjpa.enhance.PCClassFileTransformer.transform(PCClassFileTransformer.java:1
    20)
    at org.apache.openjpa.persistence.PersistenceProviderImpl$ClassTransformerImpl.transform(Per
    sistenceProviderImpl.java:210)
    at weblogic.deployment.PersistenceUnitInfoImpl$ClassPreProcessorImpl.preProcess(PersistenceU
    nitInfoImpl.java:620)
    at weblogic.utils.classloaders.ClassPreProcessor$ClassPreProcessorSupport.preProcess(ClassPr
    eProcessor.java:102)
    at weblogic.utils.classloaders.GenericClassLoader.doPreProcess(GenericClassLoader.java:341)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:322)
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:285
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:
    56)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:
    42)
    at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:107)
    at org.hibernate.ejb.Ejb3Configuration.classForName(Ejb3Configuration.java:1008)
    at org.hibernate.ejb.Ejb3Configuration.addNamedAnnotatedClasses(Ejb3Configuration.java:1080)
    at org.hibernate.ejb.Ejb3Configuration.addClassesToSessionFactory(Ejb3Configuration.java:871
    at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:761)
    at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:425)
    at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersi
    stence.java:132)
    ApplicationContext.xml is
         <!--
              Activates various annotations to be detected in bean classes: Spring's
              @Required and @Autowired, as well as JSR 250's @PostConstruct,
              @PreDestroy and @Resource (if available) and JPA's @PersistenceContext
              and @PersistenceUnit (if available).
         -->
         <context:annotation-config/>
         <!--
              PostProcessors to perform resource injection according to the JPA specification
         (@PersistenceContext, @PersistenceUnit).
         -->
         <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"/>
         <!--
              Post-processor to perform exception translation on @Repository classes (from native
              exceptions such as JPA PersistenceExceptions to Spring's DataAccessException hierarchy).
         -->     
         <bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
              <!--
              Will automatically be transactional due to @Transactional.
              EntityManager will be auto-injected due to @PersistenceContext.
              PersistenceExceptions will be auto-translated due to @Repository.
         -->
         <!-- enable the configuration of transactional behavior based on annotations -->
         <tx:annotation-driven transaction-manager="transactionManager"/>

  • ORACLE APPS migration from AIX to Linux

    Dear All,
    Please help me to understand the following scenario of ORACLE APP'S migration.
    One of my client currently using Oracle APP'S ver 11.0.3 DB version 8.0.5 running on IBM AIX platform.
    Currently three customized module under operation with 50 forms and reports.
    Also some external application integrated with the current oracle financial 11.0.3.
    The client is more interested to migrate their platform to linux based server.
    They wants to move the current set up to the new version EBS along with the existing customized module. (My question is it possible to migrate the customized module to another platform. AIX to Linux)
    If so , where i can find the right document to explore more idea of this scenario of migration.
    Thanks in advance.
    Regards,
    Ram.
    Dear all,
    looking for experts help is this regard.
    Thanks.
    Ram
    Message was edited by:
    rambtn

    ram,
    I am going to do the similar upgrade with replatform at the same time. I collect the information from forum and finally get an indicator to how to do it. You need to read the "Upgrading the Oracle Applications", B19297-01
    "Installing Oracle Applications" B19296-01 and
    "Maintenance Utilities" B19300-01
    The documentation mentioned the way for upgrade an 11.0 version of EBS to latest release including some pre-upgrade tasks including the database version upgrade to work with 11i, etc.
    Hope this help.
    mcken

  • FDM Data Migration from 11.1.1.3 to 11.1.2.2

    Hi
    This is the procedure i am going to follow ,can u tell me whether it is correct or not ?
    1.     Create FDQM application in Target machine using FDQM workbench client.
    2.     Login to Source Machine where FDM is installed and launch workbench client.
    3.     Export as XML file.
    4.     Login to Target machine where FDM is installed and launch workbench client.
    5.     Import as XML file.
    6.     Login to Source RDBMS server and take a backup of the SQL DB.
    7.     Restore the SQL DB in the target machine.
    8.     Copy the Application path folder structure from Source machine to target machine.
    use the <Add Application> option to add the application to the 11.1.2.2 environment. (Is this required if we have already created a application in target system )
    Is anything esle i have to do other than these. Please let me know.

    This process is not correct. This is what you need to do:
    a) In the source environment choose <Add Application> and login
    b) Highlight the application to be moved to 11.1.2.2 and choose "modify"
    c) Note the Application Path. The application folder will need to be copied to the application folder share in the 11.1.2.2 environment
    d) Click on the database tab and note the database information
    e) Move the database from the 11.1.1.3 environment to the 11.1.2.2 envionment
    If this is SQL Server, backup the DB and restore it in the 11.1.2.2 db environment
    If this is Oracle, create a new DB Schema in the 11.1.2.2 enviornment and in the 11.1.1.3 environment use the DB tools to export the current DB to a .dmp and import into the new schema
    f) In the 11.1.2.2 environment use "<Add Application>"
    g) Enter the name for the application, path to the copied application folder and choose the "FDM" application group
    h) Click on the database tab and enter the database information for the db in the 11.1.2.2 environment
    i) Run the schema update utility to update the DB from the 11.1.1.3 level to the 11.1.2.2 level.
    Need to Migrate an FDM Application Including Data (Doc ID 806173.1)

  • How do I integrate data and apps migrated from my old MacBook to my newish MacBook Pro?

    Data and applications were migrated successfully from my old MacBook to my newish (three years old) MacBook Pro. However, I can get to the data and apps from only one computer at a time. How do I integrate documents from the old machine to the new? How do I include apps I used before such as Office in the configuration of the new computer?
    I also do not know how to switch back and forth from one device to the other (I have to choose when I boot up), which makes this situation all the more inconvenient.

    I don't know how Firefox installs, but if you just dragged it into the Applications folder, you can drag it to the Trash and empty it.
    If it had an installer, then you need to use the uninstaller provided by the developer.
    What are the other "files that may not be removed?" It doesn't sound like much of a good idea.

  • Problem with app migration from JDeveloper 11.1.1.0 to JDeveloper 11.1.1.2

    Hi Fusion developers,
    I'm migrating an application to JDeveloper 11.1.1.2 from JDeveloper 11.1.1.0 environment.
    I've installed the JDeveloper 11.1.1.2 Studio package on a new laptop with Windows XP Pro service pack 3
    and copied the application from a JDeveloper 11.1.1.0 environment. I opened the application with JDev 11.1.1.2
    and JDev converted the application.
    When I run the application, I received a ClassCastException from MyFaces Trinidad. I've pasted the stacktrace
    below.
    I checked the 11.1.1.2 release notes and didn't find any Trinidad issues. Does 11.1.1.2 use a different Trinidad
    release? If so, are there Trinidad config settings that I should modify?
    Thanks,
    Bob
    java.lang.ClassCastException: org.apache.myfaces.trinidadinternal.config.xmlHttp.XmlHttpConfigurator cannot be cast to org.apache.myfaces.trinidad.config.Configurator
         at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.init(GlobalConfiguratorImpl.java:366)
         at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:199)
         at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.getExternalContext(GlobalConfiguratorImpl.java:304)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$CacheRenderKit.(FacesContextFactoryImpl.java:86)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
         at oracle.adfinternal.controller.application.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:56)
         at oracle.adfinternal.controller.application.model.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:70)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:260)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Please refer
    http://docs.oracle.com/cd/E26098_01/install.1112/e17074/ojdig.htm#BDCIHDBA

  • App Migration from 2.0 to 3.1

    Hi -
    Is it possible to migrate application from apex 2.0 directly to 3.1? Are there any watch-outs?
    Regards,
    Tom

    Hello,
    According to the doc it's possible to upgrade an earlier release of APEX (HTMLDB) to 3.1: http://download.oracle.com/docs/cd/E10513_01/doc/install.310/e10496/overview.htm#CEGEFBFI
    About watch-outs: APEX is pretty good in installing/upgrading, however I would always recommend to test your application you build in 2.0 on 3.1 first (for ex on apex.oracle.com or in another dev environment).
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • BI Apps Migration from 7.9.6.1 TO  Apps 7.9.6.3

    Hi,
    Currently we using Bi Apps 7.9.6.1 and want to update 7.9.6.3 and we also want to upgrade OBIEE10 (10.1.3.4.1) to 11g (OBIEE 11.1.1.5.0).
    Is it possible? if it is possible then Oracle Metalink or any reference document please.
    Want to Upgrade to:
    1- BIEE 11.1.1.5.0
    2- OBIA 7.9.6.3
    3- INFORMATICA Version: 9.0.1
    4- Dac Build AN 10.1.3.4.1.
    5- DATABASE (Data warehouse) : 11.2.0.1.0
    CURRENT SYSTEM IS :
    1- BIEE 10.1.3.4.1
    2- OBIA 7.9.6.1
    3- INFORMATICA Version: 8.6.1
    4- Dac Build AN 10.1.3.4.1.
    5- DATABASE (Data warehouse) : 11.2.0.1.0
    6- Source System: R12.1.2 Database: 10.2.0.3
    Regards

    Yes it is possible, you need to rpd,catalog and Informatica need to version upgrade..
    For rpd and webcat you can go with ua.bat
    For informatica if you install on existing box, the installation ask you to upgrade say Yes thats it..
    Let me know for issues, I'm there to help
    mean time will search docs for these 2
    If helps pls mark
    Edited by: Srini VEERAVALLI on Dec 17, 2012 8:27 AM
    for informatica check this
    Re: Regarding Informatica Upgrade
    for ua
    http://docs.oracle.com/cd/E23943_01/upgrade.1111/e10125/toc.htm
    Edited by: Srini VEERAVALLI on Dec 17, 2012 8:29 AM

  • Migrating from 10.3.2 to 12.1.3 - appc error

    Hello.
    I am trying to build an app that was originally on weblogic server 10.3.2 with jdk1.6.0_45 on weblogic 12.1.3 with jdk1.8.0_25.
    When I run appc I am getting an error in one class in the hashcode method. The error is :
         [java] <Dec 30, 2014 3:03:51 PM WET> <Info> <J2EE> <BEA-160186> <Compiling EAR module "ClassifGroupToCatgr.jar">
         [java] java.lang.VerifyError: Expecting a stackmap frame at branch target 33
         [java] Exception Details:
         [java]   Location:
         [java]     <package omitted >/ClassifGroupToCatgrPK.hashCode()I @19: ifnonnull
         [java]   Reason:
         [java]     Expected stackmap frame at this location.
         [java]   Bytecode:
         [java]     0x0000000: 2ab4 0040 9a00 322a 2ab4 0002 c600 0a2a
         [java]     0x0000010: b400 03c7 000e 1102 9ab5 0040 2ab4 0040
         [java]     0x0000020: ac2a b400 02b6 0004 101f 682a b400 03b6
         [java]     0x0000030: 0004 60b5 0040 2ab4 0040 ac           
         [java]   Stackmap Table:
         [java]     same_locals_1_stack_item_frame(@22,Object[#5])
         [java]     same_frame(@54)
         [java]
         [java]     at java.lang.Class.getDeclaredFields0(Native Method)
         [java]     at java.lang.Class.privateGetDeclaredFields(Class.java:2575)
         [java]     at java.lang.Class.privateGetPublicFields(Class.java:2606)
         [java]     at java.lang.Class.getFields(Class.java:1549)
         [java]     at weblogic.ejb.container.persistence.CMPBeanDescriptorImpl.<init>(CMPBeanDescriptorImpl.java:139)
         [java]     at weblogic.ejb.container.deployer.DeploymentInfoImpl.initializeBeanInfos(DeploymentInfoImpl.java:475)
    I apparently fails beacause of the hashCode method of the ClassifGroupToCatgrPK class.
    This class belongs to an EJB spec 1.1 bean that has some deployment descriptors from the weblogic 5.1 era.
    The offending method code is below :
    public class ClassifGroupToCatgrPK implements Serializable {
        public Integer idCategory;
        public Integer idClassifGroup;
    public ClassifGroupToCatgrPK() { }
        public ClassifGroupToCatgrPK(Integer idCategory, Integer idClassifGroup) {
            this.idCategory = idCategory;
            this.idClassifGroup = idClassifGroup;
        public int hashCode() {
            if (idCategory == null || idClassifGroup == null) {
                return 666; //just to be safe
            return idCategory.hashCode() * 31 + idClassifGroup.hashCode();
        public boolean equals(Object that) {
            if (that == null || !(that instanceof ClassifGroupToCatgrPK)) { return false; }
            ClassifGroupToCatgrPK tmp = (ClassifGroupToCatgrPK) that;
            return this.idCategory.equals(tmp.idCategory) &&
                   this.idClassifGroup.equals(tmp.idClassifGroup);
        public String toString() {
            return "{ClassifGroupToCatgrPK: idClassifGroup=" + idClassifGroup +  ", idCategory=" + idCategory + "}";
    if I replace the hashCode method with :
    public in hashCode() {
         super.hashCode();
    No error is output. Seems that the error is related to the null checks inside the method, but I don't want to change it because its leagacy code, and would rather find the cause of the error, as it may occur on other beans that probably cannot be changed.
    Help please !

    Hi ,
    You cannot upgrade a domain that includes products not available in the target version. In your example, it appears that the domain has a BI Composer-related template that has been applied which is not available in the 12.1.1 version (12.1.1 is a WLS-only release).
    Thanks,
    Sharmela

  • Application Migration from HP-UNIX to SUN Solaris

    Hi Gurus,
    Need help on the application migration from HP-UNIX to Sun Solaris . Copied the filesystems APPL_TOP, OA_HTML, OA_JAVA, COMMON_TOP/util and COMMON_TOP/_pages from SOURCE( HP) to TARGET SUN-solaris as per 238276.1
    Now trying to clone Autoconfig XML context file on the TARGET System
    perl adclonectx.pl migrate java=\opt\java1.4 \
    contextfile=\ul01\app\applmgr\lasrx\admin\LASRX_fiapd4.xml
    Error: source context file ul01appapplmgrlasrxadminLASRX_fiapd4.xml does not exist.
    Questions:
    ======
    1. we still need to install jdk in the TARGET or copy the file system from source(HP) to target( Solaris) bring the JDK and how to check jdk on Solaris?
    2. In clone autoconfig XML, contextfile=? Is the location of SOURCE or TARGER?
    3. I think running above with root permission.
    Please help somebody on this issue.
    Thank You.

    Hi Hussein,
    I need your help on the Application migration from HP-UNIX to SUN Solaris. As per the note 238276.1 we dont copy $806_ORACLE_HOME for cross platform migration, Copied all the filesystem from SOURCE to TARGET but rename it because it suppose to create while installing Middle tier.
    Issue:1
    =====
    When i start to set environment like below, i get the error and
    . /ul01/app/applmgr/lasrx/APPSORA.env
    ksh: /ul02/app/oracle/lasrx/8.0.6_new/LASRX_fiapd4.env: not found
    I am trying to install Middle Tier Technology Stack on SUN server ( Migrating from HP-UNIX to SUN solaris)
    Issue 2: ( Display error) while install Tech Stack
    =====
    ./rapidwiz -techstack
    Rapid Install Wizard is validating your file system......
    >> Wizard requires the DISPLAY variable to be set.
    >> Please set your DISPLAY variable and restart Rapid Install Wizard.
    even i can not see
    echo $DISPLAY because not set the environment.
    Need your help and suggetions on this.
    Thank You.

  • Problem with some queries after migration from MS Access

    Hi everyone!
    We've just finished a migration from a MS Access database and we notice some errors when running some queries like :
    Query1:
    SELECT A.field1, A.field2, B.field1 as FieldTmp
    FROM A,B
    where (B.field1 <=10);
    Query2:
    SELECT Query1.field1, Query1.field2, Query1.FieldTmp
    FROM Query1 LEFT JOIN Table3
    ON (Table3.field1 = Query1.Field2) AND
    (Table3.field5 = Query1.FieldTmp)
    WHERE ((Table3.field5) Is Null)
    ORDER BY Query1.field1, Query1.FieldTmp;
    The Query1 runs as expected, but when I try to run the Query2 I got a ORA-00904 error message. If I remove the (Table3.field5 = Query1.FieldTmp) statement or modify to compare with another field (as instance, field2) everything goes fine.
    If I modify the first query to a make-table query, the Query2 request runs as desired too.
    Is there anything that we can do to keep the queries statement as it is when using the MS Access DB?
    Thanks in advance,
    Elaine Viel Denadai

    Hi Turloch! Thanks for your help!
    Those SQL Statements were extracted from the MS Access application that we will continue to use to access the data , now on an Oracle Database.
    I don't know what I can do to make this kind of statements works as it is on Access database. The first query, that I called Query1 works fine on Oracle, I just mentioned it because the 2nd Query , named Query2, use it.
    I'm not able to understand why when I change the 1st. query to a "make-table" query the Query2 works as desired, but if I keep the Query1 and Query2 as it is on the MS Access Application I got the ODBC error message and the ORA-00904 error message , related (I think!) to the FieldTmp field used on the LEFT JOIN statement (AND).
    As I told before, if I change the AND clause to compare to another field, as instance, field1 :
    FROM Query1 LEFT JOIN Table3
    ON (Table3.field1=Query1.Field2) AND
    (Table3.field5 = Query1.Field1)
    it works.
    Please, is there anything that I can do to keep the MS Access Application unchanged?
    Oracle = 8.1.6
    Oracle ODBC Driver = 8.1.6.4
    Oracle Migration Workbench = 1.3.1
    Thanks in advance,
    Elaine Viel Denadai

  • Migrating from Sybase 11 to Oracle 10G : Data not Captured

    Hi,
    We are working on an interesting customer engagement - one part of the effort is to migrate our Customer's Database. Our Customer is using the Sysbase 11 Database - we are planning to migrate this to Oracle 10G.
    We are using the latest Migration Workbench - 10.1.0.4.0. We created a new user in one of our local DB Instances & used this credential to login to the Migration Workbench tool. We have the Source Files for the Sysbase 11Database.
    We tried to capture the Source Model - unfortunately, the Tool claims that the Objects have been migrated, while the Source is not captured at all. The Error Log is alos silent about any problems.
    We are flummoxed by this error as we have successfuly migrated from Sysbase in the past, but never encountered this error.
    Can you guuys please help us out with this ?
    Please do let me know if I need to post more information
    Thanks,
    Sandeep

    Sandeep,
    Have you used this user which holds the omwb repository before for a migration? When you connected the first itme, did you get a message, that the repository tables did not exist and would you like to create them?
    Are you using the connected or disconnected source model load?
    Donal

Maybe you are looking for

  • MacBook losing network connection

    I realize this may be a wireless problem...maybe a hiccup somewhere in the network, but I have random laptops (10.6.4 - but this occurred in prior versions of the OS - so it's clearly not an OS specific issue?) that lose their connection to the wirel

  • Dynamic creation of table with variable field-names

    HI I am looking for a way in order to create a table during runtime. The problem is that the field names of the table are provided in another table. TO illustrate the case at hand, an example: The initial table contains the fields UserID - attribut_n

  • How can I put move requests in stuck and continue working?

    I have a map and a unit moving on this map, I wont to give him 2 moving orders and continue for my another staff. this is part of my program so I try to explain to you the parameters of this function in the way I choose to represent it: destination:S

  • Pricing condition MM in reference to a SD condition : vendor field in VK11?

    Hello everyone, I am facing a problem with a MM condition type which has been defined in the custo with a SD "Reference condition type" (Reference application "V"). If I want to create the condition record for this condition, I have to use VK11 trans

  • How do I get "#" round dates in an "Insert into " query

    I am trying to use the "Insert Into" type "CFQUERY" and insert a date into a field.This date has been input by the user on a web form using the syntax "<input type="text" name="DateInTheatres"...> The query is <CFQuery datasource="blah"> Insert into