Post Installation Activities after BW 7.31 system copy

Hi,
Need to know the post Installation activity after BW 7.31 system copy.We plan to build a new QA system from our Development BW 7.31.
What should be the sequence of steps I need to follow?
Is it BDLS,SM59 & then RSA1?How should we manage the source system creation in RSA1?Do we restore or delete the old source system & create the new?

Thanks Bala for the link..
There is 1 step in the link
se37
Function: RSAP_BIW_DISCONNECT
Parameter   I_BIW_LOGSYS                  <<SLOGSYS>>
                      I_OLTP_LOGSYS                <<RLOGSYS>>
                      I_FORCE_DELETE              X
I could not understand why we need to execute this step?Can you please help me on that?

Similar Messages

  • Post installation activities

    Hi all,
    What are the post installation activities after installation of Solution manger like activating sdcc,sdccn,EWA Etc.
    please give me the solution.
    vinnu.

    Hi,
    First Setup Landscape SMSY.
    https://websmp108.sap-ag.de/~sapidb/011000358700004860052004E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700000894082006E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700002912202006E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700004860082004E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700002912242006E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700004860532004E.sim
    Once you setup System landscape, Setup SDCCN and Activate EWA.
    https://websmp108.sap-ag.de/~sapidb/011000358700005011442004E
    https://websmp108.sap-ag.de/~sapidb/011000358700004425722004E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700008968942004E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700001581382005E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700008968952004E.sim
    https://websmp108.sap-ag.de/~sapidb/011000358700001581372005E.sim
    This will solve your problem, feel free to revert back.
    --Ragu

  • Step by Step Post Installation activities

    Dear Gurus,
    We have EP 6 on Windows and SQL Server. I have installed the dev system. Can anyone kindly advice me in steps by steps, the post installation activities? We are planning to have ESS / MSS on EP. Initially I have been asked to connect this EP DEV Server to the ECC DEV Server.
    Can anyone help me on this? How / where do I start with this configurations?
    Best Regards,

    Sujeet,
    Post Installation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/09cb9ffb-0701-0010-4183-c2e8f405bf9a
    Also, if you are planning on having ESS and MSS configured.
    You will have to download the business packages from
    https://www.sdn.sap.com/irj/sdn/contentportfolio
    Once you are done with downloading the BP's, visit this weblog and you can configure ESS BP on your system.
    Configuring The Business Package For Employee Self Service (ESS)-mySAP ERP 2004
    Consider rewarding points if handy!
    Cheers,
    Sandeep Tudumu

  • 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

  • Post installation activities in SCM 7.0 Installation.

    Hi All,
    I am in a process of installating SCM 7.0 and going through the installation guide "Installation GuideSAP SCM 7.0 SR1 ABAP on Solaris: Oracle , document version - 1.0-2009-05-04"
    Along with SCM 7.0 we are also installation Livecache 7.7. In the same host we planned to install SCM 7.0 CI and LiveCache 7.7 Server.
    I have following queries
    1) My understaing is, there should not me more than one productive client in the SCM system. This client should be use for SCM and live cache.Is that correct?
    2) As per installation document give above there are two point
       5.13   BI-Specific Post-Installation Steps. Here it's talks about creating a client and do regarding transaction RSA1.
       Can somebody give the details, what are the activities we need to do in RSA1.
    3) How to integrate LiveCache and SCM sytem. Can somebody give the steps to of the integration of SCM and livecache.
    Request you all to reply which will help me for SCM and livecache implementation.
    Thanks

    Hi Gurus,
          We have installed SAP NW 7.4 SR2 with Process Integration and orchestration package (PO). Please suggest me what are all the configuration need to do in ABAP application system and AS JAVA system...
    Regards,
    Vetri

  • CE 7.2 SP03 Post Installation activities

    Hi,
    Could you please share any documents or links related to CE 7.2 post installation configurations such as:
    SLD, ECM, Service Registry, ESR, NWDI, BPM VC, GP and Composite Voice.
    Thanks in advance!
    Regards,
    Patana

    Hi
    here are few details just to start with..
    1. Call the SAP NetWeaver Administrator in a browser using the path http://<host>:<httpport>/nwa, and log on with the appropriate administrator user.
    2. After providing User name password NWA home page will get display in that Choose Configuration Management   Scenarios--Configuration Wizard
    3 Configuration Wizard page will get display.
    4. Select task as per your requirement and click start
    5. at the time of SLD configuration, there is a step to setup J2EE Administrator password..
    you can setup password for Administrator and Master Password
    provide password and that password will get setup..
    Thanks,
    Bhupesh

  • SAP Mobile 7.1 post installation activities

    Hi,
    I have installed SAP Mobile 7.1 ABAP stack.
    can any help in locating the post installation steps to activate the mobile contents?
    I followed the steps given in the installation guide.
    after that I tried to carry out the basic steps like "Create an Administrator Profile" as in the help document under http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/1b199aa3f021a1e10000000a1553f6/frameset.htm.
    I am unable to locate the roles mentioned there SAP_DOE_ADMINISTRATOR, SAP_DOE_TECH_ADMIN.
    I believe I have missed some steps to activate the mobile contents.
    Thanks in advance.
    Regards,
    Ram.

    Hi Ram,
    if I get yur issue right, you do ask for the installation parameters you need to enter.
    I simply istalled the usual ABAP stack - once you have done that, run the function SDOE_WB for example. If that is available, you have done everything fine.
    There is not really an MI stack you can select in the installaiton window.
    And once you have done that, and SDOE_WB is accessible, please run TRX SDOE_SR for the post installation process.
    Furthernore you will find a guid on all necessary steps for post inst here:
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm
    Hope that helps!
    Regads,
    Oliver

  • Post Installation Steps after installation of sap sol 7.1

    Dear all
    Can you pls share me what are the post installation steps required after the installation of Solution Manager 7.1
    I know some of them as same in ECC
    1 ) SICK
    2) STMS
    3) RZ10 - Profile parmeters
    4) SGen
    5) Back ground Jobs scheduling
    Also tell me which parameters need to be set in solman
    regards
    Shakshi

    Hi,
    You can refer below guide for setup:
    https://websmp103.sap-ag.de/~sapidb/011000358700000872072011E
    Regards
    Vivek

  • Post installation step after DB migration

    I have done Database Migration from DB2 LUW to oracle 11g through Heterogeneous system copy. I need post migration steps because
    because right now I facing an issue for example in dbacockpit database connection show DB2 
    also data base space and other information is blank.
    and when I bauble click on sapgui login varibale login screen not show error appear service could not found etc.
    Migration related information
    Source  SAP Verion is NW7.4 on AIX Db2 LUW
    Target  SAP Verion is NW7.4 on AIX oracle
    Regards

    Thanks Johnny,I am downloading system copy guide I just want to share one more logs.
    BR0801I BRCONNECT 7.40 (1)
    BR0805I Start of BRCONNECT processing: cenilxwe.sta 2014-03-04 20.24.20
    BR0484I BRCONNECT log file: /oracle/DEV/sapcheck/cenilxwe.sta
    BR1301W Error message from likeywlib:
    ===...could not load SSF library /usr/sap//D00/exe/libsapcrypto.so .
    BR1301W Error message from likeywlib: 543 likey_init: Couldn't load SAPSECULIB ("/usr/sap//D00/exe/libsapcrypto.so") using function SsfSupInitEx (), rc = 10 (no library).
    BR1301W Error message from likeywlib: 542 likey_init: At least one more attempt to load the SAPSECULIB will follow.
    BR0101I Parameters
    Name                           Value
    oracle_sid                     DEV
    oracle_home                    /oracle/DEV/112_64
    oracle_profile                 /oracle/DEV/112_64/dbs/initDEV.ora
    sapdata_home                   /oracle/DEV
    sap_profile                    /oracle/DEV/112_64/dbs/initDEV.sap
    system_info                    devadm/oradev ERPDEV AIX 1 7 000D94DBD400
    oracle_info                    DEV 11.2.0.3.0 8192 585 40145394 ERPDEV UTF8 UTF8 3919391349 &DEV
    sap_info                       740 SAPSR3 0002LK0003DEV0011H17627635420015Maintenance_ORA
    make_info                      rs6000_64 OCI_112 Apr 10 2013
    command_line                   brconnect -jid STATS20140304202420 -u / -c -f stats -t ALL
    stats_table                    ALL
    stats_dbms_stats               ALL:R:0
    stats_change_threshold         50
    stats_parallel_degree          1
    stats_dict_cycle               0
    stats_system_cycle             0
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.21
    BR0813I Schema owner found in database DEV: SAPSR3*
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.24
    BR0814I Number of tables in schema of owner SAPSR3: 95035
    BR0836I Number of tables treated as info cubes for owner SAPSR3: 53
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.41
    BR0815I Number of indexes in schema of owner SAPSR3: 114708
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.42
    BR0818I Number of tables found in DBSTATC for owner SAPSR3: 399
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.42
    BR0807I Name of database instance: DEV
    BR0808I BRCONNECT action ID: cenilxwe
    BR0809I BRCONNECT function ID: sta
    BR0810I BRCONNECT function: stats
    BR0812I Database objects for processing: ALL
    BR0851I Number of tables with missing statistics: 0
    BR0852I Number of tables to delete statistics: 0
    BR0854I Number of tables to collect statistics without checking: 0
    BR0855I Number of indexes with missing statistics: 0
    BR0856I Number of indexes to delete statistics: 0
    BR0857I Number of indexes to collect statistics: 0
    BR0853I Number of tables to check (and collect if needed) statistics: 95035
    Owner SAPSR3: 95035
    BR0126I Unattended mode active - no operator confirmation required
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0817I Number of monitored/modified tables in schema of owner SAPSR3: 95035/10971
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0877I Checking and collecting table and index statistics...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0883I Table selected to collect statistics after check: SAPSR3.BTCCTL (7/0:1088:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0881I Collecting statistics for table SAPSR3.BTCCTL with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 7, OCCBL = 128, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 92 WHERE TNAME = 'BTCCTL''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.BTCCTL
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0883I Table selected to collect statistics after check: SAPSR3.DBSNP (54/30:0:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0881I Collecting statistics for table SAPSR3.DBSNP with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 84, OCCBL = 40, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 130 WHERE TNAME = 'DBSNP''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.DBSNP
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0883I Table selected to collect statistics after check: SAPSR3.MONI (8700/2154:8293:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0881I Collecting statistics for table SAPSR3.MONI with method/sample E/P30 ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'E', OPTIO = 'P30', NROWS = 10947, OCCBL = 43216, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 2947 WHERE TNAME = 'MONI''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.MONI
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0883I Table selected to collect statistics after check: SAPSR3.SAPWLSERV (2/0:4:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0881I Collecting statistics for table SAPSR3.SAPWLSERV with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 2, OCCBL = 128, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 51 WHERE TNAME = 'SAPWLSERV''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.SAPWLSERV
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0883I Table selected to collect statistics after check: SAPSR3.SWNCCOLLPERF (22/13:0:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.45
    BR0881I Collecting statistics for table SAPSR3.SWNCCOLLPERF with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 35, OCCBL = 40, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 115 WHERE TNAME = 'SWNCCOLLPERF''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.SWNCCOLLPERF
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.SWNCMONI (1117/6:728:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.SWNCMONI with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 1123, OCCBL = 3968, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 2685 WHERE TNAME = 'SWNCMONI''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.SWNCMONI
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.SWNCMONIINDEX (11/0:6:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.SWNCMONIINDEX with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 11, OCCBL = 40, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 87 WHERE TNAME = 'SWNCMONIINDEX''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.SWNCMONIINDEX
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.SWNC_TCOLL_LOG (3400/1810:0:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.SWNC_TCOLL_LOG with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 5210, OCCBL = 3648, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 137 WHERE TNAME = 'SWNC_TCOLL_LOG''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.SWNC_TCOLL_LOG
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.TBTCO (1664/255:1479:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.TBTCO with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 1919, OCCBL = 3456, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 283 WHERE TNAME = 'TBTCO''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.TBTCO
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.TBTCS (25/255:119:254)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.TBTCS with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 26, OCCBL = 40, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 110 WHERE TNAME = 'TBTCS''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.TBTCS
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.TSPOPTIONS (13/0:142:0)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.TSPOPTIONS with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 13, OCCBL = 128, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 28 WHERE TNAME = 'TSPOPTIONS''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.TSPOPTIONS
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.TST01 (435/261:1096:219)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.TST01 with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 477, OCCBL = 768, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 166 WHERE TNAME = 'TST01''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.TST01
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0883I Table selected to collect statistics after check: SAPSR3.TUCON (14/23:0:23)
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0881I Collecting statistics for table SAPSR3.TUCON with method/sample C ...
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0301E SQL error -1031 at location stats_tab_collect-99, SQL statement:
    'UPDATE DBSTATTORA SET ANDAT = '201403042024', VWTYP = ' ', AMETH = 'C', OPTIO = ' ', NROWS = 14, OCCBL = 128, EMPBL = 0, AFREE = 0, CHAIN = 0, AROWL = 37 WHERE TNAME = 'TUCON''
    ORA-01031: insufficient privileges
    BR0886E Collecting statistics failed for table SAPSR3.TUCON
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0879I Statistics checked for 95035 tables
    BR0878I Number of tables selected to collect statistics after check: 13
    BR0880I Statistics collected for 13/0 tables/indexes
    BR0894I Tables with the longest duration of collecting statistics for owner SAPSR3
      Pos. Owner    Table                Duration   Rows/old    Rows/new  Meth./Samp.   Space[KB]  Used[KB:%]    Data[KB:%]    Lobs   Space[KB]   Used[KB:%]    Data[KB:%]
                                           [m:s]
    BR0806I End of BRCONNECT processing: cenilxwe.sta 2014-03-04 20.24.46
    BR0280I BRCONNECT time stamp: 2014-03-04 20.24.46
    BR0804I BRCONNECT terminated with errors
    Regards

  • SMD Post upgrade activities after EHP1

    Hi,
    We have recently upgraded our solution manager from SP15 to SP20(EHP1). We have upgraded our kernel to 7.01
    I found that in the directory /usr/sap/SMD/exe, the kernel files are still in version 700.
    So what is the exaxt post processing steps related to SMD and wily introscope in Solman and satellite system after EHP 1 upgrade
    PS: We are upgrading our satellite systems ie ECC 6.0 to ECC 6.0 EHP4 and Netweaver 2007 systems to  Netweaver 2007 EHP1.
    Best Regards,
    Sriram.S

    Any updates...
    Sriram.S

  • Post installation tasks after rapidwiz

    what are the post instllation taskes needs to perform after installation.
    On Windows XP machine all services related to E Business Suite not started automatically.
    We are getting error http 404 not found every time.
    After instllation we were able to login in apps only one time, after that we are unable to login page.

    I checked the log Only two lines are written in the log.
    Following text written in both lines
    process manager initialized.
    OracleVIS_localhost_ToolsTNSListenerAPPS_IVS not started, when I tried to start it manually by the help of services it gives errors Service on localcomputer started then stopped.
    And when I tried to start listener from command prompt it says __"*procedure entry point snlinAddrLocalhost could not be located in dynamic link libaray oranl10.dll."_*_                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • SMD Post installation activities failed.

    Hi Gurus
    I have installed Solution Manager 4.0 with SLD SP09 now i want to setup SMD on same server. I have successfuly deployed LMSERVICE*.sca file and trying to du SMD upgrader step in one of the step "scheduler upgrade" i am getting following error.
    Any body can help on this.
    Thanks in advance.
    Shriraj
    Report Upgrade for Scheduler Upgrade
    Status: Fail in 283ms.
    Upgrade Result:
    Data Collector integration: Error during Scheduler tasks upgrade: Task's class not found while trying to instanciate it!
    Exception Cause:
    com.sap.sup.admin.scheduler.exception.TaskBrowseException: Task's class not found while trying to instanciate it!
         at com.sap.sup.admin.scheduler.JmsScheduler.getTaskList(JmsScheduler.java:861)
         at com.sap.sup.admin.scheduler.JmsScheduler.getTaskList(JmsScheduler.java:777)
         at com.sap.sup.admin.scheduler.JmsScheduler.getTasks(JmsScheduler.java:614)
         at com.sap.sup.admin.scheduler.upgrade.sp15.DataCollectorIntegration.execute(DataCollectorIntegration.java:37)
         at com.sap.sup.admin.scheduler.upgrade.SchedulerUpgrade.execute(SchedulerUpgrade.java:56)
         at com.sap.smd.SMDUpgradeManager.executeUpgrade(SMDUpgradeManager.java:155)
         at com.sap.sup.admin.smd.upgrader.SMDUpgraderComponentView.onActionUpgrade(SMDUpgraderComponentView.java:394)
         at com.sap.sup.admin.smd.upgrader.wdp.InternalSMDUpgraderComponentView.wdInvokeEventHandler(InternalSMDUpgraderComponentView.java:229)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.ClassNotFoundException: com.sap.sup.admin.scheduler.task.e2e.loganalysis.LogAnalysisTask
    Loader Info -
    ClassLoader name: [sap.com/tcwebadministratorsolmandiag]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
       interface:tcsecdestinations~interface
       interface:keystore_api
       interface:security
       library:com.sap.mw.jco
       library:com.sap.util.monitor.jarm
       library:com.sap.exception
       library:sapxmltoolkit
       library:tcSLUTIL
       library:jnet
       library:core_lib
       service:webdynpro
       service:webservices
       service:rfcengine
       service:timeout
       library:com.sap.aii.proxy.framework
       service:tcsecdestinations~service
       service:tcsmdserver~service
       sap.com/tcsmdagentapplicationfilesystem
       sap.com/tcsmdagentapplicationpar
       sap.com/tcsmdagentapplicationdatacollector
       sap.com/tcsmdagentapplicationremoteos
       sap.com/tcsmdagentapplicationremotesetup
       sap.com/tcsmdagentapplicationglobal~conf
    Resources:
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/AbapConnectorLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/ThreadDumpScanLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/LandscapeLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/ComponentInfoLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/confchangereportlib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/EwaIsData.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/LoggingLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/NwawrapperLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/ConfigTaskLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/classes
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/LandscapeAgentLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/systemlandscapeupload_task.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/work
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/WSCheckAuthLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/HttpAnalysisLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/RemoteLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/EwaPar.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/SetupLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/SecurityLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/UpgradeLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/InterAppLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/schedulertasks.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/MemSnapshotLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/IntroscopeJDBC.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/DatabaseLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/SelfCheckLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/EwaGca.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/schedulerlib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/NavigationLib.jar
       /usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/OsCommandLib.jar
    Loading model: {parent,references,local}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:382)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at com.sap.sup.admin.scheduler.JmsScheduler.getTaskList(JmsScheduler.java:803)
         ... 36 more

    Hi Shriraj,
    For configuring solution manager diagnostics in my landscape i used the following document available in service market place,
    "SAP Solution Manager 4.0 (SP10)
    End to End Diagnostic
    Powered by SAP NetWeaver 04s SPS 11"
    This document was very helpful and i successfully configured SMD.
    Moreover you will have to download Willy Interoscope also.
    Hope this will help you out.
    Thanks and Regards
    Manas

  • Activities post System copy  - SAP CRM 5.0

    Dear All,
    We were having a 3 system (SAP CRM 5.0 SP8) landscape. CRM Dev(CRD), CRM Q (CRQ) & CRM P (CRP) on Oracle 10 and HP UX 11. We have the JDI 7 SP8 instance connected to the CRM dev systemand all the 3 systems were configured as the run time systems in the JDI.
    Now we have added a new tier for the Intergation testing called CRM
    IST viz CRI there by coming into 4 system landscape (CRD, CRQ, CRI,
    CRP). The CRI server is a copy of the CRP box and has been just installed and given to us. We need to do all the post installation activities.
    Can you please provide us the proper documentation/ccokbook/check points so as to what all steps to be carried out after this system copy. It would be highly appreciated if you can give us a proper documents & links. We need to give the system to the consultants and before that we need to carry out all the post refresh activities, please help us in this urgently.
    Thanks in advance.
    Awaiting response.
    Thanks & Warm Regards,
    Rajeet Mathur.

    Check
    http://service.sap.com/systemcopy
    and use both guides for NW2004s/7.0 ABAP and Java.
    Markus

  • DB2 Post installation after EHP4 Installation

    Hi,
    I have completed ehp4 installation in db2 9.1 fp7 database windows 2008 server.What are the post installation activities i should do?
    I have read in the doc where they have given so many post installations.ie post activities before resuming production etc etc..
    But i felt like deleting the old table spaces is important for which they have given the syntax(db2 clp command) also.but if i run that "0 rows selected".pls tell me what is the correct syntax for deleeting old table spaces.
    and also pls let me know what other i need to do after ehp4 installation from your experience.
    Thanks

    Hi Sunny,
    Thanks for your reply.
    Bur the link you have given,is the common for db2 to delete the table spaces.But I need for the post installation for ehp4 in db2.
    for deleting the table spaces,I need to know which are the old table spaces after upgrade for which there is a syntax given in the master guide.below are given in the master guide.
    Deleting Substitution Tablespaces
    After the enhancement package installation, some tablespaces are no longer used and you can delete them.
    To determine the names of these empty substitution tablespaces of the source release enter the following db2 clp command:
    db2 "select tbspace from syscat.tablespaces TS where TS.tbspace like '%E%<rel>%' and not exists ( select 1 from syscat.tables where tbspace = TS.tbspace or index_tbspace = TS.tbspace or long_tbspace = TS.tbspace )"
    To delete all obsolete tablespaces that are returned by the above mentioned db2 clp command, enter the following db2 clp command at the operating system level for each tablespace listed:
    but if i execute no rows selected.
    so pls guide me how to do.

  • Post installation error "Local logical system is not defined"

    Hello everyone,
    I freshly installed the latest SAP NetWeaver 7.01 ABAP Trial from scratch and like to configure ALE.
    I followed thew steps of http://help.sap.com/printdocu/core/Print46c/EN/data/pdf/CABFAALEQS/CABFAALEQS.pdf
    (ALE Quick Start) but cannot get through the following step on page 12:
    From the R/3 Implementation Guide screen in TA SALE
      choose Basis
        Application Link Enabling (ALE)
          Modeling and Implementing Business Processes
            Maintain Distribution Model and Distribute Views
    Clicking on Maintain Distribution Model or using TA BD87, I immedeately get the following error:
    The initialization of the logical system has failed.
    With TA BD64 the error: Local logical system is not defined arises. I also looked at
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi,
    /people/vikash.krishna/blog/2006/10/15/replicating-hr-master-data-part-1 and
    /people/kevin.wilson2/blog/2006/11/13/ale-scenario-development-guide describing the same actions
    to find an explanation, but without success
    I assume, the error does not occur because the trial version does not support it, but
    because of other post installation activities that must be done.
    I already created two logical systems and assigned them to newly created clients 100 and 200,
    but this did not have any impact on BD87 and BD64 as i was hoping.
    Does somebody know what to do here?
    Thanks in advance and kind regards,
    Andreas

    Hi Naveed,
    i made the following settings:
    SCC4: new entries created
    100     Sending System
    200     Receiving System
    SM59: new ABAP type 3 connections:
    RFC_DEST_LS_100
    RFC_DEST_LS_200
    - Tab Logon & Security Logon user: current user (bcuser client 001)
    Connection test is successful
    - Technical Settings: target host: localhost
    SALE: new logical systems created
    LS_100
    LS_200
    SCC4:
    double click on 100 Sending System   configured with logical system LS_100
    double click on 200 Receiving System configured with logical system LS_200
    kind regards
    Andreas

Maybe you are looking for