Steps to export various objects created in v10.1.3.5.6 ODI + steps to import back in v11.1.1.7 ODI

All,
As we all do these days and for reasons mostly associated with budget constraints, I have been asked to wear a brand new hat - the "ODI Guru Hat" - at my client's site to facilitate the migration of their v11.1.1.x Hyperion EPM implementation to a v11.1.2.3.5xx Hyperion EPM implementation.
The v10.1.3.5.6 ODI objects\processes are currently set up to refresh a v11.1.1.3.x Planning application currently fall into 2 categories:
1. metadata management (ie, updating the Planning application with the latest Account and Entity dimension changes from the SAP ERP); and,
2. data management (ie, updating the Planning application with the latest data file from the SAP ERP).
The requirement at hand involves replicating everything currently set up to operate under the v10.1.3.5.6 ODI into a v11.1.1.7.x ODI instance. The v11.1.1.7.x ODI instance has been installed on a different server to the one on which v10.1.3.5.6 ODI instance is installed. Brand new master and work RDBMS repositories have also been created to host the v11.1.1.7 ODI
So far and not knowing much about ODI, I have exported as many objects as I could locate under the Designer\Operator\Security\Topology components of the v10.1.3.5.6 ODI instance before importing them back (using the Duplication method) into the v11.1.1.7.x ODI instance. Once imported, I have re-pointed the paths to different directories on the new servers.
I would like to know if there are any other steps I should be aware of and\or look into. Better still, I would appreciate it enormously if someone could point me into the right direction as to any documented best practice steps to follow to perform migrations from one ODI version to another, when both ODI instances have been installed on different servers.
Thanks in advance,
Cheers,
JBM

Hey,
Just export and import won't work with different versions. Using Upgrade utility(ua.bat), we need to upgrade to current version.
We should upgrade the ODI from 10g to 11g, then we can export objects from one environment to another.
Check the below link to upgrade ODI::
11g Oracle Data Integrator - Upgrading from 10g - Part 4/11g - ODIExperts.com
Thanks,
Mady

Similar Messages

  • Exporting Parameters while creating objects

    Hi,
    While creating objects to a class,we can see few parameters with the object created.Any idea about where the parameters are coming from and what are the values to be passed for it should be helpful.
    For ex:
    I am creating a object for CL_DD_DOCUMENT.
       CREATE OBJECT e_dyndoc_id
         EXPORTING
           STYLE  =
           BACKGROUND_COLOR =
           BDS_STYLESHEET =
           NO_MARGINS =
    I am able to see BDS_STYLESHEET in attributes.
    But where I can see the other parameters?How to set the values for those parameters?

    possibel styles:
    'ALV_GRID'.
    'ALV_TO_HTML'.
    'TREE'.
    'STAND_ALONE'.
    taken from the local class implemented within CL_DD_DOCUMENT
    how to reach this code.
    go to the source view of the constructor method of cl_dd_document.
    double click on method "initialize_document"
    double click on method "get_gui_properties"
    in the following statement there.
    call method resources->get_gui_properties
    now you will see these styles.
    Regards
    Raja

  • System object create problem in EP 7.3 Version.

    Hi Exports,
    i was created system object in sap ep 7.3 but  i got some error please give me solutions...........
    Connection Test for Connectors:
    : Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the back-end application using the connector defined in this system object
    Results
    Default alias retrieved successfully
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Thanks
    Reddy

    Hi,
    System Object is a set of connection properties to represent an external or SAP systems (SAP R3, /CRM/BW) used to retrieve data into portal iViews. We can create a System Object in any one of the three ways
    The system object can be created from either of the following:
    u2022Based on System Template (Template)
    u2022Based on Portal Content      (PAR)
    u2022Coping Existing Systems     (System)
    The Required Steps to Create a System Object in the portal are as :
    1.          System Alias settings
    2.        Connector settings
    3.        ITS settings
    4.        WAS settings
    5.    User Management Settings
    This may help
    http://wiki.sdn.sap.com/wiki/display/EP/HowtoCreateSystemObjectinthePortalforConnectingtoSAPbackend+System
    https://wiki.sdn.sap.com/wiki/display/EP/User+Management
    Forum links:
    SSO problem for system
    Regards,
    Jyothi.
    Edited by: Venkata Naga Jyothi on Dec 14, 2011 9:58 AM
    Edited by: Venkata Naga Jyothi on Dec 14, 2011 10:04 AM

  • Export Schema Objects

    I have Oracle XE in dev machine with objects (tables, sequences, views indexes etc) in a chaluwa schema. We want to test on a mock production machine with Oracle Enterprise Manager 11g (just downloaded it). First how do I use the XE interface (not code like in the link in the previous post) to export these objects.
    So far, I used XE's DDL creation utility to generate the code, I tried to run this code on an empty test schema in my dev machine to see if the DDL statements will replicate / reproduce the objects from the chaluwa schema, but I got errors. The DDL statements where not arranged in sequence, a foreign key field been created in a table was referencing a table not yet created. I wouldn't want to start tampering with the DDL code to rearrange it. In XE, I could make a schema by creating a new user, I 'v not been able (at least so far) to do this (create a schema) on the mock production machine running Oracle Enterprise Manager 11g.
    so the issues are :
    1. need to export the objects from chaluwa schema in the Oracle XE in my dev machine.
    2. create a schema on the mock production machine running Oracle Enterprise Manager 11g where I will put the exported objects from step 1.
    3. put the objects into the schema created in step two.
    Sorry if my questions were stupid, I really need your help. Cheers

    Hi,
    I have two XE at different machines, one in my office PC(production), and another at my laptop(dev), I use a lot of the datapump utility at XE, and it is great.
    And it is very simple to use, and it does have much more options of usage than my simple one, but my one works
    In case I would like to export all my data at machine1 to machine 2(and the schema name is chaluwa
    1. on machine1
    I create a directory by the OS at my machine1, like 'c:\chaluwa_080914'
    then I go to the sql command line(sql plus),
    sqlplus / as sysdbasql> create or replace directory anyname as 'c:\chaluwa_080914';
    sql> directory created.
    sql> grant read, write on directory chaluwa_080914 to chaluwa;
    sql> grant successed
    sql> exit;
    --- now you are back to the windows command line again
    c:\Document and Settings\peteryzhang> expdp system schemas=chaluwa directory=chaluwa_080914
    password: ******
    and then they will export all stuffs to the export file, the default name will be export and a log file.
    copy the directory(with its data exported) chaluwa to machine2;
    2. import the file you just exported to another database
    at the machine 2 , copy the chaluwa_080914 to a place, like 'd:\chaluwa_080914'
    and then go the sqlplus
    connect as sysdba
    sql>create user chaluwa identified by password default tablespace USERS(note: better the use the same tablespace as from machine 1).
    sql> user created.
    sql> grant connect, resource, dba to chaluwa ( that is what I usually use, maybe you not need the dba role, but you need some more proviliges for successfully import the export file, like, it depends, but, let's say, if you don't any right to create triggers, you cannot import triggers to it, it will fail)
    sql> success
    sql> create or replace directory chaluwa_080914 as 'd:\chaluwa_080914';
    sql> directory created.
    sql> grant read, write on directory chaluwa_080914 to chaluwa;
    sql> success;
    sql> exit;
    c:\document and settings\hostname>: impdp system schemas=chaluwa directory=chaluwa_080914
    and then the password.
    and at that, you will be successfully import the schema, and there's only one error, the user is already created, but it is Ok, fine.
    if you want to import the file into a different schema, you can do that, and if you need to import the file into a different tablespace, you can do that, there's some options,
    you can reference the doc at the*Xe two day DBA guide* and oracle database utilities:
    two day DBA
    http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/impexp.htm#BCEEDCIB
    Oracle Database Utilities
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/part_dp.htm#i436481
    Peter
    Edited by: PeterCN on Sep 15, 2008 10:05 AM

  • Steps to export B2B Project and Source Control.

    Hi,
    I need steps to export a B2B project for source controlling it and deploying the code to higher environments.
    Right now the coding is done in DEV , We want to push it to TEST.
    Thanks for all the help.
    Regards,
    Sid.

    Documents which we have created newly will also be exported, provided it is part of the agreement.
    another answer
    First time all "export-import". Every change - incremental export and import

  • How to Execute the Business objects created in ABAP from webDynpro applicat

    Wht is the steps , or where the help documents are available for accessing the Business objects created in ABAP or R/3 systems from webDynpro project.

    Hello Vishal,
    I couldn't find any useful documents for your purpose.
    However i had a similar requirement and had implemented the same using GCP APIs. But before i send you the code help, i would like to know your exact requirement. What are you trying to achieve? Are you just wanting to execute the BO and get the result? Or is your requirement has got something more to do?
    Regards,
    Sudeep.

  • How to export each object as a separate image?

    I do not have a wealth of experience with Illustrator, and was given a website design to translate into html/css content. I'd really like for someone to tell me that there's a nice, simple way to export each OBJECT as its own FILE (png, bmp, jpg, realistically anything will work for these buttons). Is there a plugin or built-in feature that will accurately do this?
    I noticed that it can be SLICED by GUIDES, but that seems counter-intuitive. Why not just use the standard size of each object to crop than by creating a huge grid of guides?
    Any help or suggestions would be greatly appreciated; I'm not having the greatest first experience with Illustrator thus far.

    I do this by hiding all the objects except for the one that I want to export. The way I set up my layers when creating a file makes it easy for me to do this; several clicks at the most. However, I can easily imagine scenarios where this method would be a real pain.
    Here is how I think it should work: it should export whichever object is selected. If you want to export the whole thing, then either select the whole thing or select nothing.

  • Import/Export Single Object

    Hi Folks,
    i tested imort/export for SWCV it is working fine...but when i m trying it for single object like namespace etc...
    I face the problem while exporting/importing a namespace in IR.
    1) I exported a namespace using menu Tools->Export design Objects
    2) Selected the software Component and Mode as using file system in the wizard
    3) Selected my namespace which i want to export
    got the message exported successfully.
    Export Path: D:\usr\sap\PL2\SYS\global\xi\repository_server\export
    File: XI3_0_TEST_2.0_of_xxx.com-nsps.tpz
    <b>I tried to import the same namespcae back into same IR.</b>
    and followed these step.
    1) Copied the .tpz file into import folder.
    2) then using the menu tool->import design Objects i selected my .tpz file
    3) Got the following msg.
    Import source XI3_0_TEST_2.0_of_xxx.com-nsps.tpz imported successfully. All imported design objects integrated successfully 3 import object(s) imported successfully 
    Import file moved to importedFiles\XI3_0_TEST_2.0_of_xxx.com-nsps_2007-02-13_02-41.tpz
    <b>But i was not able to see the imported namespace.</b>
    Also followed this document
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/content.htm
    Can u guide me plz.
    Sachin

    <b>Sreeram</b>
    I m not trying to move it form DEV to QA.
    I m exporting the namespace from DEV. say http://abc.com/xi/test of SWCV  Test of abc.com.
    and then i m trying to import it back to Same DEV box.
    I m getting the sucessfully imported message but not able to see the namespace.
    I tried deleting the namespace after exporting and then importing.
    But still i can't see it.
    However in cache notification and Tools->Find Transfer it is showing that it is sucessfully imported.
    I think it might be the issue with active version... can u help me out.
    <b>Chandra</b>
    i m not changing the name of anything. i got the above message as well, but not able to see the imported object.
    Sachin
    Message was edited by:
            Sachin Dhingra

  • System Copy using sapinst - Step Migration Export  SAP:MIGSDM:700:*:*:*

    Hi we are trying to do a system copy of a ABAP/ Java Addin  - 70 SR3 from one system to another.
    We took the sapinst option for Central BASED on ABAP and JAVA
    We took the save restore option.
    We are curretly stuck at the step Migration Export.  Looking for the LABEL.ASC  for
    SAP:MIGSDM:700:::*
    We took the java option to create the SDM export on the source system.  My export location has the following :
    LABELIDX.ASC
            JDMP
            SDM
            APPS
    LABEL.ASC
    SAP:JMIG:700:::*
    Any ideas / suggestions?
    Regards,
    Brian

    > I just started sapinst and selected "export central system based on ABAP + Java".
    > There is an entry in the main export folder
    > LABELIDX.ASC
    > -ABAP
    > -JAVA
    >
    > ABAP folder is empty
    This is possible since you may have chosen the "database specific" copy. So the copy process will only pack the Java part which you will use later for the target system.
    > JAVA folder has 3 files 
    > LABEL.ASC_
    >  - SAP:JMIG:700:::*
    > LABELIDX.ASC
    >  -JDMP
    >  -SDM
    >  -APPS
    Looks good!
    If the export is finished you can start sapinst again on the target system, select again ABAP + Java and "database specific copy", the system will then start with the installation and stop at some point to restore the database. After that is done continue with sapinst.
    Markus

  • Appraisal Objects created in 'Approved' Planning status

    Good day,
    When creating Appraisal Template objects, they are created in 'Approved' Planning Status. We want them created in 'Active' Planning Status. We suspect this is the reason why we can't configure/define the process configuration for our template under IMG path: Personnel Management > Personnel Development > Objective Setting and Appraisals > Define Tabs and Process Configuration for Template. The system gives the following error message: "No process defined for form <template name>"
    We've tried using program RHAKTI00 to make these objects (VA VB VC) active but are facing a further issue that it makes appraisal template unreleased. Vice versa when i released the template, it makes objects planning status to reset to approved from active. A similar issue has been posted in the below thread but an answer was not provided.
    Objects created in 'Approved'  Planning status
    Kindly assist.
    Best regards
    Hardus

    >
    Chris Thomas wrote:
    > Michael - thanks as always for your insight and willingness to help out.
    >
    > Let me explain further.  Duke currently has a third party performance management system that allows the users to manage their Expected Job Results (EJR) in a catalog (translate to Qualifications catalog in R3).  In a separate step, the manager can select a single EJR and on the other side of the screen select all , or a subset of their employees to assign the EJR to.
    >
    > Extrapolate this to SAP PM.  We have created a Criteria group in our template and have experimented with adding qualifications via the BADI and this works fine EXCEPT that the manager would have to do this in each employee's appraisal, individually.  We are developing the tool to build and maintain the qualification catalog and assign to the employee via Manager Self Service, we are hoping to be able to facilitate the assignment of the EJR/Qualification into the employee's appraisal template.   The EJR's (Q objects) will be associated to a quadrant in their catalog: QK's - Clinical Quality, Customer Service, Finance and Work Culture
    >
    > The criteria group, Expected Job Results, has for criteria groups nested under it:  VB objects for four quadrants, Clinical Quality, Customer Service, Finance and Work Culture.   SO, we get to the crux of the matter.  Since we know the employee, we can get to the appraisal document and associated data in the tables.  The decision of which VB to go to is what we are trying to facilitate.  The textual names will be the same for the quadrants in the QK's and VB's BUT thats a bad way to try to make a decision, thus the thought to create a relationship between the QK and the associated, logically equivalent VB.  
    >
    > The issue comes up with some of our managers who have large (60+) direct reports so the thought of creating qualifications from the appraisal side, individually per employee does not work.  This is why we are thrashing around with trying to start outside and work our way in.  Make sense ?
    >
    > Chris Thomas
    Hi Chris,
    This is what I was trying to explain between free vs fixed enhancement. 
    Free enhancement - user selects from a list to add something to the template
    Fixed ehahcement - preloads data into the template
    If your application that you build in MSS assigns the qualifications to the employees, you have a number of options to make this work as fixed enhancement.
    First use the following fixed enhancement as your basis: 
    HRHAP00_ENHANCE_FIX1 - Fixed Enhancement - Add Position Requirements
    Now in your MSS application if you assigned the qualifications to the position and wanted all qualifications to show up in 1 criteria group, you can use this enhancement with no development. 
    qualifications assigned to positions or jobs are called requirements
    qualifications assigned to employees are called qualifications
    if you have like 10 qualifications assigned to the position and 4 need to go to clinical quality VB, 3 need to go to finance vb criteria groups, you will create a BADI for each one of those, each criteria group wiill have its own unique badi.  in the badi you will apply the filter after all "requirements are selected from position" so that only the 4 belonging to the qualification block for finance are loaded into that VB. 
    if your mss application MUST assign it the employee for business reason, you use the same logic except swap out position lookup with employee lookup. 
    are we closer?

  • Exporting 3D Objects for use in Photoshop

    As Photoshop CS3 has the ability to handle 3D layers and Illustrator CS3 has the ability the create 3D objects i do not see any reason why there is no possibility in Illustrator to Export the 3D objects that then can be used in Photoshop. It would be a very appreciated feature.
    Andreas

    > I happen to know for sure that the plug-in does create a 3D model...
    How do you know this? While I Don't know for sure that it doesn't I strongly doubt that it would. The object created using the effect is merely a 2D object extruded to add the illusion of depth. A true 3D model contains far more information, such as features on all sides. Since Illustrator is only a 2D drawing program, there's no need for it to support 3D modeling, so no need for the programmers to spend time storing 3D data in the database of object data.
    So, if you "know for sure" that the plug-in created a 3D model, how do you know this? Can you link to some proof?

  • LSMW - Exporting the Object to PRD/QA System from DEV System

    Hi,
    I need to export the LSMW Object created/tested  in DEV System to QA/PRD System. Can you please suggest me a solution.
    I Appreciate Your Help.
    Thanks,
    Kannan.

    There are two ways of Transporting for this.
    Goto the LSMW Transaction
    1)Extras>Export Projects>(Give the Project name)
    In next screen(Choose what subproject, routines, etc.. you wan to copy then, Export Rules-->Export((Will prompt for file name)
    A text file will be downloaded.
    In the Target System
    Goto LSMW Extras-->Import Projects and give the text file which was downloaded.
    2)Extras-->Generate Change Request
    Assign a change request which is basically a transport request and you can then get this transported from one system to another through the basis route.

  • Exporting user objects

    HI aal,
    I have one question.
    I created schema and its object into one tablespace , and then while creating index on tables i choose different tablesapce for storage purpose. Now I have question if we export schema is the index structure will also get exported which was created on different tablespace?

    Hello,
    if you export a schema with tables then only the DDL Commands of the index definition is exported which also include your tablespace parameter. just for information you can also remap tablespace definition during import (if you have the right database version).
    regards
    Peter

  • JCOM manpulation error:  weblogic Error BEA-210000  Export of object barred

    Hi everyone,
    I'm trying to access a COM (MSWORD.OLB ) object from weblogic .
    I've writing a sample Java proggram to access some methods of my COM Object.
    But during the runtime, i got the following BEA weblogic error :
    *<Error> <COM> <BEA-210000> <Export of object: com.linar.jintegra.Variant@b96c73 barred>*
    com.linar.jintegra.a
         at com.linar.jintegra.ba.c(Unknown Source)
         at com.linar.jintegra.ba.a(Unknown Source)
         at com.linar.jintegra.Variant.<init>(Unknown Source)
         at com.linar.jintegra.Marshaller.a(Unknown Source)
         at com.linar.jintegra.Marshaller.a(Unknown Source)
         at com.linar.jintegra.Marshaller.b(Unknown Source)
         at com.linar.jintegra.Dispatch.vtblInvoke(Unknown Source)
         at word.DocumentsProxy.open(Unknown Source)
    Any ideas to solve this problem ?
    Thanks
    Sergio
    Edited by: user11108138 on 10 févr. 2012 02:24

    Sorry for delay!!
    I tried W2KSP1, W2KSP2 and XPpro on several P3 / P4 with 256 / 521 RAM.
    Uli
    "dan seeman" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]..
    Hi,
    One last question. Can you tell me more about what OS you have theWLServer
    installed on (machine type, OS and version)?
    Thanks in advance.
    dan
    Uli Schulze-Eyssing wrote:
    Hi Dan,
    wl70 release
    Uli
    "dan seeman" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]..
    What version of WLS you are using?
    dan
    Uli Schulze-Eyssing wrote:
    We are trying to use jCOM to connect to our WL-App. (We had been
    using
    JIntegra before)
    I made a simple JCom-Helper identical to the one, delivered in the
    earlybound-sample.
    Trying to create an object in VB couses the server to say:
    <03.05.2002 15:11:58 CEST> <Error> <COM> <210000> <IOXIDResolveropNum 5
    invoked. This method is not implemented.>
    <03.05.2002 15:11:58 CEST> <Error> <socket> <000413> <Failure in
    processSockets() - GetData: weblogic.socket.NTSocketMuxer$GetData -fd:
    '2324', numBytes: '654'
    java.lang.NullPointerException
    java.lang.NullPointerException
    atweblogic.com.MuxableSocketDCOM.isMessageComplete(MuxableSocketDCOM.ja
    >>>>
    va:182)
    atweblogic.com.MuxableSocketDCOM.dispatch(MuxableSocketDCOM.java:203)
    >>>>
    atweblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:667)
    >>>>
    atweblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:
    >>>>
    23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    >
    and no object is created (VB hangs in waiting for the object)
    In the FAQ I can read:
    065070
    There is a known issue with the logging of WebLogic Server jCOMerror
    messages. COM warnings are incorrectly logged as errors, as in thisexample:
    <Error> <COM> <210000> <IOXIDResolveropNum 5 invoked. This method is
    not
    implemented.>
    So: I know, this is only a warning, but where is my object? ;-)
    Can s/o tell me?
    Many thanks,
    Uli

  • Cmsdk 10G - need to export Clas Object/attributes into XML

    I am running CMSDK 10g, and need to export Class Object and attributes (metadata) for a document into XML. Specifically the Class Object and attributes that I created. I am thinking I can either use an API to export the Class object and attribute data, or I can go directly into the DB and pull the data from the table into XML.
    1) Is there an API available?
    2) What user is the owner of the Class Objects and attributes?
    3) What table contains the Class Object and attributes names and data?
    Thanks,
    Bilal

    Hi Bilal,
    I think the CUP (command line utility) will do the hard job for you.
    1. Find the ID of the wanted classobject
    (find CLASSOBJECT "name='WHATEVER'" -attrall)
    2. Cat the definition with:
    cat -id &lt;the id&gt;
    You will get the description in xml. You can run the commands as script and with a XSL or CCS you will be able to transform the output into html for your doc.
    Hope it helps
    Regards
    Gunther

Maybe you are looking for

  • Lenovo X131e doesn't work with Prolific PL2303 based USB to Serial Adapter and Windows 7 x64

    This is sort of a bug report. A Lenovo X131e with Windows 7 x64 and the PL2303 driver including 1.6, 1.61 and 1.7 will not successfully install the driver - Windows always reports "Driver Install Failed" on plug in to USB 3 or USB2 ports. However, pu

  • How to connect to AD without using ADWS?

    How to connect to AD without using ADWS? Is it possible to do it? If yes, can teach me how to connect to AD and find their attributed?

  • External Video Output

    Hi, I'm having trouble sending the image from Color to an external monitor for accurate color balancing. When I go to Video Output pop up menu in the set up preferences, the only option they let me click is "Disabled". It's an HD image to a Sony HDV

  • Skewing in a 2D array manipulation

    I have an application that forms a 256 x 256, 2D array arrangement of data measurement points from a 1D array bin 256 elements long.I use a rotate VI to shift the incoming points in and predefined 2D arrays which is initialized to zero at start-up. I

  • Porting from JavaFX Preview to JavaFX 1.0

    Does somebody know if there is a document that summarizes all the differences between the JavaFX Preview release and the JavaFX 1.0 ? With tips on how to port from the preview to 1.0 ? thanks Bernard