Export / Import of BI objects

Sorry, I mistakenly posted this under BI Accelerator:
Hello. I am trying to move existing BI objects (defined in RSA1) from an internal SAP IDES demo system to an offline, standalone NW 2004s BI system that is on a laptop. Essentially I want to export the objects that already exist in the IDES system and Import these objects onto the laptop 2004s system so that I do not have to re-create them all. Could someone please give me their opinion as to the best way to do this?
I have tried the Export as XML from the Metadata Repository with mixed results. InfoObjects seem to work but an InfoCube did not due to an error with SAP object 0CALDATE. Also, when you Export as XML from the Metadata Repository you have to know all the Class ID's of the various BI objects (com.sap.bw.cwm.core.InfoObject) - how do I find out what the other class id's are, for example, ODS, InfoPackage, MultiProvider, etc.??
I have also been told that a transport saved as a file would also work.  I don't believe IDES allows transports to non - demo systems.
Can anyone help?
Regards,
Anthony

Please use another forum. This is SAP NetWeaver BI Accelerator only ...
Thanks,
Alex

Similar Messages

  • Automatic export/import of ESR object

    HI.
    I want to automate export/import of ESR object.
    How can I do?
    1)export the ESR object on development system
    (automatic import to QA sysytem)
    2)activate the chang list on QAS
    regards,

    U may perform the transport to QA using CMS. Or u may simply export the ESR objects as tpz file and import it in QA system.
    Regards,
    Prateek

  • Exporting/importing custom library objects

    Dear,
    When we made custom objects for in our library. They are available to all environments on my laptop, but not on a different machine.
    Is there any way to export/import these?
    Kind regards,
    Frederik-Jan.

    Hello,
    These things are stored locally on your machine.
    Note: On tab Library in your LCD click right arrow to get the library menu, mark your components tab (you need to export), right arrow opens the menu where there is the "group properties..." item. Here there is a path on your harddrive. My problem is I cannot locate the path I can see here. So I have looked for a workaround.
    Workaround: create a folder on your desktop. Create a component group in you Library in LCD (new tab). Go to properties of this new group, set the path to your new desktop folder. Go to the component tab where you have your custom components. Select them, use move to..., select the new component group/ desktop folder. After completing this, check the xfo files in your desktop folder. You can now send them to another machines.
    Note: In the library "right-arrow-menu" there is the item "shared library location". You can use this to share the components among all the machines you need.
    Regards, Otto

  • Exporting & Importing Package or objects of package

    Hi experts,
    My aim is to save on a USB key, for example, all reports in the PC on which I have done my training for use on my personal machine.
    In other words, how  I can export and import package?
    Thanks in Advance,

    Its not possible to download all the objects in an package or reports with includes in one go.
    But still you may try this program of Raghvendra -
    Download ABAP Objects to a local directory
    P.S. Search in forum before posting the query.

  • How to export/import database from tools menu in sql developer.

    Hi,
    I need to export database from a server and import it on another db server using the export database function under tools menu in SQL developer. How do I import it? This is for Oracle 10g database.
    Thanks

    Depends what are you trying to do? Are you making a database copy or just creating an empty schemea or creating schema with the data?
    With 10g, you have also options of using datapump (expdp/impdp) and conventional export/import which is very usefule and easy to use when it comes to create a clone (duplicate schema) or an export/import of some objects.
    If you right click on table object, you have options of export ddl/export data and import data but thats different thant what expdp/impdp or conventional export/import provides. For very small database you can use sqldeveloper but consider
    using other above mentioned options. Hope this helps
    Regards

  • IFS export - import

    Where can I find detailed information about exporting and then importing IFS data
    between 2 different computers (database instances)?
    Note: IFS data to export/import contain custom objects, including custom DirectoryUsers

    Valean,
    If you look in the 9iFS Administration guide there is a section there on the ifsexportcontent and related tools. These give you the ability to export content and also users and groups.
    Should be what you are after.
    Chris
    Seregengeti Systems
    www.serengeti-systems.com

  • Export / import tablespace with all objects (datas, users, roles)

    Hi, i have a problem or question to the topic export / import tablespace.
    On the one hand, i have a database 10g (A) and on the other hand, a database 11g (B).
    On A there is a tablespace called PRO.
    Furthermore 3 Users:
    PRO_Main - contains the datas - Tablespace PRO
    PRO_Users1 with a role PRO_UROLE - Tablespace PRO
    PRO_Users2 with a role PRO_UROLE - Tablespace PRO
    Now, i want to transfer the whole tablespace PRO (included users PRO_MAIN, PRO_USER1, PRO_User2 and the role PRO_UROLE) from A to B.
    On B, I 've created the user PRO_Main and the tablespace PRO.
    On A , i execute following statement:
    expdp PRO_Main/XXX TABLESPACES=PRO DIRECTORY=backup_datapump DUMPFILE=TSpro.dmp LOGFILE=TSpro.log
    On B:
    impdp PRO_Main/XXX TABLESPACES=PRO DIRECTORY=backup_datapump DUMPFILE=TSpro.dmp LOGFILE=TSpro.log
    Result:
    The User PRO_Main was imported with all the datas.
    But i 'm missing PRO_USER1, PRO_User2 and the role PRO_UROLE...
    I assume, i 've used wrong parameters in my expd and / or impdp.
    It would be nice, if anybody can give me a hint.
    Thanks in advance.
    Best Regards,
    Frank

    When you do a TABLESPACE mode export by specifying just the tablespaces, then all that gets exported are the tables and their dependent objects. The users, roles, and the tablespace definitions themselves don't get exported.
    When you do a SCHEMA mode export by specifying the schemas, you will get the schema definitions (if the schema running the export is privied) and all of the objects that the schema owns. The schema does not own roles or tablespace definitions.
    In your case, you want to move
    1. schemas - which you already created 1 on your target database
    2. roles
    3. everything in the tablespaces owned by multiple schemas.
    There is no 1 export/import command that will do this. This is how i would do this:
    1 - move the schema definitions
    a. you can either create these manually or
    b1. expdp schemas=<your list of schemas> include=user
    b2 impdp the results from b1.
    2. move the roles
    expdp full=y include=role ...
    remember, this will include all roles. If you want to limit what gets exported, then use:
    include=role:"in ('ROLE1', 'ROLE2', ETC.)
    impdo the roles just exported
    3. move the user information
    a. If you want to move all of the schema's objects like functions, packages, etc, then you need to use a schema mode
    export
    expdp user/password schemas=a,b,c ...
    b. If you want to move only the objects in those tablespaces, then use the tablespace export
    expdp user/password tablespaces=tbs1, tbs2, ...
    c. import the dumpfile generated in step 3
    impdp user/password ...
    Hope this helps.
    Dean

  • XI 3.0 : Import/Export of IB: Design Objects via Filesystem

    <b>Failure: "You are not permitted to delete any objects since the software component cannot be changed"</b>
    Today I've tried out the import/export functionality of the integration builder design.
    Therefor I've exported a whole <i>SoftwareComponentVersion</i> into a file and after that reimported it.
    Everything works fully correct. But now, when i try to delete this <i>SoftwarComponentVersion</i> or any <i>object</i> within, i face the warning: "You are not permitted to delete any objects since the software component cannot be changed" and i am not able to delete it.
    <b>Have you any experience dealing this problem?</b>
    <u>Thx for your answer!</u>

    Hi Friends,
    I have try to do the same stuff but i could not see the objects imported into swcv.
    I did as follows:
    1. Imported swcv from sld.
    2. created a namespace
    4. created some design objects.
    5. activated the changed list.
    6. Exported the swcv in tpz file
    7. removed all the objects from swcv.
    8. imported the design objects from previously exported tpz file by copying it into the import folder at xiserver.
    9. it says objects are successfully imported and i can see the file is transfered from import folder to importedFiles folder with timestamp suffix.
    but i am still unable to see these objects into the swcv.
    Where i have done mistake or should i need to do something more as i wanted to test this export/import feature having only one xiserver.

  • Export/Import  Object configuration

    hi gurus!
    I have the next landscape, and I´ll want to stop make manually the export of configuration objects:
    XI DEV    -
        XI QAS     -
        XI CORP   
    BS_DSP060          BS_QSP060               BS_SIF060
    The problem is that in each enviroment each Business system has diferent name. so that´s my problem, how could I make
    that this Business systems recognize in automatically at the export/import time?
    Thanks

    Hi,
    Refer this..
    How to handle SLD for XI
    https://websmp108.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000071155&_SCENARIO=01100035870000000202
    Preparation of SLD for Transports Using CMS in XI
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b01876ac-abbb-2a10-788e-95a7c5a5aeca
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/300e3ca7-31cd-2a10-a6ba-87c7447d5fd7
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    Might help you..
    Regards,
    vasanth.

  • Object export-import problem

    I have made some objects like type,type body and object tables and nested tables in a user..and then take the export...but while trying to import the same file in another user it gave me error for object tables and nested table...so I need to set some parameters or what should I do..Please guide me..

    Viral,
    Check out the online documentation on export/import at http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a76955/toc.htm
    Regards,
    Geoff

  • How to export/Import default prefs and object styles with no project open?

    I would like to export my preferences and object styles with no projects open and them import them on my team's machines so that no matter what project we create, we all start from the SAME set of defaults.  When I open captivate and check both with no projects open, there is no ability to import/export.  I know I could open a project and export, but then importing is an issue.
    I'm using CP8 on a Windows 8.1 64 bit machine.
    Help?
    Thx.
    Lori

    After a fresh install I start by editing the Preferences globally, that means by using Edit, Preferences before opening any project (like switching to Expert UI, default language, replacing feedback captions by shapes). There is indeed no way to import preferences from a specific file. I will do the same for some object styles (like creating a blank Highlight box for audio objects). You can only export/import from and to a project,  same like for all Library assets.
    However the Object styles: they are part of the default theme, along with their theme colors, master slides and skin. You cannot edit everything without having a project open. I would recommend to create a custom theme in a project, in which you have all the wanted object styles. Changing the theme colors (you can have a custom theme color palette) will change partially colors of the objects. Once you set that theme as default theme, you'll have all the object styles in the projects that use the default theme.
    To transfer Preferences, custom themes to another machine, maybe this article could help you out. It was written for a different purpose, but you'll find the location of a lot of files that you could transfer in this post:
    Captivate 8.0.1 Install? Keep your Customisation! - Captivate blog
    Lilybiri

  • Export/import with objects in another schema

    In 9.2
    I created two users: `live` and `world`
    `live`> create type nam as object (txt varchar2) not final;
    `system`> grant under any type to world;
    `world`> create type nam_world under live.nam (txt2 varchar2);
    and
    create table nams of nam_world;
    and new row
    insert into nams values ('qwerty', 'ytrewq');
    I build dump file:
    exp system/manager FILE=live_world.dmp OWNER=live,world
    All this successfully!!!
    At another server (also 9.2) this export session terminated with errors:
    imp SYSTEM/manager FILE=live_world.dmp FROMUSER=live,world TOUSER=live,world
    Not help parameter IGNORE=Y
    Not help parameter TOID_NOVALIDATE=(live.nam)
    In any case: "Skipping table "WORLD"."NAMS" because object type "LIVE"."NAM" cannot be created or has different identifier"
    General effect, what import simply not visible type live.nam
    How import tables with objects in another users schema?
    Please, help me.

    Hi Vishwanath,
    You can export the objects as TPZ's
    go to Tools---> Export configuration objects, to export them, and import configuration objects to reimport them.
    cheers
    Prashanth

  • APEX Application Export/Import

    Hi,
    I have my application build in APEX on 10.2.0.4 database which now i want to migrate to 11.2. Name of schema on the back of my application is DBADMIN. What i have done is, i just exported the application from my current apex on 10.2.0.4 and tried to import on my 11.2 but it gives me following error message
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 80, column 32: PLS-00103: Encountered the symbol &amp;quot;!&amp;quot; when expecting one of the following: ( - + case mod new not null &amp;lt;an identifier&amp;gt; &amp;lt;a double-quoted delimited-identifier&amp;gt; &amp;lt;a bind variable&amp;gt; continue avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp interval date &amp;lt;a string litThis is first time i am migrating my application so please help to find out what is the issue and how to resolve it. Following is the detail how i performed the operation
    Source APEX
    Workspace name = Monitoring
    User of application which loged in to this workspace and created application = SALMAN
    Application name = Monitoring
    Database schema name behind application = DBADMIN
    I exported application in UNIX and also DOS format
    Destination APEX
    Workspace name = Monitoring
    User of application which loged in to import the application = UTACADMIN
    Database schema name behind application = DBADMIN and i have already exported the schema from my source database have imported all the objects with data
    Tried importing application from UNIX as well as DOS script but same error message as above.
    Please guide me how can i successfully migrate my application from my source APEX to this new APEX
    Thanks

    Now i exported the workspace from my source APEX and imported in destination and everything is fine and now apparently everything is same but still same error during import of the application, please help to resolve.
    I tried to execute the application export script on sqlplus, but following error was returned
    EMREP.UTAC.COM.SG$APEX_030200> @d:\f100.sql
    APPLICATION 100 - Monitoring
    Set Credentials...
    Check Compatibility...
    API Last Extended:20090112
    Your Current Version:20090112
    This import is compatible with version: 20090112
    COMPATIBLE (You should be able to run this import without issues.)
    Set Application ID...
    begin
    ERROR at line 1:
    ORA-02291: integrity constraint (APEX_030200.WWV_FLOWS_FK) violated - parent
    key not found
    ORA-06512: at "APEX_030200.WWV_FLOW_API", line 555
    ORA-06512: at line 3Thanks
    Salman

  • Memory Limitation on EXPORT & IMPORT Internal Tables?

    Hi All,
    I have a need to export and import the internal tables to memory. I do not want to export it to any data base tables. is there a limitation on the amount of memroy that is can be used for the EXPORT & IMPORT. I will free the memory once I import it. The maximum I expect would be 13,000,000 lines.
    Thanks,
    Alex (Arthur Samson)

    You don't have limitations, but try to keep your table as small as possible.
    Otherwise, if you are familiar with the ABAP OO context, try use Shared Objects instead of IMPORT/EXPORT.
    <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/13/dc853f11ed0617e10000000a114084/frameset.htm">SAP Help On Shared Objects</a>
    Hope this helps,
    Roby.

  • Client Copy Export/Import on large system. 1.5 TB

    Hi,
    We have a 3 tier landscape. DEV, TST, PRD.
    Database size in PRD is 1.5 TB (1500 GB)
    Our developers need fresh master and trans data in TST and DEV.
    We are thinking about making a
    PRD --> TST  (1.5 TB) we do a system copy.
    TST --> DEV (1.5 TB) we can't do a system copy. (Company policy says not to touch repository objects, version management what so ever in DEV....)
    1. How long will a client export / import take from TST --> DEV,  lets say we have "good HW" ?  Will it work ?
    2. I've read about TDMS but its toooo expensive.....is there maybe any 3 party tool that is good for this purpose ? Transfering 1.5 TB of data ...
    Br,
    Martin

    Hi,
    >1. How long will a client export / import take from TST --> DEV, lets say we have "good HW" ? Will it >work ?
    In my opinion, a 1.5 TB database is much too big for a client copy.
    It will work but may last a full week and would degrade the production system performance.
    We have 1.3 TB databases and stopped using client copies since the system was 300 GB...
    We only use database restores and renaming for system refresh even for the dev system.
    There is procedure to keep the versionning of sources.
    Regards,
    Olivier

Maybe you are looking for