Post processing steps after system copy

Hi experts,
Please clarify the doubts, reg my situation,
We don have our development server in synchronous with production server, so we destroyed the existing development client and copied the production client, now the new system logical name  in sm30 in table T000 is MABCLNT900 and also our production server is same,as we copied it from production server, previously our development server was with MAACLNT495 which was mapped with MAQCLNT500 , R3 test sytem,
in this scenario we want run BDLS tool to change client name in both R3 and BW , Please explain step by step procedure in achieving this,
Thanks in advance

Hi,
As I understood your system landscape should look like this:
BW DEV (MAACLNT495) <-> R3 DEV (MAQCLNT500)
BW PRD (MABCLNT900) <-> R3 PRD (???)
After BW system copy you should change connections in SM59 and then use BDLS to change logical system name.
You can also use Restore function for source systems (RSA1).
Although if you copy both R/3 and BW systems at the same time it's possbile just to keep the same logical system names as they are in productive (it's easier to maintain).
Please read notes: 886102, 543715, 325470, 325525, 184322, 886102, 184971, 184447, ...
regards
Krzys

Similar Messages

  • Post Processing Steps after Support Package Stack Application

    I'm curious if anyone has any guidelines for post processing steps (or pre-processing) when applying Support Package Stacks to their Development Infrastructure (Developmend Workplace and the Central NWDI Server).  We have just upgraded a couple of developers local engines and developer studio to SP stack 19 from SP stack 14 and are experiencing some problems.  We also applied the J2EE stack and appropriate SCA files to the NWDI server.
    After the support packs it looks like our DTR files are gone (when reimporting configuration via Developer Studio the SC's are there but there are no DC's inside of them).  Additionally, it looks like we have to manually reimport the newest versions of SAP_BUILDT, SAP_JTECHS, and SAP-JEE.  Another thing is that old Local Web Dynpro DC's are now complaining about class path problems and different versions of files.  We followed the documentation for applying SP19 exactly as the documentation says for a Java Development Usage type.  Is there a checklist or something that anyone has for steps to perform after the application of the support packs?

    I think I'm missing something.  Now I see the code and DC's inside the DTR.  However, when I try to import into NWDS no DC's come in (the software components exist, but no DC's in them).  Additionally, the CBS web ui reports that my software components do not contain any DC's even though I see them in the DTR.  What things can I look at to determine what I'm missing here?
    Thought I'd add some more info..after applying the support packs, we imported the new SAPBUILD, SAP_JTECH, and SAP_jee SCA'S into our track as we required some functionality from the newer build SCA.  We also reimported our old archives back into the system by manually checking them in assuming this would fix the problem with us not seeing the source in the NWDS or the DTR.  After the import, the CBS no longer sees our custom DC's, but the DTR does (both in active and inactive ws).  When importing the dev configuration into the NWDS our custom DC's no longer appear, but SAP's standard SCA's do.
    Message was edited by:
            Eric Vota

  • Post installation steps after SAP BW system copy

    Hi!
    I am about to do post processsing steps after system copy of SAP BW system.
    1) One of the steps is to delete all entries from tables DBSTATHORA, DBSTAIHORA, DBSTATIORA,
    DBSTATTORA.
    Question: what is the way to do this?
    2) During the installation I received the error within import ABAP step.
    (IMP) INFO: import of D010TAB completed (4477754 rows) #20090505133631
    DbSl Trace: Error 12801 in exec_immediate() from oci_execute_stmt(), orpc=0
    DbSl Trace: ORA-12801 occurred when executing SQL stmt (parse error offset=0)
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 STORAGE (INITIAL 423090176 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) NOLOGGING COMPUTE STATISTICS PARALLEL )
    DbSlExecute: rc = 99
    (SQL error 12801)
    error message returned by DbSl:
    ORA-12801: error signaled in parallel query server P000
    ORA-01659: unable to allocate MINEXTENTS beyond 34 in tablespace PSAPSR3700
    (DB) INFO: disconnected from DB
    As solution I changed the the following lines within D010TAB.TSK:
    from D010TAB~ 0 C err to D010TAB~0 C ign and
    from D010TAB1  C err to D010TAB1 C ign
    Question:
    how to create index manually after system copy?
    Thnak you very much!

    Jgen Pfeiffer wrote:>
    > Hi!
    >
    > I am about to do post processsing steps after system copy of SAP BW system.
    >
    > 1) One of the steps is to delete all entries from tables DBSTATHORA, DBSTAIHORA, DBSTATIORA,
    > DBSTATTORA.
    > Question: what is the way to do this?
    Simply run
    TRUNCATE TABLE <table_name>;
    for each of those tables.
    Make sure to either logon as SAP<SID> or provide the owner of the tables with the statement.
    > 2) During the installation I received the error within import ABAP step.
    > (IMP) INFO: import of D010TAB completed (4477754 rows) #20090505133631
    > DbSl Trace: Error 12801 in exec_immediate() from oci_execute_stmt(), orpc=0
    > DbSl Trace: ORA-12801 occurred when executing SQL stmt (parse error offset=0)
    > (DB) ERROR: DDL statement failed
    >  (CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 STORAGE (INITIAL 423090176 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) NOLOGGING COMPUTE STATISTICS PARALLEL )
    >  DbSlExecute: rc = 99
    >  (SQL error 12801)
    >  error message returned by DbSl:
    > ORA-12801: error signaled in parallel query server P000
    > ORA-01659: unable to allocate MINEXTENTS beyond 34 in tablespace PSAPSR3700
    > (DB) INFO: disconnected from DB
    >
    > As solution I changed the the following lines within D010TAB.TSK:
    > from D010TAB~ 0 C err to D010TAB~0 C ign and
    > from D010TAB1  C err to D010TAB1 C ign
    >
    > Question:
    > how to create index manually after system copy?
    The problem here was the large INITIAL size clause.
    If there is enough freespace at all in the tablespace this should work:
    CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 NOLOGGING COMPUTE STATISTICS PARALLEL;
    If I'm not wrong, the second index is just vice versa:
    CREATE UNIQUE INDEX "D010TAB~1" ON "D010TAB" (  "TABNAME", "MASTER" ) TABLESPACE PSAPSR3700 NOLOGGING COMPUTE STATISTICS PARALLEL;
    In general it is really not a good idea to skip the creation of unique indexes...
    regards,
    Lars

  • Accounting document not copied after system copy.

    Hi,
    We copied the production system into our test system using backup/restore.  In the post copy verification, our CO team complained because they could not see the "accounting documents".
    What do you think happened why the accounting document was not copied?
    thanks
    krbas

    Hi Krbas,
    Make sure you did all the post processing activities after system copy. I doubt you missed some post processing activities related to CO after your system copy.
    regards,
    VInodh.

  • Post processing after system copy from standalone to cluster enviornment

    Hi,
    I have done a system copy(Backup restore method) from a standalone quality BW (QBW) system to cluster environment (TBW).
    The steps I have followed as follows.
    . setup the machines in the cluster environment  ( Windows 2003 EE server,sql 2005 SP3)
    . Backup the current database in the source system
    . Given a different SID (TBW) during the System copy installation .its a dual stack installation.
    . Restore the database in the target system and select the back up restore method during the system copy database installation step.
    .The installation completed successfully and i m having some doubts regarding the post processing steps after this .
    We want to retain the same client in the target system ,for this i need to rename the  logical name .Kindly assist me for changing the logical name for the extraction of BW delta process from extraction server to BW system and also the other steps I have to follow after system copy.
    Thanks
    Arun Padikkal

    Hi Arun,
    You should probably post this question in a basis forum.
    Cheers,
    Diego

  • Logical System Name after System Copy

    Hello,
    I have three questions about the logical system name after system copy.
    Q1) When I change SID D22 to S11 during system copy,
    do I have to change the logical system name of all clients in the target system? The target system is used for test, and the landscape has S11 and Virtial system. The target system S11 does not communicate with the source system D22.
    Q2)  If the answer for Q1 is YES, is it correct that the following procedure for changing logical system name?
    1.Tr-CD:BD54
       Add new logical system name for all clients in the target system.
    2.Tr-CD:SCC4
       As for all clients, select new logical system name with F4 help.
    Q3) If the answer for Q1 is YES, do I have to add new RFC connection entries with SM59 for all clients in the target system?
    I refer to the guide "Homogeneous and Heterogeneous
    System Copy for SAP Systems Based
    on SAP Web Application Server
    ABAP 6.40 SR1".
    thanks,
    Keishi

    Hi Keishi,
    As a good and ideal practice the answer to your first question Q1 is yes. Infact I would say that in case you are using ALE then it is must
    For Q2 there has to be an additional step which is most important one. Running BDLS transaction which would allow you to change logical systems in relevant tables from the one of source system to target system.
    For Q3  the answer is agaain yes and you can have two approaches>
    1. manually recreate all the RFC destinations after sys. copy.
    2. Export all the RFC destination data relevant tables before system copy and then reimport them after sys. copy.
    Regards.
    Ruchit.

  • User password problem in RFC after system copy

    HEllo,
    we have a problem in ECC6.0 after system copy (refresh QUAL system by PRD data).
    BEfore doing this copy, we export RFC data (SM59 tables) of our QUAL system and after the refresh we reimport these RFC in our QUAL system. We don't want RFC comming from productive system.
    After this reimport, RFC configuration is ok but we have a problem with RFCuser password. In the password box we have "inconsistent"...
    Have you an idea to reimport succesfully these informations ?
    Thanks
    lionel

    Hello,
    We performed another refresh yesterday. But unfortunatly it was not working. Password are still inconsistent.
    This are exactly way we perform it:
    Before restoring DB :
    export table via R3trans for tables:
    RFCDES, RFCDOC, RFCATTRIB, RFCCHECK, RFCDESSECU, RFCSYSACL, RFCTRUST, RFCCMC, RFCGO, SXRFC, IBSSI_RFCDEST, PARAMVALUE, RSECACTB where ident LIKE '___/RFC%'
    export users via scc8
    Restore DB, truncate upper rfc tables,  import rfc Tables
    Check SM59 => inconsistent
    Migrate Secstore => still inconsistent
    Import Users via transport generated by scc8
    run scc7 as post actions
    Tuncatate/re-import rfc tables
    Check SM59 => inconsistent
    Migrate Secstore => still inconsistent
    What else could be done ?
    We have a lot of RFC. so re-enter all password is really a hudge task ..
    Thanks a lot for help

  • J2ee engine does not start up after system copy

    Dear All,
    I have done a system copy of BW3.5 (NW04). I installed the BW.3.5 and then replaced the data and control files.
    This has ABAP + java.
    Now after system copy when i am starting the server, the J2ee instance doesnt start up.
    ABAP is running and DB is up too.
    I am getting the following error in log_bootstrap file:-
    Exception occured:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
            at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
            at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
            at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:813)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.bootstrap.SynchronizationException: No such Dialog Instance (ID1125100) in the database! Check
    database consistency or local Bootstrap properties!
            at com.sap.engine.bootstrap.Synchronizer.getElementType(Synchronizer.java:81)
            at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:420)
            at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
            at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:813)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    [Aug 26, 2008 2:00:26 PM ] [Bootstrap module]> Problem occured while performing synchronization.
    [Aug 26, 2008 2:00:42 PM ] -
    [Aug 26, 2008 2:00:42 PM ] Bootstrap MODE:
    [Aug 26, 2008 2:00:42 PM ] <INSTANCE GLOBALS>
    [Aug 26, 2008 2:00:42 PM ]  determined by parameter [ID0011251].
    [Aug 26, 2008 2:00:42 PM ] -
    [Aug 26, 2008 2:00:46 PM ] Exception occured:
    com.sap.engine.frame.core.configuration.NameNotFoundException: A configuration with the path "cluster_data/di
    spatcher/ID1125100" does not exist.
            at com.sap.engine.core.configuration.impl.ConfigurationDataCacheAllImpl.getSubConfiguration(Configura
    tionDataCacheAllImpl.java:107)
            at com.sap.engine.core.configuration.impl.ReadAccessConfiguration.getSubConfiguration(ReadAccessConfi
    guration.java:715)
            at com.sap.engine.bootstrap.Synchronizer.getConfiguration(Synchronizer.java:365)
            at com.sap.engine.bootstrap.Synchronizer.getElementType(Synchronizer.java:78)
            at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:420)
            at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
            at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:813)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    What could the problem?. Do I need to do some other settings for system copy of JVA instance?
    Kindly help
    Thanks
    Tajinder

    Hi,
    I already checked that note. It did not help.
    I am pasting mine dev_jcontrol file:--
    trc file: "/usr/sap/BD1/DVEBMGS00/work/dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 868524
    system name : BD1
    system nr.  : 00
    started at  : Tue Aug 26 16:27:10 2008
    arguments   :
        arg[00] : jcontrol
        arg[01] : pf=/usr/sap/BD1/SYS/profile/BD1_DVEBMGS00_BWQAS
        arg[02] : -DSAPSTART=1
        arg[03] : -DCONNECT_PORT=64380
        arg[04] : -DLISTEN_PORT=64381
        arg[05] : -DSAPSYSTEM=00
        arg[06] : -DSAPSYSTEMNAME=BD1
        arg[07] : -DSAPMYNAME=BWQAS_BD1_00
        arg[08] : -DSAPPROFILE=/usr/sap/BD1/SYS/profile/BD1_DVEBMGS00_BWQAS
        arg[09] : -DFRFC_FALLBACK=ON
        arg[10] : -DFRFC_FALLBACK_HOST=localhost
    JStartupReadInstanceProperties: read instance properties [/usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.proper
    ties:/usr/sap/BD1/DVEBMGS00/SDM/program/config/sdm_jstartup.properties]
    -> ms host    : BWQAS
    -> ms port    : 3601
    -> OS libs    : /usr/sap/BD1/DVEBMGS00/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> files [01] : /usr/sap/BD1/DVEBMGS00/SDM/program/config/sdm_jstartup.properties
    Instance properties
    -> ms host    : BWQAS
    -> ms port    : 3601
    -> os libs    : /usr/sap/BD1/DVEBMGS00/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> [01] bootstrap_ID1125100  : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> [02] bootstrap_ID1125150  : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    Worker nodes
    -> [00] ID1125100            : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> [01] ID1125150            : /usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> [02] sdm                  : /usr/sap/BD1/DVEBMGS00/SDM/program/config/sdm_jstartup.properties
    [Thr 01] Tue Aug 26 16:27:10 2008
    [Thr 01] SigISetDefaultAction : default handling for signal 20
    [Thr 01] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 258] JControlDPMessageFunc: Thread 258 started as handler thread for R/3 dispatcher messages.
    [Thr 01] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) -
    using -Xmx512m [jstartxx_mt. 2282]
    [Thr 01] [Node: bootstrap] java home is set by profile parameter
            Java Home: /usr/java14_64
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : /usr/java14_64
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM) build caix64142-20060421 (SR5) (JIT enabl
    ed: jitc)
    -> java vm vendor  : Classic VM (IBM Corporation)
    -> java vm type    : <default>
    -> java vm cpu     : ppc64
    -> heap size       : 512M
    -> root path       : /usr/sap/BD1/DVEBMGS00/j2ee/cluster
    -> class path      : ./bootstrap/launcher.jar
    -> OS libs path    : /usr/sap/BD1/DVEBMGS00/j2ee/os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : /usr/sap/BD1/DVEBMGS00/j2ee/os_libs/jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0011251
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = /usr/sap/BD1/DVEBMGS00/j2ee/os_libs/jlaunch
    -> arg[00] = /usr/sap/BD1/DVEBMGS00/j2ee/os_libs/jlaunch
    -> arg[01] = pf=/usr/sap/BD1/SYS/profile/BD1_DVEBMGS00_BWQAS
    -> arg[02] = -DSAPINFO=BD1_00_bootstrap
    -> arg[03] = -file=/usr/sap/BD1/DVEBMGS00/j2ee/cluster/instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=12582961
    -> arg[07] = -jvmOutFile=/usr/sap/BD1/DVEBMGS00/work/jvm_bootstrap.out
    -> arg[08] = -stdOutFile=/usr/sap/BD1/DVEBMGS00/work/std_bootstrap.out
    -> arg[09] = -locOutFile=/usr/sap/BD1/DVEBMGS00/work/dev_bootstrap
    -> arg[08] = -stdOutFile=/usr/sap/BD1/DVEBMGS00/work/std_bootstrap.out
    -> arg[09] = -locOutFile=/usr/sap/BD1/DVEBMGS00/work/dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=/usr/sap/BD1/SYS/profile/BD1_DVEBMGS00_BWQAS
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=64382
    -> arg[14] = -DLISTEN_PORT=64381
    -> arg[15] = -DSAPSYSTEM=00
    -> arg[16] = -DSAPSYSTEMNAME=BD1
    -> arg[17] = -DSAPMYNAME=BWQAS_BD1_00
    -> arg[18] = -DSAPPROFILE=/usr/sap/BD1/SYS/profile/BD1_DVEBMGS00_BWQAS
    -> arg[19] = -DFRFC_FALLBACK=ON
    -> arg[20] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = LIBPATH=/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/B
    D1/DVEBMGS00/j2ee/os_libs:/usr/sap/BD1/SYS/exe/run:/usr/sap/BD1/SYS/exe/runU:/usr/lib:/usr/sap/BD1/DVEBMGS00/
    j2ee/os_libs:/usr/sap/BD1/DVEBMGS00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/BD1/SYS/exe/run:/usr/sap/BD1/SYS/exe/
    runU
    -> exe path = PATH=/usr/java14_64/bin:/usr/sap/BD1/DVEBMGS00/j2ee/os_libs:/oracle/BD1/920_64/bin:/usr/java14_
    64/bin:/home/bd1adm:/usr/sap/BD1/SYS/exe/runU:/usr/sap/BD1/SYS/exe/run:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home
    /bd1adm/bin:/usr/bin/X11:/sbin:.
    [Thr 01] JStartupICreateProcess: fork process (pid 893002)
    [Thr 01] Tue Aug 26 16:27:18 2008
    [Thr 01] *** ERROR => invalid return code of process [bootstrap] (exitcode=66) [jstartxx_mt. 1433]
    [Thr 01] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=66)
    [Thr 01] JControlCloseProgram: started (exitcode = 66)
    [Thr 01] JControlCloseProgram: good bye... (exitcode=66)
    DO i have to change the some settingdsin any file for java instance after system copy.
    Thanks
    Tajinder

  • Steps after sys copy

    hi
    ı have done homogenous sys copy
    ı have 2 questions :
    1-after system  copy is it enough making changes using tcode scc4 for logical sys name and client roles ?
    we dont use ale  apps.  should ı run bdls?
    2-  which option I should run sgen  with ?
    thsnks in advance

    Hi
    You need to perform all post system copy activites mentioned in the system copy guide @ http://service.sap.com/systemcopy
    For logical system changes Refer
    Change logical system names after system copy
    Sgen : I would reccomend to  select all components .
    Regards,
    Nibu Antony

  • RFC users locked after system copy in production system

    Hi,
    BW_User,MDBTC(RFC users) system users were locked in our BI Production system at the same time system copy activity was running in the Quality system(production to quality) so as per our colleagues concern after system copy they started Quality system with out changing background work-process 0 so some jobs were triggered which were copied from production system.
    Is there any cause to lock RFC users in production system for system copy? If there is any other reason where we can check logs
    Thanks
    Jalandhar Reddy

    Hi,
    Well maybe i am wrong to analyze your problem .
    Anyway I faced this issue to in our system before and we found that one background job was running  in a system that has basically  prompting an RFC connection to another system. In the t.code SM59 and there was wrong password was put in.We just reset the password and it was worked fine.
    You can try for this..
    Regards
    Bhuban
    RKFL

  • Cube is still assigned to original system after system copy

    Hello Experts,
    After system copy (BW and ECC), some cubes are still assigned to the original system.
    Displaying the flow, the cube is assigned to the new system and the original one and the error message RSAR203 "Source system & (old one) does not exist" is araised.
    I see that RFC connexion with original system are still in the system (were not deleted by basis team).
    I have this problem only for cubes.
    Any idea how can i fix this issue?
    Thank you in advance.
    Edited by: SALHI Amal on Oct 13, 2011 11:37 AM

    HI,
    You can try the tcode 'bdls'. in this tcode you copy all tables to new source system.
    Regards,
    AleX

  • Problem with extractors after system copy

    Hi Gurus!
    After system copy I have problem with export data source from infocubes. Logical system name was converted  with BDLS. When I check any export datasource (8*) with transaction RSA3 system tell me that no data records was found though data in fact table every infocube exist (in SE11). What can I do to solve this problem?
    Thanx.

    Hi,
    Of course I tried reactivate myself source system but problem is still here. When I check extractor (with RSA3) of any data source of  any infoobject (master data) - everything is OK. When I check extractor for export data sorce - I have problem.
    to Mickael: In modeling every thing is OK.
    Thank you for all answers.....

  • License Error after system copy

    Hi,
         After system copy licensing the sap giving this error.
    MLICHECK0 in *LIBL type *FILE not found.            
    MLICHECK__0 in *LIBL type *FILE not found.          
    MLICHECK~I1 in *LIBL type *FILE not found.          
    MLICHECK in R3BDDDATA type *FILE already exists.    
    Alternative name for file MLIC0002 not allowed.     
    "MLICHECK~0" in R3BDDDATA type *FILE already exists.
    Help me to solve the issue.
    Thanks and Regards
    G Singh

    Hi G Singh,
    this error message "smells" extremly like RCLSTG *DBXREF !
    If this problem is still your pronblem, I would run this command - in restricted mode - takes only about 30-60 minutes ...
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Errors after system copy ...

    Dear all,
    envi---         AIX 5.3 & oracle 10.2  -
      ECC 6.0SR1    ABAP ........only
    I have restored a backup of PRD to QAS successfully ... for system copy...
    I have created ops$ users with following statments..
    create user ops$qlyadm identified externally default tablespace PSAPSR3USR temporary tablespace PSAPTEMP quota unlimited on PSAPSR3USR  (  sidadm)
    create user ops$oraqly identified externally default tablespace PSAPSR3USR temporary tablespace PSAPTEMP quota unlimited on PSAPSR3USR  ( orasid  )
    Successfully created control file & managed to take the database up...
    Enter user-name: / as sysdba
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1728053248 bytes
    Fixed Size                  2071840 bytes
    Variable Size             872415968 bytes
    Database Buffers          838860800 bytes
    Redo Buffers               14704640 bytes
    Database mounted.
    Database opened.
    SQL>
    after the following action when i tried to startsap. with user sidadm the following is the message..
    Checking QLY Database
    ABAP Database is not available via R3trans
    Starting SAP-Collector Daemon
    Start of saposcol failed
    Running /usr/sap/QLY/SYS/exe/run/startdb
    Trying to start QLY database ...
    Log file: /home/qlyadm/startdb.log
    /usr/sap/QLY/SYS/exe/run/startdb: Terminating with error code 12
    DB startup failed
    athomedev:qlyadm 26>
    As a result when i checked startdb.log the following is the message.......
    Fri May 29 16:03:32 IST 2009
    starting database
    SQL*Plus: Release 10.2.0.2.0 - Production on Fri May 29 16:03:32 2009
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    ORA-10997: another startup/shutdown operation of this instance inprogress
    ORA-09967: unable to create or open lock file
    IBM AIX RISC System/6000 Error: 13: Permission denied
    Disconnected
    Fri May 29 16:03:32 IST 2009
    Connect to the database to verify, that the database is now open
    R3trans check finished with return code: 12
    ERROR: Startup of database failed
        Notify Database Administrator.
    /usr/sap/QLY/SYS/exe/run/startdb: Terminating with error code 12
    Request to advice me on the following  & also advice me the way i created ops$ users is that right way or not..
    rgds,
    rahul...
    Edited by: Rahul on May 29, 2009 4:21 PM

    Dear all,
    thanx for sharing,, I have actually odnea mistake after system copy. I tried to make the system up with  out creating ops$ suer.
    I have followed notes
    361641 Creating OPS$ users on UNIX & created ops$ created ops$ user with automated script & from attchment provided in Note 50088 - Creating OPS$ users on Windows NT/Oracle
    after that
    alter sytem sapr3 account unlock;
    system is up & runnig.
    regards
    ravi kiran

  • Change logical system names after system copy

    Hi!
    We successfully installed SAP ECC 6.0 system as system copy.
    All the logical system names of old system have been copied to new system.
    Question
    What is the approach to change the logical system names for new SAP system?
    a) just via tcode SCC4
    b) via BDLS
    c) other tcodes, reports
    Thank you very much!
    regards
    Jürgen

    Hi,
    Go though the system copy guide.
    http://service.sap.com/instguides
    After system copy,
    If you need to change logical system names in the system that results from the copy, change the logical system names as described in SAP Notes 103228 and 544509.
    https://service.sap.com/sap/support/notes/103228
    https://service.sap.com/sap/support/notes/544509
    Before running BDLS to change the logical system name, you have to define the correct logical system name in the new copied system. in tcode BD54.
    - while running BDLS, execute in background.
    Regards,
    Debasis.

Maybe you are looking for

  • Using iTunes Software

    Hi everybody!                     I'm a big fan of Apple products from Myanmar.                    Now I have some difficulties with using iTunes software in my laptop ( windows 7, 32 bits operated ).                     Before I connected to wireles

  • I downloaded the trial of LR I can see it in my cloud but I can't open it....where is it to open?

    I downloaded the free trial. I see it in my cloud but not on my computer. I need to open asap because I am working on three photo shoots. I just got a new Nikon D610 and would not work with my older LR  HELP

  • Support packages SAPKB70021-25 and SAPKA70021-25

    Hi Experts, My system (ECC Basis RELEASE 700)was on SAP_BAsis/SAP_ABA  level 20  . I built a queue from 21 to level 25 for both SAP_ABA and SAP_BASIS together in background. I am getting below error in IMPORT_PROPER phase for SAPKB70024.    sap_dext

  • HT2688 Copying pictures to a new iPad

    How am I able to transfer/share some, but not all pictures, from a PC to an iPad? I am using an iPad for the first time.

  • Opening Compressor for the 1st time.

    I'm pretty new to Compressor and I'm opening it for the first time to create an export but it doesn't open an untitled new batch...or indeed anything. I'm trying to figure out if it's anything stupid on my part before I re-install. Thanks