How to move modified multiprovider to production from development

Hi Guru,
              we had modified the multioprovider(based on 2 infocubes) in the  development system and need to transport to the production,in development we had deleted the data in the cubes to redesign the multiprovider, so what will be the case in production ,did i need to delete the data in cubes before transporting the mulitprovider?
Edited by: venkata cv on May 28, 2009 5:19 PM

Hi venkat,
              Did you modify only Multirovider.
If so Collect Multirovider in transport connection
choose Grouping option as -
>only necessary object
collection mode as -
> Collect automatically.
assign package
collect under one request by click on transportation icon.
Go to TX : SE09  release your request.
Import request in respective target system based on your transportation route else communicate with basis team.
Hope this will help you.
Thanks,
Vijay.

Similar Messages

  • 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

  • How to replace a page in production from development?

    Hi,
    My development environment is Apex running locally on a Windows 7 box (Apex 4.2.2 and Oracle 11g).  I want to export a single page from the development app and import it (replacing the same page number) in the production app, which resides on a 3rd party app hosting server (also version 4.2.2).  When importing into the production environment, I get the following message.
    "This page was exported from a different application or from an application in different workspace. Page cannot be installed in this application."
    There must be a way to export/import a single page from a development environment into a production environment.  What approach should be taken?
    Thanks,
    Kim

    As long as the apps have the same app id, you should be able to export from dev and import into production.. However, this is NOT the recommended method to do migrations..  Better to do an app as apposed to pages..
    Thank you,
    Tony Miller
    SmartDog Services
    Austin, TX

  • How to transport/move a table with data from development to Test to Production

    Hi,
    How to transport/move a table with data from development to Test to Production..? Export-Import a Delivery Unit does only the structure and not the data
    Reg
    Sri

    Hi Sri,
    You cannot transport Data via Transport route in HANA, you can only transport code changes/Structure via DU. For Data movement, you either have a do a export/import from a flat file or replication from a Source System to HANA.
    Thanks Much,
    Abhishek

  • HT204266 I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the di

    I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the differences between countries' iTunes offerings? Does one really need an address and a credit card for any country to be able to access that countries iTunes store? Why these restrictions?

    You cannot.
    You cannot use another countrys itunes store.
    You must be physically locates inside the borders of a country to use that countrys itunes store and a credit card issued in that country with a valid billing address in that country.
    The owners of the distribution rights of movies/music/etc differ by country.  These distributors decide who can sell their content in that country.
    Buy from another source if your countrys itunes store does not carry somehting that you want.

  • 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

  • When i open up BEX explorer how to know it is off production or development

    SDN Experts,
    when i open up BEX explorer how to know it is off production or development? because i always have development,testing and production screens open. Also do anybody know how to change the background color of SAP AWD screen?
    Thanks!
    York

    Pizzaman,
    I try exactly like you mentioned from Business Explorer menu, it is showing all the information like you said but it is not displaying anywhere on the screen. please help.
    York

  • 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.

  • How to move the mirrlogA and mirrlogB from C drive to D drive

    Hi experts,
    I Need to move the mirrlogA and mirrlogB directories from C drive to D drive do i need to make any modifications to the configuration files.
    i can only this line in intDEV.ora file.but i can see the directories in C drive mirrlogA and mirrlogB but i cant find the entries in initDev.ora abt the C drive.
    "control_files = (D:\oracle\DEV\origlogA\cntrl\cntlrDEV.dbf, D:\oracle\DEV\origlogB\cntrl\cntrlDEV.dbf, D:\oracle\DEV\sapdata1\cntrl\cntrlDEV.dbf)"
    Can you suggest me how to move them and how to restart the system with out errors.
    regards,
    surya.

    Hello Surya,
    > I Need to move the mirrlogA and mirrlogB directories from C drive to D drive do i need to make any modifications to the configuration files.
    If you do not modify any oracle "settings" .. you have to do 2 things.
    1) Change the entry in the pfile / spfile for the control files
    2) Rename the redo log files to the new location with the ALTER DATABASE RENAME command after you have shutdown your database
    For more information how to rename a file take a look at:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/onlineredo.htm#sthref951
    Regards
    Stefan

  • How to move songs in one playlist from one mac to another?

    I am running the current version of  iTunes on my MacPro and my MBAir, both of which are authorized computers in my iTunes account.  I would like to copy the tunes in one playlist on my MacPro to my MBA, so that I can take them on the road.  Some of the songs are purchased from the iTunes store, and some have been ripped in from CDs I own.  I have found numerous links explaining how to move an entire iTunes library to a new computer.  But, I simply want to copy a few files from one Mac to another so that I can play them on either machine.  How do I do this?  Thanks!

    There are no shortcuts with the way your iTunes libraries are set up. You'll just have to go to each individual song, use "Show in Finder" to locate the actual file and copy and paste them to your other computer's iTunes.
    What I suggest for someone who has multiple computers is to designate one computer to store all of your iTunes content and use the Home Sharing feature to stream to the other computer. iTunes was not designed for an individual that has multiple computers.

  • 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 to move all or partial data from Mac to an external hard disk?

    Hei,
    I need to learn how to move the movies/projects/events from mac hard drive to another external hard drive.
    So basically, I have always imported all events from my video camera (the original clips) to iMovie located in my MacBook Pro hard drive. But after videoing for one year, the hard disc is starting to get full, and I cannot continue using only the laptop's hard drive.
    So I would like to move part OR all of my iMovie related stuff to another external disk drive (connected with USB wire). How do I do that? Is it possible to have some events located in Mac's own hard drive, and some clips/projects in the external hard disk? How to arrange all this?
    I know that "projects" are linked to the original event clips, so if I would be able to export some part of my iMovie data to the external hard drive, I should export both, for example, everything from the same year (the events) which is linked to the projects that are using those data.
    Any tips would be greatly appreciated.

    ok First with IM9, you can easily move stuff around. Here are some lessons learned from my experience managing projects across 6 different drives.
    1. All Drives must be formatted macos extended journaled
    2. The large terabyte drives are great for long term storage of events
    3. When you are working on a project, if possible, try to move the clips the current clips you will need to your internal hard drive. This is only necessary if you care about any time machine back ups.
    4. I have also worked on project straight from the external drives. I also use portable drives such as WD passports. These are small 500 gig drives that can travel with you. I have three of those. LOVE THEM.
    5. One way to move projects and clips and keep things organized is to move the project using command drag. It will ask, do you want to move just the project or project and clips. Then voila all clips and project are then moved to that drive!
    6. REMEMBER...MOVE WITHIN IMOVIE using COMMAND Drag. NEVER EVER USE THE FINDER. This is for both projects and events. Using the Command Key will ensure the projects are moved and not just copied!
    7. Last but not least, if you have changed the dates of events using change date function in imovie....For some reason, there is a bug. It inconsistently will change the date. Don't know why and have reported the issue, but it is still not fixed!
    But its still a great little app!

  • How ERP Movement Type is being determined from EWM

    Hello,
    Could you explain me, how ERP Movement is being determined from EWM goods movement posting?
    For example, when I upload the stock, ERP movement is determined at 561. When we do, Goods Receipt, ERP movement is determined as 101. How this movements are controlled or being determined.
    Regards,
    Sathish

    Hi,
    there are some systemtables, starting with "/SCWM/TIMBWA*", which are being used for the determination.
    Brgds
    Juergen
    Want to learn EWM?
    Check for EWM courses @ https://training.sap.com/curriculum/scm_ewm
    Get a SAP Learning Hub Subscription: https://training.sap.com/shop/learninghub

  • 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 users between OU's from an exported list

    Hey Guys
    New to Powershell
    We are going to move large number of users from one OU to another.. For that I am using
    get-aduser -filter * -searchbase "OU=ou1,DC=domain" | move-adobject -targetpath "OU=ou2,DC=domain"
    As a backout plan we want to reverse that.. so what I am thinking is to right click on the OU1 and export list as txt. So we have all users in a tab/csv format with username.. How can I then write a one liner / script to search for all the users in the list
    in AD (or in specific OU2 in AD) and then move them to another OU (or OU1 as above example)?
    Or if there is a better quicker method please let me know.
    Cheers

    Hi,
    Here's something to start with:
    $targetOU = 'OU=Test 2,DC=domain,DC=com'
    Get-ADUser -Filter * -SearchBase 'OU=Test 1,DC=domain,DC=com' | ForEach {
    $props = @{
    Name = $_.Name
    Username = $_.SamAccountName
    OriginalOU = ($_.DistinguishedName -split ',OU=' -split ',')[1]
    NewOU = ''
    Status = ''
    try {
    Move-ADObject -Identity $_.DistinguishedName -TargetPath $targetOU -ErrorAction Stop
    $props.NewOU = ($targetOU -split ',' -replace 'OU=','')[0]
    $props.Status = 'Success'
    } catch {
    $props.Status = 'FAILED'
    New-Object PsObject -Property $props
    } | Sort Name | Select Name,Username,OriginalOU,NewOU,Status | Export-Csv .\userMoveDetails.csv -NoTypeInformation
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)
    Sorry new to coding.. but this looks awefully complicated for my situation.. Won't the code which I have said simple move users from one container to another existing one? Just need to know how to do the reverse if needed .. OU2 will already have users..
    so need to differentiate and was thinking the right click on OU1 and export list.
    Thanks

Maybe you are looking for

  • Error while exporting one user

    Hi all, While Exporting on user in Oracle 9.2.0.1 i am getting this error: EXP-000008 ORACLE error 600 encountered. ORA-00600: internal error code,arguments: [12811], [41965],[] ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 248 ORA-06512 : at line

  • Selecting Lists/Grids From a Child Table

    If I have a parent table "Patient" it has two product tables (Parent Table related 1 <--to--> Many Child Tables) and I make a screen for One Child Table so that it gives me a selection box for the parent table. I can already then show on the screen p

  • Abap Server Proxy acknowledgment

    Hi All, Typicall scenerio FILE->PI->ERP(abap server proxy). is there any possibility(excluding BPM) to request acknowledgment from erp to be sent to pi and fill second column in sxi_monitor. similar situation to aleaud in idoc processing.. BR Maciej

  • DYNPRO_NOT_FOUND runtime error in O4F2

    Hi,   I am getting DYNPRO_NOT_FOUND runtime error while call screen statement is executed in t-code O4F2 in production. I checked the screen that is being called. The screen is active and there are no differences in the screen in dev and prod systems

  • An SQL Script for detecting fragmented Indexes

    Is there a script that I can run on a 2008 or a 2012 sql server to tell me all the tables and indexes that are fragmented over 30% and has over 100 pages? Thanks in advance.