How to copy all objects (incl. joins) from a BM into another existing BM

Hello, i'm a regular viewer of this forum and now i have one issue that looks simple but i cannot resolve it.
To make it less complex let's say we have a business layer with two business models (e.g. CIS-Finance and CIS-Logistics). For each BM we have a seperate subject area in the presentation layer.
Each BM has unique objects, no object (like dimension time) is appearing in both BM's.
Now there is a business requirements to have a 'mega' model, that is one extra BM that is combining both BM's. Let says we want to merge both model into one new big model.
To achieve this I did the following:
1) Duplicate CIS-Finance to CIS-All (using right mouse click on BM and click duplicate and change the name of duplicated BM to CIS-All)
2) Then I select all objects in CIS-Logistics and copy all these objects and paste them into the new BM CIS-All.
All selected objects were copied into the BM but the logical joins are not copied as well the content level information of the source tables.
Is there a way to copy also this information (logical joins and content info), or do you suggest another approach to achieve this goal?
Thanks, Ben

what i did:
1) i copied the original rpd to rpd2
1) in the original rpd, i duplicated CIS-Finance to CIS-Logistics (so I have the same name for the BM to where i want to copy to)
2) in the rpd2 i selected all objects in BM CIS-Logistics
3) I pasted all objects to rpd BM CIS-Logistics (so BM has same name)
unfortunately it doesn't work, all objects are copied but not the joins and content.
You suggest UDML, can you be a little bit more specific? I searched the internet, found out what UDML is, but I cannot map it to what I want.
Thanks.

Similar Messages

  • How to copy a physical Alias table from one rpd to another

    Hi
    I am copy pasting the physical tables from one rpd to another. I first copied the physical table and then tried to copy the alias table i get the message ' Unknown Error' when i click ok it says
    'Failed to copy from clip board"

    Identify the "class=MyStyle" string in the MTML code, and use the Multi-File Find and Replace feature to step through each topic and change the specific instances to "class=MyOtherStyle." (I doubt that you'll want to "Replace All".)
    Sorry, there's no silver bullet!
    Good luck,
    Leon

  • Copy part of a sequence from one project into another?

    I want to bring a sequence from none project into another. Do I need to import the files into the bin in new project? Or is there a shorter way?
    (This was what I was trying to do in my last post when it all went south. I'll post it there too)

    I have brought an old sequence from a FCE project into FCP, and then copied them into a new( final) sequence, and there's a problem. Some--but not all--of the video files are very wide. Can I correct or do I need to re-import the original files fron the Hard drive?
    By the way, you've pulled my fat out of the fire a few times. Thanks.
    Sean

  • How to copy Company Code Account data from a client to another client

    Hi.
    In prod system, unfortunately, we have deleted all Company Code (CC) data from the system - including accounting payable data, and we need to restore data from backup. So far we have created an new 'spare' client with all restored information.
    Next step is to copy CC-related records in related tables from 'spare' client back to prod client and append them into tables were all the records referring this particular CC has been removed.
    For instance we see that the prod system is missing all CC-related records for accounting tabels such as BKPF BSEG and others.
    The questions are:
    1) How can we do this copy?
    2) If we need to do this for each single tabel manually, how can we know which tables that needs to be appended in prod system? As far as I have notised, i see this will affect table BKPF, BSEG, BSAK, BSAS, BSIK, BSIP, BSIS. Any others?
    We have allready triyed transaction EC01 for this purpose. But, unfortunately, this copy function, regarding Company Code organizational object does not seem to take into account the above-mentioned tabels which I need to restore into prod.
    I suppose this must have been an issue before for sombody...?
    So can anybody help with a strategy to solve this issue?
    Thanks.

    Just to be mentioned. This is regarding a particular CC, not all have been removed from the prod system. And I only need to restore accounting information for a spesific CC.

  • How to copy a set of tables from a database to another periodically?

    We have a 4 node RAC primary database(10.2.0.2) with a physical standby(10.2.0.2) on our production site. Offlate we noticed that one of the applications(APP2) is causing heavy loads due large data downloads on the primary database servers. Our primary database has 2 schemas,
    1) one being the main schema with all objects, (USER1)
    2) and the other has views that query some set of tables from the main schema. (USER2)
    The application APP2 uses USER2 views to query and download huge data periodically. We need to be able to give accurate data results to APP2, but in the same time take off the load from the database, as APP2 is not our main application.
    We would like to know if there are any cost effective options in oracle to do this, and if so, what is the best option? Anyone has any experience setting up something like this before?
    We have thought of creating another 10.2.0.2 database on a different server and giving it regular updates(like data feeds) from the current database. The current database data changes quiet often, so the data feeds would have to be done often to keep the data current on the new database. So, we are not exactly sure how to go about it. Would a COPY command help?
    Please advice.

    user623066 wrote:
    Our 4 node RAC is already busy with our main application, which has its connections spread across all 4 nodes.
    Our main applications services are the same on all nodes and use all 4 nodes in the same way.
    There are some other utilities that we run from one of the app servers that connect to only 1 of the nodes.
    APP2 uses all 4 servers, which is again controlled by connection pooling and distributes the load.Wouldn't separate services be more beneficial here? If APP2 is locked down to one node during normal operation, that ensures that other connections aren't going to be competing for hardware with APP2 on 3 of the 4 nodes. If APP2 is generating less than 25% of the total load, you can let the other applications use whatever hardware resources are left idle on the node APP2 is locked down to.
    By Large data downloads, I meant both increase in network traffic and the CPU load on the database nodes.
    We are already using resouce manager to limit the resources allocated to USER2 that APP2 uses.
    And we have also limited the large downloads to take place in the early hours of the day when the traffic from our main application is less.
    But this has still not been optimal for the usage requirements for APP2. APP2 is also doing queries all through the day, but has a limit for the number of rows downloaded during peak hours.Can you explain a bit more about why using Resource Manager hasn't been sufficient? That's normally a pretty good way to prevent one hungry user from drastically affecting everyone else. Perhaps you just need to tweak the configuration here.
    Logical Standby seems a good option. But we need to keep our physical standby in place. Is it possible to have a logical standby and a physical standby? (ofcourse on separate servers)Sure. You can have as many standby servers of whatever type you'd like.
    Could we use a COPY command to copy data for the set of tables to a new database? Or is that also a complex option?You could, yes. COPY is a SQL*Plus command that has been depricated for copying data between Oracle databases for quite a while. It only works from SQL*Plus and would only be designed for one-time operations (i.e. there is no incremental COPY command). I can just about guarantee that's not what you want here.
    How do materialized views work? Wouldn't they still reside on the main database? Or is it possible to have remote materialized views?You probably don't want materialized views, but if you decide to go down that path
    - You'd create materialized view logs on the base tables to track changes
    - You'd create materialized views on the destination database that select data over a database link back to the source database
    - You'd put those materialized views into one or more refresh groups that are scheduled to refresh periodically
    - During a refresh, assuming incremental refreshes, the materialized view logs would be read and applied to the materialized views on the destination system to update the materialized views.
    Justin

  • How to copy data for certain member from one dimension to another dimension

    Dear ,
    I want to copy data for certain member ("511102") from one dimension to another combinations of dimensions ,
    I have the following combinations for "511102" :
    _("Budget2012","FY12","Working.V01","SAR","BegBalance","1011","G_10","custom Grades")_
    I want to copy "511102"  to "salary"
    -salary have the following dimensions :
    _("Budget2012","FY12","Working.V01","SAR","BegBalance","General group","All grades","General Employees")_
    , I don't know if I could do it by datacopy of cross dimensional , But I don't HOW >>>
    Thanks in advance

    FIX("Budget2012","FY12","Working.V01","SAR","BegBalance","General group","All grades","General Employees")
    "salary"="511102"->"1011"->"G_10"->"custom Grades";
    ENDFIX
    or
    FIX("Budget2012","FY12","Working.V01","SAR","BegBalance")
    DATACOPY "511102"->"1011"->"G_10"->"custom Grades" to "salary"->"General group"->"All grades"->"General Employees";
    ENDFIX
    Key thing in datacopy is to place the dimensions in cross dimension in the same order. Both sides (before and after "TO") should have equal number of dimension members specified.
    Cheers,
    Alp

  • How to copy paste a table structure from word document into Text Field [field format Rich Text]

    In our current implementation we have a Blank page with Text Field [field format Rich Text] on generated PDF Document.
    Once the PDF document is generated, user can copy paste content form any word/rtf document to into the Text Field.
    Pasted content retains all text formatting [Bold, Italic, Underline, Indentation] except the Table format. Text Field is removing table metadata from the content and converting it into plant text.
    Is there anyway to copy paste table structure as it is from word document into Text Field?

    Hi,
    I don't think you can! While you can paste formatted text into the rich text field, the table metadata means nothing to the textfield.
    Niall

  • How to copy paste a office document from one folder to another using J2SE

    HI!
    How can i copy a document file(.rtf,.docx.pdf) from one folder to another folder by executing Java code?
    Help needed

    Hi! You can use my api com.gmail.ronilloang.util.FileUtil for copying files. You can download it at my homepage [RA (TM) i-Software|http://ang.ronillo.estares.googlepages.com/]

  • How to move all pictures, albums & tags from 1 computer to another.

    Bought a new computer and don't want to lose all the work I did cataloging etc in Elements.  Need to copy all pictures (17,000) over as well as all the tags & albums etc in Element to the new computer.  Also, I am going from Elements 5 (Vista) on my old Computer to Elements 8 (Win 7) on my new PC.  What are the steps needed to do this? 
    Should I first copy all the pictures over to the new computer in a folder.
    Then backup Elements 5 on the old computer.
    Then copy the elements 5 backup file to the new computer and restore that file into Elements 8?

    You need to use back-up and restore.
    This Adobe tech note relates to PSE6 but it will give you the principles of what is required.
    http://kb2.adobe.com/cps/402/kb402894.html

  • How to upload all excel files data from one folder into internal table.

    Dear All,
    I have one requirement, It is like I want to upload the frontend file data into my internal table, But here my scenario is;
    If I have one folder ( Called : Temp) in my frontend system, in this folder ( Called : Temp)  I have 100 excel files. In each excel file I have some 1000u2019s of entries. All these data of every file I want to take into my internal table.
    If I have one file I can go for, CALL METHOD cl_gui_frontend_services=>file_open_dialog and then upload method to upload. But I want to take all these excel files from that folder at a time, is there any class or any thing is there..? plz help..
    Thanks...
    Edited by: satishsuri on Jan 11, 2011 9:33 AM

    Hi satishsuri ,
    You will have to use 3 methods together :
    CALL METHOD cl_gui_frontend_services=>directory_browse "Browse the Directory
    CALL METHOD cl_gui_frontend_services=>directory_list_files "Get all the files from the directory
    CALL METHOD cl_gui_frontend_services=>gui_upload "Upload each file in a loop
    Example:
    TYPES: BEGIN OF ty_data,
             line TYPE string,
          END OF ty_data.
    DATA: str_file TYPE string,
          str_dir TYPE string,
          it_file_table TYPE STANDARD TABLE OF file_info,
          wa_file_table TYPE file_info,
          v_count TYPE i,
          it_data TYPE STANDARD TABLE OF ty_data,
          wa_data TYPE ty_data.
    CALL METHOD cl_gui_frontend_services=>directory_browse
      CHANGING
        selected_folder = str_dir.
    CALL METHOD cl_gui_frontend_services=>directory_list_files
      EXPORTING
        directory  = str_dir
      CHANGING
        file_table = it_file_table
        count      = v_count.
    LOOP AT it_file_table INTO wa_file_table.
      CONCATENATE str_dir wa_file_table-filename INTO str_file SEPARATED BY '\'.
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename = str_file
          filetype = 'ASC'
        CHANGING
          data_tab = it_data.
      LOOP AT it_data INTO wa_data.
        WRITE : / wa_data-line.
      ENDLOOP.
      ULINE.
    ENDLOOP.
    Regards,
    Jovito

  • How to copy documents for InfoProvider data from one cube to another cube

    Hello Everyone,
    We are using standard document feature to store document/comment about the data shown in the report/planning query. Relevant characteristics have the property 'characteristics is document attrib' turned on/selected for this purpose.
    Looks like the documents created gets tagged to a particular InfoProvider along with characteristic value assignment.
    Is there a way to move or copy documents from one InfoProvider to another InfoProvider.
    As per the design requirement, we need to move data from a real time InfoProvider (transaction cube) to a basic reporting cube. The data in the first/source cube stays for a period of approx 3 months before moved to other cube. We want the documents associated with InfoProvider data also to be moved, so that users can continue to see the document/comments what they  had created earlier.  
    I looked at the Documents tab in DataWarehouse workbench. No options seem to be available to copy or move documents.
    Any help will be highly appreciated and points will be rewarded accordingly!
    Best regards,
    Sanjeeb

    Hi
    Have you got any answer to this? I would also be interested in a copy function but more from one query ID to another.
    Kind regards,
    Daniel Müller

  • How to import an in-line schema from a wsdl into another schema

    I am using SOA Suite 11g (11.1.1.1.0) and JDev 11
    I have a wsdl from a vendor that includes several in-line schemas. Included in the schema is a complexType that I'd like to use as an element. I can easily drop an element into the vendor's wsdl, since I have my own copy. But I'd prefer to leave the vendor's wsdl untouched as I anticipate having to replace it occasionally. But I don't know how to go about importing an schema in-line in a wsdl, into another schema. Is that even possible? Comments most welcome.
    - Cris

    Actually, I think I may have solved my own problem and it wasn't all that difficult. I simply created a reference wsdl, imported the vendor wsdl and created another in-line schema. Seems to work well enough. For anyone who can offer a better approach, please do share.
    - Cris

  • How to copy all tables, triggers, etc from one user schema to another

    Hello everybody!
    I am searching for a QUERY or Stored Procedure to copy the tables of one user schema to another schema.
    Should look kind of: Copy (Select * from all_objects where owner = 'UserIwantToCopyFrom') to user = 'UserIwantToCopyTO'
    I am sure that my example is rubbish but I tried to explain what I want to do.
    So is there a chance to do that within sql-code? I have to build a template of a user schema with hundreds of tables, triggers, etc and copy it to several other user schemas.
    Thanks for your advice!
    Jan

    There are numerous examples available.
    What you typically will want to do is:
    For the export use the job_mode => 'SCHEMA' option
    Export example
    http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
    DECLARE
      l_dp_handle       NUMBER;
      l_last_job_state  VARCHAR2(30) := 'UNDEFINED';
      l_job_state       VARCHAR2(30) := 'UNDEFINED';
      l_sts             KU$_STATUS;
    BEGIN
      l_dp_handle := DBMS_DATAPUMP.open(
        operation   => 'EXPORT',
        job_mode    => 'SCHEMA',
        remote_link => NULL,
        job_name    => 'EMP_EXPORT',
        version     => 'LATEST');
      DBMS_DATAPUMP.add_file(
        handle    => l_dp_handle,
        filename  => 'SCOTT.dmp',
        directory => 'TEST_DIR');
      DBMS_DATAPUMP.add_file(
        handle    => l_dp_handle,
        filename  => 'SCOTT.log',
        directory => 'TEST_DIR',
        filetype  => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE);
      DBMS_DATAPUMP.metadata_filter(
        handle => l_dp_handle,
        name   => 'SCHEMA_EXPR',
        value  => '= ''SCOTT''');
      DBMS_DATAPUMP.start_job(l_dp_handle);
      DBMS_DATAPUMP.detach(l_dp_handle);
    END;
    /for the import you will have to use the remap_schema option with:
    DBMS_DATAPUMP.METADATA_REMAP (
       handle      IN NUMBER,
       name        IN VARCHAR2,
       old_value   IN VARCHAR2,
       value       IN VARCHAR2,
       object_type IN VARCHAR2 DEFAULT NULL);There are much more details in the document that Thierry provided.

  • How to copy one user-created Group from one tab to another tab in word 2013 Ribbon

    hi Friends
    in Word 2013 Ribbon, i have created a customized Tab & a customized Group within it which contains some stuff.
    i need this Group & all its contents be copied also to another tab (for example Home tab).
    is there any workaround to copy it to another tab?
    i know i can customize the ribbon, create new Group, find each desired item & add each one to group... but i don't want to do this method because is time consuming & is creating from scratch which is not desired
    any solution?
    thanks in advanced

    Hi,
    As far as I know, we can only export the entire ribbon and QAT with the build-in Export functionality in Microsoft Office, not just part of it.
    However, the exported Customizations.ExportedUI file is a XML text file. We may try to modify the
    Customizations.ExportedUI file to achieve the goal. See:
    http://msdn.microsoft.com/en-us/library/office/ee704589(v=office.14).aspx
    Since it's a development issue to customize the Customizations.ExportedUI
    file and we are not experts on such issues, I'd recommend you post a question in the Word for Developers forum:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=worddev
    The reason why we recommend posting appropriately is you will get the most
    qualified pool
    of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    hi Steve
    useful
    thanks a lot

  • How to copy a Specific Font Style from one instance to another?

    I am using RoboHelp HTML V.7.
    I need to change multiple instances of one style to another. Is there a way to assign a specific font style from one instance of the style to another location (like MS Word style painter), or add the specific style to a shortcut key, or add the specific style the toolbar, or any other suggestions which may expedite my plight?

    Identify the "class=MyStyle" string in the MTML code, and use the Multi-File Find and Replace feature to step through each topic and change the specific instances to "class=MyOtherStyle." (I doubt that you'll want to "Replace All".)
    Sorry, there's no silver bullet!
    Good luck,
    Leon

Maybe you are looking for

  • ERS payment didn't gemerate

    hello everyone, here is the issue : user changed PO line item to ERS after goods receipt was generated, so ERS payment didn't generate for this PO line item, now what can we do to make it work? one way I was thinking is to let vendor send the invoice

  • How to access .asmx from java application

    Hi All, I want to access .asmx file using java application. I am using Eclipse IDE and created some samples from this url: http://www.eclipse.org/webtools/jst/components/ws/M5/tutorials/BottomUpWebService.html I got the Soap request and response form

  • Nokia PC Suite installation error

    Hello everyone! I use Windows XP Professional Edition SP 2, Nokia PC Suite 6.86.9.0 rus. During installing this PC software on my PC I got an error: dialog box named ServiceLayer shows "Could not start service". Then after installation is complete an

  • My brothers id is authorized on my comp but i cant see his music in my libary

    My brother has succesfully authorized his i tunes account on my computer but i still cant see his music in my libary what am i doing wrong?

  • Public name vs. contacts only

    Hello,   I set my public profile to only my Skype name in both spaces... Name/Skype ID....Yet when I go to contacts only it showed same as public setting. Is there a way post ones' name/nickname without it showing as public also? If not  maybe we sho