How to move Software componet and product from One SLD to another

Hi Experts,
I want to move the software component that i created in the development SLD and the product from dev system to Prod system SLD. Our development and the quality share the same SLD so i didnt have to do anything. How do i export the software component and the Product form dev SLd to Prod SLD Or what steps do we need to follow to move the Software component from SLD -> SLD.
I am new to PI and this is the 1st time in am doing this activity. Request you help.
BR Heth.

Hi,
Please ensure to read note #[1540435 |http://service.sap.com/sap/support/notes/1540435]and to decide which update strategy/scenario you
need and in the "[SLD Planning Guide|http://www.sdn.sap.com/irj/sdn/nw-sld?rid=/library/uuid/e0a1a8fb-0527-2a10-f781-8b67eab16582]".
You should ensure that your CIM Model and CR Content on your SLD are updated as
per SAP note [669669 |http://service.sap.com/sap/support/notes/669669]on both SLDs.
Regards,
Aidan

Similar Messages

  • How to move the pages and reports from one dashboard to another

    hi all
    can please any one tel me hw to copy the reports along with pages from one dashboard to another
    Thanks

    Hi,
    Go to Administrator->Manage Presentation Catalg->Click on Group folder under which the dashboard and reports are present
    1)Create one folder and copy the reports which are present in the dashboard pages you want(reports will be under some specific folder,open and copy one after the other to the newly created folder).Do this if you want other set of same reports for new dashboard that you are creating
    2)Click on _portal and create a new folder(new dashboard)
    3)Click on dashboad that is to be copied
    4)copy the pages one after the other into new dashboard folder
    If you are not keeping new set of reports then no need to point reports in pages,if reports are placed under new folder then go to each page and pull those reports from newly created folder.
    Regards,
    Srikanth

  • How to move a specific tablespace datafile from one directory to another

    Database: 10.2.0.1
    OS : Generic
    Problem Description : How to move a specific tablespace datafile from one directory to another considering that the database is on Oracle Dataguard setup
    ** Oracle is working on this issue, but in parallel is opening the topic to the Community so that Community members can add their perspective, experience or knowledge. This will further enhance all knowledge bases including My Oracle Support and My Oracle Support Communities **
    Edited by: ram_orcl on 16-Aug-2010 21:21

    Dear ram_orcl,
    Please follow the procedures here;
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/manage_ps.htm#i1034172
    8.3.4 Renaming a Datafile in the Primary Database
    When you rename one or more datafiles in the primary database, the change is not propagated to the standby database. Therefore, if you want to rename the same datafiles on the standby database, you must manually make the equivalent modifications on the standby database because the modifications are not performed automatically, even if the STANDBY_FILE_MANAGEMENT initialization parameter is set to AUTO.
    The following steps describe how to rename a datafile in the primary database and manually propagate the changes to the standby database.
       1.
          To rename the datafile in the primary database, take the tablespace offline:
          SQL> ALTER TABLESPACE tbs_4 OFFLINE;
       2.
          Exit from the SQL prompt and issue an operating system command, such as the following UNIX mv command, to rename the datafile on the primary system:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf
          /disk1/oracle/oradata/payroll/tbs_x.dbf
       3.
          Rename the datafile in the primary database and bring the tablespace back online:
          SQL> ALTER TABLESPACE tbs_4 RENAME DATAFILE      2> '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            3>  TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
          SQL> ALTER TABLESPACE tbs_4 ONLINE;
       4.
          Connect to the standby database, query the V$ARCHIVED_LOG view to verify all of the archived redo log files are applied, and then stop Redo Apply:
          SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
          SEQUENCE# APP
          8 YES
          9 YES
          10 YES
          11 YES
          4 rows selected.
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
       5.
          Shut down the standby database:
          SQL> SHUTDOWN;
       6.
          Rename the datafile at the standby site using an operating system command, such as the UNIX mv command:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf /disk1/oracle/oradata/payroll/tbs_x.dbf
       7.
          Start and mount the standby database:
          SQL> STARTUP MOUNT;
       8.
          Rename the datafile in the standby control file. Note that the STANDBY_FILE_MANAGEMENT initialization parameter must be set to MANUAL.
          SQL> ALTER DATABASE RENAME FILE '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            2> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
       9.
          On the standby database, restart Redo Apply:
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE
            2> DISCONNECT FROM SESSION;
    If you do not rename the corresponding datafile at the standby system, and then try to refresh the standby database control file, the standby database will attempt to use the renamed datafile, but it will not find it. Consequently, you will see error messages similar to the following in the alert log:
    ORA-00283: recovery session canceled due to errors
    ORA-01157: cannot identify/lock datafile 4 - see DBWR trace file
    ORA-01110: datafile 4: '/Disk1/oracle/oradata/payroll/tbs_x.dbf'Hope That Helps.
    Ogan

  • How to Move or Copy the Tables from One Database to Another Database ?

    HI,
          Can any one help me on this, How i can move or copy the tables from one database to another database in SQL server 2005 by using SQL query. Hope can anyone provide me the useful and valuable response.
    Thanks
    Gopi

    Hello,
    Maybe these links help you out
    http://www.microsoft.com/downloads/en/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
    http://www.suite101.com/content/how-to-copy-a-sql-database-a193532
    Also, you can just detach the database make a copy and move it to the new server.

  • How to move only subset of data from one database to another?

    Both source & destination are Oracle11g databases.
    The requirement details are as below,
    1) The database contains static as well as transactional data for telecom domain.
    2) We have to move region-wise data from one database to another.
    3) There are around 10 regions.
    4) The region wise data extraction from source db is based on around 40 to 50 tables. Rest of the tables contains
    static data & it will not change.
    5) The volume is around 1 million subscribers per region.
    6) The migration is required because
    a) The client is upgrading its base product which uses this database
    b) There is a change in structure of static tables
    c) Hardware upgrade
    d) The client want to start with single region on new database & rest of the regions will be operated from old
    database.
    7) Keep execution time to very minimum.
    I am thinking to have solution as below,
    1) Create destination database with upgraded db structure (as mentioned in 6b)
    2) Create database links to access source db in destination db.
    3) Write SQL queries to fetch data from all the respective tables for a specific region
    4) Write separate PL/SQL blocks for each table to fetch data from source db & insert into respective table in
    destination db
    a) Use FOR ALL & bulk collect to improve the performance
    b) Divide table data into multiple chunks & execute parallel batches (around 10) to insert the data
    5) Validate pre & post counts to verify the success of migration
    Is there any other better way?
    Regards,
    Sandeep

    How to move only subset of data from a partiular table by using transportable tablespace?
    E.g. SUB table using SMP_SUB tablespace contains subscriber data in source database.
    The indexes defined on SUB table are under SMP_IDX_SUB tablespace
    The subscribers data can be categorized by different regions, say region_id column. Then how to move data & indexes of SUB table from source db to destination db?
    any specific example would be helpful.

  • Move itunes music and playlists  from one disk to another on same mac pro

    I was running Maverick 10.9.1 on my early 08 Mac Pro. I was having significant problems with the system locking up and having to shut it down manually. After discussing the problem with an Apple Support Rep, I executed a clean installed of Snow Leopard 10.6.8 on a new HDD.  I need to move my itunes library from the old Maverick HD to the new Snow Leopard HD. My Time Machine is corrupted for the old drive.  How can I move my music and playlists from itunes on the old drive Maverick to the new Snow Leopard drive?  I will also need to move my address book contacts.  Any advice will be appreciated.

    Thanks. This solved the iTunes problem.  Any suggestion as to how I cam move or copy my address book to the new HD?  I can't find the location of the address book files on the old HD.

  • Move OAF personalizations and extensions from one instance to anothe

    Please
    tell me steps how to move Personlizations from one Instance to another Instance
    Regards,
    Vivek Gautam

    Hi I am make changes at bean level making a field Read only by personalization.But that is not getting migrated or even shown in the XML file generated please help
    DECLARE
    BEGIN
    jdr_utils.listcustomizations(p_document => '/oracle/apps/ar/cusstd/srch/webui/ArPrtySrchPG');
    END;
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_QUICK_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_GATEWAY_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/function/AR_ARXCUDCI_STD_VIEW/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/67606/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/site/0/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/org/229/ArPrtySrchPG
    /oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/57647/ArPrtySrchPG
    BEGIN
    jdr_utils.printdocument(p_document => '/oracle/apps/ar/cusstd/srch/webui/customizations/responsibility/57647/ArPrtySrchPG');
    END;
    <?xml version='1.0' encoding='UTF-8'?>
    <customization xmlns="http://xmlns.oracle.com/jrad" version="9.0.6.0.0_35" xml:lang="en-US" customizes="/oracle/apps/ar/cusstd/srch/webui/ArPrtySrchPG" xmlns:user="http://xmlns.oracle.com/jrad/user" user:responsibilityKey="cl cz_com_czk coll agent"
                   user:responsibilityAppId="695">
       <modifications>
          <modify element="pageLayoutRN" controllerClass="oracle.apps.ar.cusstd.srch.webui.xxArPrtySrchCO2"/>
       </modifications>
    </customization>

  • How to move a selected row data from one grid to another grid using button click handler in flex4

    hi friends,
    i am doing flex4 mxml web application,
    i am struck in this concept please help some one.
    i am using two seperated forms and each form having one data grid.
    In first datagrid i am having 5 rows and one button(outside the data grid with lable MOVE). when i am click a row from the datagrid and click the MOVE button means that row should disable from the present datagrid and that row will go and visible in  the second datagrid.
    i dont want drag and drop method, i want this process only using button click handler.
    how to do this?
    any suggession or snippet code are welcome.
    Thanks,
    B.venkatesan.

    Hi,
    You can get an idea from foolowing code and also from the link which i am providing.
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    width="613" height="502" viewSourceURL="../files/DataGridExampleCinco.mxml">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.binding.utils.BindingUtils;
    [Bindable]
    private var allGames:ArrayCollection;
    [Bindable]
    private var selectedGames:ArrayCollection;
    private function initDGAllGames():void
    allGames = new ArrayCollection();
    allGames.addItem({name: "World of Warcraft",
    creator: "Blizzard", publisher: "Blizzard"});
    allGames.addItem({name: "Halo",
    creator: "Bungie", publisher: "Microsoft"});
    allGames.addItem({name: "Gears of War",
    creator: "Epic", publisher: "Microsoft"});
    allGames.addItem({name: "City of Heroes",
    creator: "Cryptic Studios", publisher: "NCSoft"});
    allGames.addItem({name: "Doom",
    creator: "id Software", publisher: "id Software"});
    protected function button1_clickHandler(event:MouseEvent):void
    BindingUtils.bindProperty(dgSelectedGames,"dataProvider" ,dgAllGames ,"selectedItems");
    ]]>
    </mx:Script>
    <mx:Label x="11" y="67" text="All our data"/>
    <mx:Label x="10" y="353" text="Selected Data"/>
    <mx:Form x="144" y="10" height="277">
    <mx:DataGrid id="dgAllGames" width="417" height="173"
    creationComplete="{initDGAllGames()}" dataProvider="{allGames}" editable="false">
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:FormItem label="Label">
    <mx:Button label="Move" click="button1_clickHandler(event)"/>
    </mx:FormItem>
    </mx:Form>
    <mx:Form x="120" y="333">
    <mx:DataGrid id="dgSelectedGames" width="417" height="110" >
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Form>
    </mx:Application>
    Link:
    http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/ae9bee8d-e2ac-43 c5-9b6d-c799d4abb2a3/
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to get your pictures and contacts from one device to another

    hey guys I just bought an iphone 5s and I wanted to transfer all my photos and contacts from my old iphone which was a 4s to my 5s. when I tried to do it first time a message appeared on my computer and said that it couldn't transfer anything because the software on my iphone 4s was too old. I updated everything and I tried to restore the backup, but instead of restoring it from my most recent backup it restored it from a backup that happened about a year ago. So i need to know how to restore a backup from my iphone 4s and transfer it to my 5s

    The following has instructions for transferring to a new iPhone via either iCloud or iTunes: Transfer content from an iPhone, iPad, or iPod touch to a new device - Apple Support

  • How to transfer txt msgs and photos from one iPhone to another

    I've just upgraded from an iPhone 3GS to an iPhone 4 and want to move everything from one to the other. I figured out the music and contacts but not how to move the text messages and photos.

    iPhone: Transferring information from your current iPhone to a new iPhone

  • How to move worksheet saved on database from one instance to another?

    Hi Every one,
    How to move worksheet or workbook saved on database from Discoverer plus from one instance to other instance?
    Is there any way to save a workbook or work sheet on to local drive from discoverer plus.?
    Thanks
    santhosh

    Hi,
    You have 2 options: use Discoverer Administrator to export/import the workbook; or use Discoverer Desktop to save the workbook to the local drive.
    You cannot save a workbook to the local drive using Discoverer Plus.
    Rod West

  • How do I migrate settings and signature from one computer to another??

    I have a new computer. I have installed Adobe X Pro on the new machine, and now I woudl like ot move my preferences and signatures over. What do I need to copy from one machine to the other???

    You don't copy signatures, you'd copy digital ID files. The self-signed digital IDs that you create with Acrobat are saved as .pfx files (Win) or .p12 files (Mac). You can get the folder they're stored in via the Security Settings dialog in Acrobat:
    More info: http://help.adobe.com/en_US/acrobat/X/pro/using/WS11dd809af63f0e1e-43e0464b12b4384d3b6-800 0.html#WSe02e12b45a94f4a2-537cbc1612fe1252143-8000

  • How to transfer/ copy data and setting from one iPhone to another

    Hi,
    I recently cracked the screen on my 3G iPhone and a have fortunately managed to convince the insurance company to pay for a new one.
    I'd like to be able to transfer all my contacts, apps aand setting to the new phone. Only problem is I have to give back the old phone to get the new one.
    Any advice much appreciated, and thanks in advance to anyone who spend time to help

    The iPhone is designed to be synced with the supported applications on your computer for contact info, calendar events, and bookmarks. To transfer iTunes content and photos from your computer to your iPhone requires syncing with iTunes. Photos captured by your iPhone should be imported by your computer as with any other camera. The imported photos can be transferred back to your iPhone via the iTunes sync process.
    iTunes also creates and maintains a backup of your iPhone that includes data such as most iPhone settings, email account settings, SMS messages, notes, recent calls, call favorites, 3rd party app settings and data created and stored by 3rd party apps, contact info, and photos captured by your iPhone - but not a good idea to depend on the backup only for the last 2. Sync contact info with a supported application on your computer and import photos that were captured by your iPhone before giving up your iPhone. You can restore your new iPhone from your existing iPhone's backup followed by a sync.

  • How to move set of FND Message from one server to another server

    Hi,
    I am having a request need to transfer all customized FND MESSAGES from one server(developing server) to another server (client server). Tell me the possible ways to do this in Oracle R12.
    Thanks
    Vivek
    Edited by: 912882 on 4 Aug, 2012 2:54 PM

    This is a two step process. but for this you need to ensure that all your custom messages were created in custom application say XXC
    download all the mesages by typing the below command from the developing server unix box
    FNDLOAD apps/$CLIENT_APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/afmdmsg.lct XXC_CUSTOM_MESG.ldt APPLICATION_SHORT_NAME='XXC'once this command is successful you will get the definition and data in file XXC_CUSTOM_MESG.ldt.
    Place this file in the main server unix box and run the below command :
    FNDLOAD  apps/$CLIENT_APPS_PWD 0 Y UPLOAD $FND_TOP/patch/115/import/afmdmsg.lct XXC_CUSTOM_MESG.ldt - CUSTOM_MODE=FORCE

  • How to move iphoto albums or slideshows from one computer to another

    I have iphoto running both on my desktop ('08 = 7.1.5) and on my laptop ('09 = 8.1.2). The libraries contain a lot of the same images but they are not identical (and I don't want them to be). I create albums or slideshows or books on each of my machines and would like to then transfer them to the other one for keeps - without replacing the albums etc. in that library. How do I do that?
    Sorry if this is a dumb question that's been dealt with many times. I couldn't easily find an answer.

    You can move albums and their photos between libraries but not books, slideshows, cards, etc. So you will have to recreate those items in the other library.
    If you are able to get the library with the books, etc. up to speed as far as having all of the photos from the other library you can then copy that full library to the other computer so you will have the book and other keepsakes in both libraries.
    I suggest to create a separate library for the book and copy it between Macs as needed. It will be small enough to make the copying process quicker. You can add additional photos to the book library as needed from either of your other libraries.
    This tutorial may be of some help if you decide to go that route: Old Toad's Tutorial #9a - Archiving an iPhoto 7(08)/8(09) Book for Editing and/or Ordering at a Later Date.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    NOTE: this is not the same as routinely backing up your entire iPhoto library folder to protect your photos. It only protects the loss of your organizational efforts that the database file contains.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

Maybe you are looking for

  • Since downloading and installing Firefox 3.6.16, Firefox crashes when clicking on certain e-mails in my inbox. I need help.

    I installed v. 3.6.15 on 3/21/2011. Since then Firefox crashes when clicking on random e-mails in my inbox. I am running v. 10.6.7 on my iMac which I installed on 3/29/2011. I am running Java v. 10.6, Update 4, which was installed on 3/10/2011. My Ad

  • My macbook pro 13 inches starts extremely slowly.

    I did not use it almost 6 months and kept it in a neoprene sleeve and store in book rack. RAM 8GB DDR3 installed by store when purchased. recently worked well. Remaining HDD available space greater than 500GB. Hardware test even could not finish a wh

  • IOS 8 bugs and fails

    hello, I got the iPhone 6 Plus 128GB and plugget it to iTunes and restored from backup of my previous iphone 5s... the first 3 months it was okay bit when my iPhone started filling the bugs started to appear and one after one until they became a big

  • Restting the number ranges

    Client Copy: Each time a client copy is made, material movement postings cannot be processed until several number ranges are reset and the user gets the message Express document “update was terminated”. These number ranges can be reset thru SNRO. But

  • Any function module for PIC01??

    Hi Guys, Could you please tell me, do we have any function module / BAPI for the transaction PIC01 - to create supersession.... suggest me if any one worked on supersession conversion.... -Mahesh.