Understand the term instance

HI all,
I want to understand the term what instance means.this is the definition what i have got
"An Instance is an administrative unit that combines SAP system components providing one or more services.
     The services provided by an instance are started and stopped together.
     You use a common instance profile to set parameters for all components of an instance.
So by this definition does that mean that if we have dev , qual and prod all are ecc based systems then we have 3 instances ?I want to understand what this instance means specifically with respect to SAP.

Hi,
As per me instance will be a Server or application server, you have to understand as per the situation.
for eg: if any doby called dialog instance then it will be appserver of your central instance.
here u can see 2 instances one instance belongs to appserver and another instance itself central instance.
please have a look on the below link.. i hope u will get good idea abt your query.
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/c4/3a5eb7505211d189550000e829fbbd/content.htm
As per u r another query yes u have 3 instances in u r landscape.
hope the above informaiton will helps.
-Srini

Similar Messages

  • What is meant by the term 'IDLE Instance'?

    Hi
    Sometimes i get the following message when connecting to an Oracle10g database
    'Connected to an idle instance'
    Can some expalin what the term 'idle' means? My database is running according to the MMC
    Thanks

    Hi,
    An idle instance is an instance which is not start.
    E:\oracle\ora102>sqlplus "/ as sysdba"
    SQL*Plus: Release 10.2.0.2.0 - Production on Fri Apr 7 21:36:05 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    E:\oracle\ora102>sqlplus "/ as sysdba"
    SQL*Plus: Release 10.2.0.2.0 - Production on Fri Apr 7 21:36:44 2006
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    SQL>
    My database is running according to the MMCDon't understand what is MMC ?
    Nicolas.

  • My macbook air will not connect to the internet due to a self assigned IP address. I have tried trawling the support forums, but either I can't understand the suggestions, or they don't work. Please explain to me in simplest terms how to fix this. Thanks!

    My macbook air will not connect to the internet due to a self assigned IP address. I have tried trawling the support forums for hours, but either I can't understand the suggestions, or they don't work. Please explain to me in simplest terms how I can fix this. Many thanks!

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.
    If you bought the product in the U.S. directly from Apple (not from a reseller), you have 14 days from the date of delivery in which to exchange or return it for a refund. In other countries, the return policy may be different. If you bought from a reseller, its return policy applies.

  • Understanding the technical term

    hi
    i queried the dba_mviews and under the staleness attribute i have got unusable and stale.
    can anyone help me in understanding wat the stale and unusable mean??

    Duplicate post (understanding the technical term
    Please wait for someone to analyze the question/problem and answer. Don't just hurry on to post a new thread.

  • Hello, sent me the email canceling my account creative cloud, and I did not cancel the account, I do not understand the reason for the cancellation was because term option than 1 year and not yet completed.

    Hello, sent me the email canceling my account creative cloud, and I did not cancel the account, I do not understand the reason for the cancellation was because term option than 1 year and not yet completed.

    There is payment related issue, I have send you a personal message, please respond as requested.
    I shall raise a request to the digital river store from where it was purchased.
    I am from the Customer care Team.
    Regards
    Rajshree

  • Not Understanding the filter in Explain Plan - filter(NULL IS NOT NULL)

    Hi All,
    Request your help in understanding the below scenario. (I am not aware of teh application and table details. Just trying to help my friend)
    SQL> conn
    Enter user-name: [email protected]
    Enter password:
    Connected.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for Linux: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    --Checking the count in PO_LINES
    SQL> select count(*) from po_lines;
      COUNT(*)
             0
    --PO_LINES is a synonym
    SQL> select object_type,owner from dba_objects where object_name = 'PO_LINES';
    OBJECT_TYPE         OWNER
    SYNONYM             APPS
    --The synonym is pointing to PO.PO_LINES_ALL
    SQL> select * from user_synonyms where synonym_name = 'PO_LINES';
    SYNONYM_NAME                   TABLE_OWNER                    TABLE_NAME                     DB_LINK
    PO_LINES                       PO                             PO_LINES_ALL
    --But when counting PO.PO_LINES_ALL I am getting different result
    SQL> select count(*) c from po.po_lines_all;
             C
          8828
    --Explain plan of teh original query is
    SQL> explain plan for
      2  select
      3  * from po_lines;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    | Id  | Operation          | Name         | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT   |              |     1 |   252 |     0   (0)|
    |*  1 |  FILTER            |              |       |       |            |
    |   2 |   TABLE ACCESS FULL| PO_LINES_ALL |  8796 |  2164K|   106   (4)|
    Predicate Information (identified by operation id):
       1 - filter(NULL IS NOT NULL)
    --Now the object PO.PO_LINES_ALL is TABLE, not an mview.
    SQL> select object_type,owner from dba_objects where object_name = 'PO_LINES_ALL';
    OBJECT_TYPE         OWNER
    TABLE               POSeek your help in understanding what is happening here.
    Thanks in Advance,
    jeneesh

    Next time, prefix with APPS. when you show us the explain plan:
    SQL> explain plan for
      2  select
      3  * from apps.po_lines;  -- added the prefix of owner.Just like you prefixed with PO. when you showed us the query on PO_LINES_ALL. It ensures that you are using the synonym which you showed us.
    Btw. PO_LINES_ALL, could still be a VIEW given your overview of the situation.
    Anyway a filter "NULL IS NOT NULL" is indicative that the optimizer performed something called semantic query optimization (SQO).
    SQO is the process of deducing new predicates based upon a) existing predicates in your query (which there is none), b) added predicates to your query (eg. by a VPD policy function), and c) declared constraints on the tables invovled in your query.
    A typical example of when a "NOT is NOT NULL" predicate will show up is when for instance in the EMP table there is a declared constraint on EMPNO like this:
    check(EMPNO > 0)And your query would hold a predicate that is inconsistent with the constraint, for instance like this:
    select *
    from EMP
    where EMPNO <= 0Oracle will deduce that EMPNO cannot be both greater than zero (constraint) as well as smaller than or equal to zero (your query predicate), and will transform the query into:
    select *
    from EMP
    where EMPNO <= 0
      and NULL is NOT NULLThus preventing accessing the EMP table all together, and immediately returning this query with no data found.
    Edited by: Toon Koppelaars on Mar 15, 2010 7:17 AM

  • Can you help me understand the use of the word POSITION in TR and CFM?

    Hi,
    I am trying to have a view of typical BI reports in TR and TM/CFM so through my research I came to the following link:.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/62/08193c38f98e1ce10000000a11405a/frameset.htm
    My problem on this link and other postings on this site seem to be the same. Can you help me understand the use of the word POSITIONS in these context:
    1. Our client has asked for financial transaction reports in BW, such as position of Borrowings, Investments and Hedge Operations (TM data).
    2. I have a requirement on, some reports related to Money Market (Fixed Term Deposits, Deposits at Notice) something on FSCM-Treasury and Risk Manager. These reports will be similar to that of Loans, i.e. Position statement, flow statement, etc.
    3. The set of position values for a single position or a limited amount of positions can be reported by transactions TPM12 and TPM13 in R3.
    4. 0CFM_C10 (Financial Positions Cube)
    Do you have some simple report outputs to help clarify how the word POSITION is used in such environments?
    Thanks
    Edited by: AmandaBaah on Feb 15, 2010 4:39 PM

    If I future buy 10 shares in company at £1 per share - at the end of the day my potential value is £10
    The next day the shares drop tp £0.9 per share - I have a negative position - my shares are only worth £9
    I haven;t bought them yet - but I have a negative position - ie if things stayed as they are - I am going to realise (ie end up with)  a loss
    Now you can use this for loans and foreign exchange banks as well...

  • Urgent: cannot start the shadow instance at phase STARTSAP_TRANS

    We are upgrading to NW2004s (ABAP only) from 640.
    <u><b>How to re-start the shadow instance?</b></u>
    At this point, <b>anyway we cannot start the shadow instance.</b>
    At SAPMMC, the disp+work
    1) first show "running but the dialog queue standstill"
    2) then show" running but not connected to the message server"
    3) then the disp+work dies.
    Above happens in 1 minute after re-start.
    <b>The dev_ms reads:
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 4740] Mon Apr 02 15:07:53 2007
    [Thr 4740] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    94
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2932
    [Thr 4740] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 2932) [msxxserv.c   1824]
    [Thr 4740] load acl file = D:\usr\sap\put\XYZ\SYS\global\ms_acl_info.DAT
    [Thr 4740] MsGetOwnIpAddr: my host addresses are :
    [Thr 4740]   1 : [10.10.10.68] houston (HOSTNAME)
    [Thr 4740]   2 : [127.0.0.1] houston.monet.local (LOCALHOST)
    [Thr 4740] Mon Apr 02 15:07:54 2007
    [Thr 4740] MsHttpInit: full qualified hostname = houston.monet.local
    [Thr 4740] HTTP logging is switch off
    [Thr 4740] MsHttpOwnDomain: own domain[1] = monet.local
    [Thr 4740] ms/icf_info_server : deleted
    [Thr 4740] *** I listen to port sapmsSHDXYZ (3660) ***
    [Thr 4740] CUSTOMER KEY: >B0790292062<
    [Thr 4740] Mon Apr 02 15:08:54 2007
    [Thr 4740] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from houston_XYZ_60 [msxxserv.c   4679]
    [Thr 4740] Mon Apr 02 15:19:35 2007
    [Thr 4740] *** ERROR => MsSCheckConnections: no response from client C0 (10.10.10.68) after 300 secs received [msxxserv.c   3165]
    [Thr 4740] *** ERROR => MsSCheckConnections: disconnect now [10.10.10.68] [msxxserv.c   3169]</b>
    The dev_disp reads:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      60
    sid        XYZ
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    95
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        4036
    Mon Apr 02 15:07:53 2007
    kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    length of sys_adm_ext is 360 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (60 4036) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 95 successfully loaded
         shared lib "dw_xtc.dll" version 95 successfully loaded
         shared lib "dw_stl.dll" version 95 successfully loaded
         shared lib "dw_gui.dll" version 95 successfully loaded
         shared lib "dw_mdm.dll" version 95 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    Mon Apr 02 15:07:58 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >houston_XYZ_60                         <
    DpShMCreate: sizeof(wp_adm)          19888     (904)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1280)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05BF0040, size: 4240712)
    DpShMCreate: allocated sys_adm at 05BF0040
    DpShMCreate: allocated wp_adm at 05BF1A28
    DpShMCreate: allocated tm_adm_list at 05BF67D8
    DpShMCreate: allocated tm_adm at 05BF6808
    DpShMCreate: allocated wp_ca_adm at 05F66A98
    DpShMCreate: allocated appc_ca_adm at 05F6B0E8
    DpShMCreate: allocated comm_adm at 05F6C858
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 05FED708
    DpShMCreate: allocated gw_adm at 05FED748
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05FED778
    DpShMCreate: allocated wall_adm at 05FED780
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Memory Reset disabled as NT default
    <ES> 2039 blocks reserved for free list.
    ES initialized.
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12314]
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( houston) [dpxxdisp.c   11663]
    DpStartStopMsg: send start message (myname is >houston_XYZ_60                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 95
    Release check o.K.
    Mon Apr 02 15:08:38 2007
    ERROR => W0 (pid 1084) died [dpxxdisp.c   14318]
    ERROR => W1 (pid 4200) died [dpxxdisp.c   14318]
    ERROR => W2 (pid 3316) died [dpxxdisp.c   14318]
    ERROR => W3 (pid 5276) died [dpxxdisp.c   14318]
    ERROR => W4 (pid 5348) died [dpxxdisp.c   14318]
    ERROR => W5 (pid 3436) died [dpxxdisp.c   14318]
    ERROR => W6 (pid 3920) died [dpxxdisp.c   14318]
    ERROR => W7 (pid 4868) died [dpxxdisp.c   14318]
    ERROR => W8 (pid 5380) died [dpxxdisp.c   14318]
    ERROR => W9 (pid 4584) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x1f --> 0x1e
    ERROR => W10 (pid 4188) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x1e --> 0x1c
    ERROR => W11 (pid 2700) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x1c --> 0x18
    ERROR => W12 (pid 4604) died [dpxxdisp.c   14318]
    ERROR => W13 (pid 4916) died [dpxxdisp.c   14318]
    ERROR => W14 (pid 4440) died [dpxxdisp.c   14318]
    ERROR => W15 (pid 4544) died [dpxxdisp.c   14318]
    ERROR => W16 (pid 1888) died [dpxxdisp.c   14318]
    ERROR => W17 (pid 548) died [dpxxdisp.c   14318]
    ERROR => W18 (pid 2800) died [dpxxdisp.c   14318]
    ERROR => W19 (pid 2080) died [dpxxdisp.c   14318]
    ERROR => W20 (pid 2888) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x18 --> 0x10
    ERROR => W21 (pid 5572) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x10 --> 0x0
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1609
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Apr 02 15:08:48 2007
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Mon Apr 02 20:08:48 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     1084 Ended         no      1   0             0                                                             
    1 DIA     4200 Ended         no      1   0             0                                                             
    2 DIA     3316 Ended         no      1   0             0                                                             
    3 DIA     5276 Ended         no      1   0             0                                                             
    4 DIA     5348 Ended         no      1   0             0                                                             
    5 DIA     3436 Ended         no      1   0             0                                                             
    6 DIA     3920 Ended         no      1   0             0                                                             
    7 DIA     4868 Ended         no      1   0             0                                                             
    8 DIA     5380 Ended         no      1   0             0                                                             
    9 DIA     4584 Ended         no      1   0             0                                                             
    10 UPD     4188 Ended         no      1   0             0                                                             
    11 ENQ     2700 Ended         no      1   0             0                                                             
    12 BTC     4604 Ended         no      1   0             0                                                             
    13 BTC     4916 Ended         no      1   0             0                                                             
    14 BTC     4440 Ended         no      1   0             0                                                             
    15 BTC     4544 Ended         no      1   0             0                                                             
    16 BTC     1888 Ended         no      1   0             0                                                             
    17 BTC      548 Ended         no      1   0             0                                                             
    18 BTC     2800 Ended         no      1   0             0                                                             
    19 BTC     2080 Ended         no      1   0             0                                                             
    20 BTC     2888 Ended         no      1   0             0                                                             
    21 SPO     5572 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Mon Apr 02 20:08:48 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    1
    2000
    1
    1
    --------++++--
    +
    DIA
    3
    3
    2000
    3
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          7
    wake_evt_udp_now     0
    wake events           total     3,  udp     3 (100%),  shm     0 (  0%)
    since last update     total     3,  udp     3 (100%),  shm     0 (  0%)
    Dump of tm_adm structure:               Mon Apr 02 20:08:48 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Mon Apr 02 20:08:48 2007
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1609
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Apr 02 15:08:53 2007
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >houston_XYZ_60                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (2072) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:2072  HANDLE:1580)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1609
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Apr 02 15:08:54 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2072  HANDLE:1580)
    DpStartStopMsg: send stop message (myname is >houston_XYZ_60                         <)
    NiIMyHostName: hostname = 'houston'
    AdGetSelfIdentRecord: >                                                                           <
    XYZvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    XYZvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Mon Apr 02 15:08:55 2007
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11976]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 1488 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 1488 (pos=2)
    SiSelNRemove: removed sock 1488
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    XYZvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    XYZvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    XYZvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/22
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 9)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1488
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 4036) [dpxxdisp.c   10333]
    Good Bye .....
    <b>The dev_w21 reads:
    trc file: "dev_w21", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Apr 02 15:08:01 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\put\exe\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\put\exe\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\put\exe\dbmssslib.dll' is "700.08", patchlevel (0.87)
    B  New connection 0 created
    M sysno      60
    M sid        XYZ
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    95
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        5572
    M
    M  kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc21 5572) [dpxxdisp.c   1301]

    I Mon Apr 02 15:08:02 2007
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          19888     (904)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1280)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 063F0040, size: 4240712)
    M  DpShMCreate: allocated sys_adm at 063F0040
    M  DpShMCreate: allocated wp_adm at 063F1A28
    M  DpShMCreate: allocated tm_adm_list at 063F67D8
    M  DpShMCreate: allocated tm_adm at 063F6808
    M  DpShMCreate: allocated wp_ca_adm at 06766A98
    M  DpShMCreate: allocated appc_ca_adm at 0676B0E8
    M  DpShMCreate: allocated comm_adm at 0676C858
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 067ED708
    M  DpShMCreate: allocated gw_adm at 067ED748
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 067ED778
    M  DpShMCreate: allocated wall_adm at 067ED780
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 21 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host houston

    M Mon Apr 02 15:08:03 2007
    M  calling db_connect ...
    C  Thread ID:4020
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\put\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      87
    C    patchcomment MSSQL: UTAB/ATAB/Dynp-access via clientside cursor (1002914)
    C  np:(local) connection used on houston
    C  CopyLocalParameters: dbuser is 'XYZ_shd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.1399.06
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Can't use MARS (on sql 8.0).  Reconnecting without MARS functionality.
    C  Using Provider SQLNCLI
    C  Provider Release:9.00.1399.06
    C  Using Provider SQLNCLI
    C  CheckCodepageType: line 24329. hr: 0x80040e37 Invalid object name 'DBPROPERTIES'.
    C  sloledb.cpp [CheckCodepageType,line 24329]: Error/Message: (err 208, sev 16), Invalid object name 'DBPROPERTIES'.
    C  Procname: [CheckCodepageType -- no proc]
    C  Cache sizes: header 52 bytes, 20000 names (26720000 bytes), 500 dynamic statements (2724000 bytes), total 29444052 bytes
    C  Initializing shared procedure name cache houston_XYZXYZ_XYZ_SHD_MEM.
    C  procedure cache created/attached
    C  PSP: 0 procedure names registered
    C  Connected to db server : [houston] server_used : [np:(local)], dbname: XYZ, dbuser: XYZ
    C  pn_id:houston_XYZXYZ_XYZ_SHD
    C  Not using MARS (on sql 8.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20070402 150803 houston       
    C  The IRow interface is supported by this OLEDB provider
    C  sloledb.cpp [ParamStmtExec,line 12988]: Error/Message: (err 8180, sev 0), Statement(s) could not be prepared.
    C  Procname: [##YshoustonXYZ00000055720000000001150803]
    C  sloledb.cpp [ParamStmtExec,line 12988]: Error/Message: (err 208, sev 16), Invalid object name 'SVERS'.
    C  Procname: [##YshoustonXYZ00000055720000000001150803]
    C  ParamStmtExec failed.  HR 80040e14 DBSL retcode 103. stmt: [SELECT TOP      1 VERSION FROM SVERS ]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum: 112156
    C  DbSlRead - Error 103 (dbcode 208) on open
    C  DbSlRead - <##YshoustonXYZ00000055720000000001150803>
    C  DbSlRead - Error 103 (dbcode 208) on fetch
    C  DbSlRead - <##YshoustonXYZ00000055720000000001150803>
    B  ***LOG BZA=> table SVERS      does not exist on database            [dblink#3 @ 1299] [dblink  1299 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 004096) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 21

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_SPOWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server houston_XYZ_60 on host houston (wp 21)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Mon Apr 02 15:08:03 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc21 5572) [dpnttool.c   327]</b>
    On SDN there are many discussions about similar errors but none
    of them fits our situation.
    Please give your advice. Points will be given.
    Thanks!

    Target SAP system is ADC
    Enter the SAP instance number [59]:
    ? INSTANCE NUMBER   =
    Waiting for input since Mar 22, 2007 1:20:45 PM
    > INSTANCE NUMBER   =  59
    Type of database system is MSS
      >>>>>>>>>> Input Wizard <<<<<<<<<<
    Please enter up to 24 mount points for CDs.
    Enter at least the mount point for the CD titled "Upgrade Master CD/DVD"
    ? MOUNT POINT 01 =
    ? MOUNT POINT 02 =
    ? MOUNT POINT 03 =
    ? MOUNT POINT 04 =
    ? MOUNT POINT 05 =
    ? MOUNT POINT 06 =
    Please enter up to 24 mount points for CDs.
    Enter at least the mount point for the CD titled "Upgrade Master CD/DVD"
    ? MOUNT POINT 07 =
    ? MOUNT POINT 08 =
    ? MOUNT POINT 09 =
    ? MOUNT POINT 10 =
    ? MOUNT POINT 11 =
    ? MOUNT POINT 12 =
    Please enter up to 24 mount points for CDs.
    Enter at least the mount point for the CD titled "Upgrade Master CD/DVD"
    ? MOUNT POINT 13 =
    ? MOUNT POINT 14 =
    ? MOUNT POINT 15 =
    ? MOUNT POINT 16 =
    ? MOUNT POINT 17 =
    ? MOUNT POINT 18 =
    Please enter up to 24 mount points for CDs.
    Enter at least the mount point for the CD titled "Upgrade Master CD/DVD"
    ? MOUNT POINT 19 =
    ? MOUNT POINT 20 =
    ? MOUNT POINT 21 =
    ? MOUNT POINT 22 =
    ? MOUNT POINT 23 =
    ? MOUNT POINT 24 =
    Waiting for input since Mar 22, 2007 1:20:49 PM
    > MOUNT POINT 12 =  D:\D12\SAP_CRM_5.0_SR2_Installation_Export
    > MOUNT POINT 23 =  D:\D23\51032247
    > MOUNT POINT 18 =  D:\D18\NW_2004s_SR2_liveCache_7.6.00_Bd._29
    > MOUNT POINT 15 =  D:\D15\NW_2004s_SR2_Upgrade_Master
    > MOUNT POINT 09 =  D:\D9
    > MOUNT POINT 14 =  D:\D14\SAP_CRM_5.0_SR2_Installation_Export
    > MOUNT POINT 01 =  D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export
    > MOUNT POINT 08 =  D:\D8\SAP_CRM_5.0_SR2_Languages
    > MOUNT POINT 20 =  D:\D20\NW_2004s_SR2_Languages
    > MOUNT POINT 03 =  C:\D3\SAP_CRM_5.0_SR2_Upgrade_Export
    > MOUNT POINT 06 =  C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86
    > MOUNT POINT 10 =  D:\D10
    > MOUNT POINT 17 =  D:\D17\51032257
    > MOUNT POINT 21 =  D:\D21\NW_2004s_SR2_Languages
    > MOUNT POINT 19 =  D:\D19\51032257
    > MOUNT POINT 05 =  C:\D5\SAP_CRM_5.0_SR2_Upgrade_Export
    > MOUNT POINT 04 =  C:\D4\SAP_CRM_5.0_SR2_Upgrade_Export
    > MOUNT POINT 11 =  D:\D11\SAP_CRM_5.0_SR2_Installation_Export
    > MOUNT POINT 07 =  D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master
    > MOUNT POINT 24 =  D:\D24
    > MOUNT POINT 02 =  C:\D2\SAP_CRM_5.0_SR2_Upgrade_Export
    > MOUNT POINT 22 =  D:\D22\NW_2004s_SR2_Languages
    > MOUNT POINT 16 =  D:\D16\BS_2005_SR2_SAP_Installation_Master
    > MOUNT POINT 13 =  D:\D13\SAP_CRM_5.0_SR2_Installation_Export
    Reading data from "Upgrade Master CD/DVD"...
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL7000.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL7000.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL700X.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL700X.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS2.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS2.SAR successfully unpacked to D:\usr\sap\put.
    Welcome to the SAP upgrade control program.
    Important information for this upgrade is included
    in the upgrade Note and further Notes mentioned therein.
    Refer to the upgrade manual for the number of this note.
    It is advisable to obtain this Note before starting any process
    since it also contains important information about preparing
    the upgrade.
    It is essential that you get a current version of this Note
    before starting the upgrade with SAPup. It contains a keyword
    which is necessary to start the upgrade procedure.
    Please look into the SAP Service Marketplace or, if not available,
    use the form in your packet to request the upgrade Note.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:24:47 PM
    > cancel
    Connection to SAPup  was closed
    Target SAP system is ADC
    Enter the SAP instance number [59]:
    ? INSTANCE NUMBER   =
    Waiting for input since Mar 22, 2007 1:28:34 PM
    > INSTANCE NUMBER   =  59
    Type of database system is MSS
    Reading data from "Upgrade Master CD"...
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL7000.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL7000.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL700X.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\DBINDEP\CTRL700X.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS2.SAR" to "D:\usr\sap\put" ...
    Archive D:\D7\SAP_CRM_5.0_SR2_Upgrade_Master\UMN_WINDOWS_I386\MSS\UPTOOLS2.SAR successfully unpacked to D:\usr\sap\put.
    Welcome to the SAP upgrade control program.
    Important information for this upgrade is included
    in the upgrade Note and further Notes mentioned therein.
    Refer to the upgrade manual for the number of this note.
    It is advisable to obtain this Note before starting any process
    since it also contains important information about preparing
    the upgrade.
    It is essential that you get a current version of this Note
    before starting the upgrade with SAPup. It contains a keyword
    which is necessary to start the upgrade procedure.
    Please look into the SAP Service Marketplace or, if not available,
    use the form in your packet to request the upgrade Note.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:28:43 PM
    > continue
    SAP  UPGRADE  CONTROL  PROGRAM
    ================================
    This is SAPup version 7.00/2 upgrade to release
            500 of BBPCRM
            2005_1_700 of PI_BASIS
            700 of SAP_ABA
            700 of SAP_AP
            700 of SAP_BASIS
            700 of SAP_BW
            2005_1_700 of ST-PI
    Target SAP system is ADC, MSSQL database
    SAPup started in PREPARE mode.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:28:50 PM
    > continue
    The following options are available:
    select: Display screen for selecting PREPARE modules
    status: Display the statuses of the PREPARE modules
    exit:   Exit PREPARE
    help:   Getting help about PREPARE
    ? select
    ? status
    ? exit
    Waiting for input since Mar 22, 2007 1:28:54 PM
    > select
    Select the PREPARE modules
    ?                             name     status  mandatory
    ?                  Parameter input    initial        yes
    ?                   Initialization    initial        yes
    ?                           Import    initial        yes
    ?                        Extension    initial        yes
    ?                      Integration    initial        yes
    ?                     Installation    initial        yes
    ?                   General checks    initial        yes
    ?                Activation checks    initial        yes
    ? Necessary checks for conversions    initial        yes
    ?  Optional checks for conversions    initial         no
    ?             Modification support    initial         no
    ?                   Pre-processing    initial         no
    Waiting for input since Mar 22, 2007 1:28:56 PM
    >                  Parameter input    initial        yes
    You selected the following PREPARE modules:
    Parameter input
    execute: Execute the selected PREPARE modules.
             Make sure that you have carried out the actions described in
             D:\usr\sap\put\log\CHECKS.LOG before continuing.
             (Note: The contents of file CHECKS.LOG are saved
              in D:\usr\sap\put\log\CHECKS.SAV)
    select:  Display screen for selecting PREPARE modules.
    exit:    Exit PREPARE.
    help:    Getting help about PREPARE modules.
    ? execute
    ? select
    ? exit
    Waiting for input since Mar 22, 2007 1:28:59 PM
    > execute
    Execution of PREPARE module Parameter input begins at 20070322142901
    >> 14:29:01  PREPARE: START OF PHASE BEGIN_PRE
    Generating html phase list files 'phase_toc.html' and 'phaselist.html'
    >> 14:29:01  PREPARE: END OF PHASE   BEGIN_PRE
    >> 14:29:01  PREPARE: START OF PHASE KEY_CHK
    Correction package 'D:\usr\sap\put\FIX_CRM50SR2.UPG' found, extracting to 'D:\usr\sap\put'
    Archive successfully unpacked.
    Enter the SAPup keyword of note 961511
    ? SAPup keyword =
    Waiting for input since Mar 22, 2007 1:29:02 PM
    > SAPup keyword = 19327784
    >> 14:37:23  PREPARE: END OF PHASE   KEY_CHK
    >> 14:37:23  PREPARE: START OF PHASE EXTRACTKRN_PRE
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPMMC.SAR" to "D:\usr\sap\put\exe" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPMMC.SAR successfully unpacked to D:\usr\sap\put\exe.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\UNINSTSAP.EXE" to "D:\usr\sap\put\exe" ...
    Done.
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPEXE.SAR" to "D:\usr\sap\put\exe" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPEXE.SAR successfully unpacked to D:\usr\sap\put\exe.
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\MSS\SAPEXEDB.SAR" to "D:\usr\sap\put\exe" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\MSS\SAPEXEDB.SAR successfully unpacked to D:\usr\sap\put\exe.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\IGSEXE.SAR" to "D:\usr\sap\put\exe" ...
    Done.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\IGSHELPER.SAR" to "D:\usr\sap\put\exe" ...
    Done.
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPMMC.SAR" to "D:\usr\sap\put\exenew" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPMMC.SAR successfully unpacked to D:\usr\sap\put\exenew.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\UNINSTSAP.EXE" to "D:\usr\sap\put\exenew" ...
    Done.
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPEXE.SAR" to "D:\usr\sap\put\exenew" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\SAPEXE.SAR successfully unpacked to D:\usr\sap\put\exenew.
    Extracting archive "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\MSS\SAPEXEDB.SAR" to "D:\usr\sap\put\exenew" ...
    Archive C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\MSS\SAPEXEDB.SAR successfully unpacked to D:\usr\sap\put\exenew.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\IGSEXE.SAR" to "D:\usr\sap\put\exenew" ...
    Done.
    Copying file "C:\D6\NW_2004s_SR2_Kernel_WINDOWS__LNX_X86\KN_WINDOWS_I386_AUPG\DBINDEP\IGSHELPER.SAR" to "D:\usr\sap\put\exenew" ...
    Done.
    >> 14:40:10  PREPARE: END OF PHASE   EXTRACTKRN_PRE
    >> 14:40:10  PREPARE: START OF PHASE INITPUT_PRE
    Supply the following information:
    Confirm the name of your SAP system:
    ? SAP SYSTEM ID     =
    The hostname of your central SAP server:
    ? SAP SYSTEM HOST   =
    Enter the SAP instance number:
    ? INSTANCE NUMBER   =
    Waiting for input since Mar 22, 2007 1:40:10 PM
    > INSTANCE NUMBER   =  59
    > SAP SYSTEM HOST   =  damascus
    > SAP SYSTEM ID     =  ADC
    The system identifier of your database:
    ? DATABASE ID       =
    The hostname of your database server:
    ? DATABASE HOST     =
    Waiting for input since Mar 22, 2007 1:43:59 PM
    > DATABASE HOST     =  damascus
    > DATABASE ID       =  ADC
    Executing script MSSCONCHECK ...
    Supply the following information:
    The password for SAP user DDIC in client 000
    (may be 19920706):
    ? DDIC PASSWORD  =
    Verify password for SAP user DDIC:
    ? DDIC PASSWORD  =
    Waiting for input since Mar 22, 2007 1:44:03 PM
    > DDIC PASSWORD  =  <hidden input>
    > DDIC PASSWORD  =  <hidden input>
    The hostname of your batch server:
    ? BATCH HOST        =
    Waiting for input since Mar 22, 2007 1:44:14 PM
    > BATCH HOST        =  damascus
    Supply the following information:
    The maximum number of parallel processes during uptime:
    ? MAXIMUM UPTIME PROCESSES =
    The number of parallel import processes:
    ? R3TRANS PROCESSES =
    The maximum profile value of "bufreftime":
    ? MAXIMUM SYNC TIME =
    Waiting for input since Mar 22, 2007 1:44:16 PM
    > R3TRANS PROCESSES =  3
    > MAXIMUM SYNC TIME =  120
    > MAXIMUM UPTIME PROCESSES =  1
    The password for Operating System account .\SAPServiceADC:
    ? PASSWORD  =
    Verification of the password for Operating System account .\SAPServiceADC:
    ? PASSWORD  =
    Waiting for input since Mar 22, 2007 1:44:19 PM
    > PASSWORD  =  <hidden input>
    > PASSWORD  =  <hidden input>
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    Executing script MSSUPGSPS ...
    Executing script MSSINCHK ...
    >> 14:44:43  PREPARE: END OF PHASE   INITPUT_PRE
    >> 14:44:43  PREPARE: START OF PHASE DBCHK_PRE
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    Is there more than one system running in this database?
    (MCOD: Multiple components in one database)
    ? no
    ? yes
    Waiting for input since Mar 22, 2007 1:44:45 PM
    > no
    >> 14:44:49  PREPARE: END OF PHASE   DBCHK_PRE
    >> 14:44:49  PREPARE: START OF PHASE CONFCHK_IMP
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    >> 14:44:50  PREPARE: END OF PHASE   CONFCHK_IMP
    >> 14:44:50  PREPARE: START OF PHASE SOLMAN_CHK
    The SAP Solution Manager Key is required for the upgrade.
    Further informations can be found in the upgrade guide,
    the SAP Service Marketplace and SAP note 805390!
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:44:50 PM
    > continue
    ? SAP Solution Manager Key =
    Waiting for input since Mar 22, 2007 1:44:53 PM
    > SAP Solution Manager Key = 12D8B10981
    >> 14:45:14  PREPARE: END OF PHASE   SOLMAN_CHK
    >> 14:45:14  PREPARE: START OF PHASE CHKSYSTYPE
    >> 14:45:14  PREPARE: END OF PHASE   CHKSYSTYPE
    >> 14:45:14  PREPARE: START OF PHASE HIAV_CHK
    >> 14:45:14  PREPARE: END OF PHASE   HIAV_CHK
    >> 14:45:15  PREPARE: START OF PHASE J2EE_CHK1
    >> 14:45:15  PREPARE: END OF PHASE   J2EE_CHK1
    >> 14:45:15  PREPARE: START OF PHASE REQ_J2EEUPG
    >> 14:45:15  PREPARE: END OF PHASE   REQ_J2EEUPG
    >> 14:45:15  PREPARE: START OF PHASE SETSYNC_PREP_STARTED
    >> 14:45:15  PREPARE: END OF PHASE   SETSYNC_PREP_STARTED
    >> 14:45:15  PREPARE: START OF PHASE REQ_READNOTE
    >> 14:45:15  PREPARE: END OF PHASE   REQ_READNOTE
    >> 14:45:15  PREPARE: START OF PHASE INIT_CBU
    >> 14:45:15  PREPARE: END OF PHASE   INIT_CBU
    >> 14:45:15  PREPARE: START OF PHASE CHECKGROUP_END0
    Execution of PREPARE module Parameter input ends at 20070322144515
    Execution of the selected PREPARE modules finished
    with the statuses as follows:
    'Parameter input'  status: succeeded
    Please see file D:\usr\sap\put\log\CHECKS.LOG
    for the actions which have to be performed.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:45:15 PM
    > continue
    The following options are available:
    select: Display screen for selecting PREPARE modules
    status: Display the statuses of the PREPARE modules
    exit:   Exit PREPARE
    help:   Getting help about PREPARE
    ? select
    ? status
    ? exit
    Waiting for input since Mar 22, 2007 1:45:23 PM
    > select
    Select the PREPARE modules
    ?                             name     status  mandatory
    ?                  Parameter input  succeeded        yes
    ?                   Initialization    initial        yes
    ?                           Import    initial        yes
    ?                        Extension    initial        yes
    ?                      Integration    initial        yes
    ?                     Installation    initial        yes
    ?                   General checks    initial        yes
    ?                Activation checks    initial        yes
    ? Necessary checks for conversions    initial        yes
    ?  Optional checks for conversions    initial         no
    ?             Modification support    initial         no
    ?                   Pre-processing    initial         no
    Waiting for input since Mar 22, 2007 1:45:26 PM
    >                   Initialization    initial        yes
    You selected the following PREPARE modules:
    Initialization
    execute: Execute the selected PREPARE modules.
             Make sure that you have carried out the actions described in
             D:\usr\sap\put\log\CHECKS.LOG before continuing.
             (Note: The contents of file CHECKS.LOG are saved
              in D:\usr\sap\put\log\CHECKS.SAV)
    select:  Display screen for selecting PREPARE modules.
    exit:    Exit PREPARE.
    help:    Getting help about PREPARE modules.
    ? execute
    ? select
    ? exit
    ? display CHECKS.LOG
    Waiting for input since Mar 22, 2007 1:45:30 PM
    > execute
    Execution of PREPARE module Initialization begins at 20070322144532
    >> 14:45:32  PREPARE: START OF PHASE INITCURENV
    >> 14:45:32  PREPARE: END OF PHASE   INITCURENV
    >> 14:45:32  PREPARE: START OF PHASE DBCHK_INI
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getdbinfo ADC
    >> 14:45:34  PREPARE: END OF PHASE   DBCHK_INI
    >> 14:45:34  PREPARE: START OF PHASE RFCCHK_INI
    >> 14:45:34  PREPARE: END OF PHASE   RFCCHK_INI
    >> 14:45:34  PREPARE: START OF PHASE VERSCHK_INI
    >> 14:45:34  PREPARE: END OF PHASE   VERSCHK_INI
    >> 14:45:34  PREPARE: START OF PHASE VALCHK_INI
    >> 14:45:35  PREPARE: END OF PHASE   VALCHK_INI
    >> 14:45:35  PREPARE: START OF PHASE TOOLVERSION_INI
    >> 14:45:36  PREPARE: END OF PHASE   TOOLVERSION_INI
    >> 14:45:36  PREPARE: START OF PHASE UNICODE_CHK_PRE
    >> 14:45:36  PREPARE: END OF PHASE   UNICODE_CHK_PRE
    >> 14:45:36  PREPARE: START OF PHASE TOOLVERSION_UPG1
    >> 14:46:00  PREPARE: END OF PHASE   TOOLVERSION_UPG1
    >> 14:46:00  PREPARE: START OF PHASE DBCONNCHK_INI
    Checking DB connect with 'D:\usr\sap\put\exe\R3trans.exe'.
    >> 14:46:00  PREPARE: END OF PHASE   DBCONNCHK_INI
    >> 14:46:00  PREPARE: START OF PHASE SETSYNC_INFO_FINISHED
    >> 14:46:00  PREPARE: END OF PHASE   SETSYNC_INFO_FINISHED
    >> 14:46:00  PREPARE: START OF PHASE UCMIG_DECISION
    Your system is configured as a non-Unicode SCP (Single Code Page) configuration.
    If you plan to perform a Unicode Conversion after the upgrade, you may choose to perform a combined
    Upgrade and Unicode Conversion.
    In this case, several of the migration preparation steps can be done already on the start release
    or on the upgrade shadow system.
    For further information, please refer to OSS note 928729.
    Do you want to perform a combined Upgrade and Unicode Conversion?
    ? Yes
    ? No
    Waiting for input since Mar 22, 2007 1:46:06 PM
    > No
    >> 14:48:04  PREPARE: END OF PHASE   UCMIG_DECISION
    >> 14:48:04  PREPARE: START OF PHASE CLNT_CHK_INI
    >> 14:48:09  PREPARE: END OF PHASE   CLNT_CHK_INI
    >> 14:48:09  PREPARE: START OF PHASE PATCH_CHK1
    >> 14:48:15  PREPARE: END OF PHASE   PATCH_CHK1
    >> 14:48:15  PREPARE: START OF PHASE INTCHK_INI
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getddxttent ADC
    running D:\usr\sap\ADC\SYS\exe\run\tp.exe pf=D:\usr\sap\put\bin\DEFAULT.TPP getddxtfent ADC
    >> 14:48:15  PREPARE: END OF PHASE   INTCHK_INI
    >> 14:48:15  PREPARE: START OF PHASE ADJ_CNTRANS
    Calling R3trans to import 'RSUPDTEC.60X'.
    Waiting 130 seconds for buffer synchronization ...
    working ...
    >> 14:50:38  PREPARE: END OF PHASE   ADJ_CNTRANS
    >> 14:50:38  PREPARE: START OF PHASE INIT_CNTRANS
    >> 14:50:38  PREPARE: END OF PHASE   INIT_CNTRANS
    >> 14:50:38  PREPARE: START OF PHASE CNTRANS_PRE
    >> 14:50:38  PREPARE: END OF PHASE   CNTRANS_PRE
    >> 14:50:38  PREPARE: START OF PHASE DMPSPC_INI
    >> 14:50:38  PREPARE: END OF PHASE   DMPSPC_INI
    >> 14:50:38  PREPARE: START OF PHASE JOB_RSDB4090
    >> 14:50:38  PREPARE: END OF PHASE   JOB_RSDB4090
    >> 14:50:38  PREPARE: START OF PHASE CHK_DB6_REG_PRE
    >> 14:50:38  PREPARE: END OF PHASE   CHK_DB6_REG_PRE
    >> 14:50:39  PREPARE: START OF PHASE CHK_DB6_PAR_INI
    >> 14:50:39  PREPARE: END OF PHASE   CHK_DB6_PAR_INI
    >> 14:50:39  PREPARE: START OF PHASE SPACECHK_INI
    Executing script MSSSPACE ...
    >> 14:50:39  PREPARE: END OF PHASE   SPACECHK_INI
    >> 14:50:39  PREPARE: START OF PHASE KRNCHK_DEST
    >> 14:50:39  PREPARE: END OF PHASE   KRNCHK_DEST
    >> 14:50:39  PREPARE: START OF PHASE DBPREP_CHK
    >> 14:50:39  PREPARE: END OF PHASE   DBPREP_CHK
    >> 14:50:39  PREPARE: START OF PHASE EXECCV
    >> 14:50:44  PREPARE: END OF PHASE   EXECCV
    >> 14:50:44  PREPARE: START OF PHASE EXECAV
    >> 14:50:50  PREPARE: END OF PHASE   EXECAV
    >> 14:50:50  PREPARE: START OF PHASE COMPINFO_INI
    >> 14:50:50  PREPARE: END OF PHASE   COMPINFO_INI
    >> 14:50:50  PREPARE: START OF PHASE ADDON_CHK
    >> 14:50:50  PREPARE: END OF PHASE   ADDON_CHK
    >> 14:50:50  PREPARE: START OF PHASE ADDON_INFO
    >> 14:50:50  PREPARE: END OF PHASE   ADDON_INFO
    >> 14:50:50  PREPARE: START OF PHASE ADDON_SPEC1
    >> 14:50:55  PREPARE: END OF PHASE   ADDON_SPEC1
    >> 14:50:56  PREPARE: START OF PHASE ADDON_TREAS
    >> 14:50:56  PREPARE: END OF PHASE   ADDON_TREAS
    >> 14:50:56  PREPARE: START OF PHASE ADDON_WFM
    >> 14:51:01  PREPARE: END OF PHASE   ADDON_WFM
    >> 14:51:01  PREPARE: START OF PHASE ADDON_DMC
    >> 14:51:01  PREPARE: END OF PHASE   ADDON_DMC
    >> 14:51:01  PREPARE: START OF PHASE ACE_CHK
    >> 14:51:01  PREPARE: END OF PHASE   ACE_CHK
    >> 14:51:02  PREPARE: START OF PHASE CRM_BILL
    >> 14:51:02  PREPARE: END OF PHASE   CRM_BILL
    >> 14:51:02  PREPARE: START OF PHASE PR_DBPAR
    >> 14:51:02  PREPARE: END OF PHASE   PR_DBPAR
    >> 14:51:02  PREPARE: START OF PHASE CHECKGROUP_END1
    Execution of PREPARE module Initialization ends at 20070322145102
    Execution of the selected PREPARE modules finished
    with the statuses as follows:
    'Initialization'  status: succeeded
    Please see file D:\usr\sap\put\log\CHECKS.LOG
    for the actions which have to be performed.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:51:02 PM
    > continue
    The following options are available:
    select: Display screen for selecting PREPARE modules
    status: Display the statuses of the PREPARE modules
    exit:   Exit PREPARE
    help:   Getting help about PREPARE
    ? select
    ? status
    ? exit
    Waiting for input since Mar 22, 2007 1:51:41 PM
    > continue
    Select the PREPARE modules
    ?                             name     status  mandatory
    ?                  Parameter input  succeeded        yes
    ?                   Initialization  succeeded        yes
    ?                           Import    initial        yes
    ?                        Extension    initial        yes
    ?                      Integration    initial        yes
    ?                     Installation    initial        yes
    ?                   General checks    initial        yes
    ?                Activation checks    initial        yes
    ? Necessary checks for conversions    initial        yes
    ?  Optional checks for conversions    initial         no
    ?             Modification support    initial         no
    ?                   Pre-processing    initial         no
    Waiting for input since Mar 22, 2007 1:51:41 PM
    SAP  UPGRADE  CONTROL  PROGRAM
    ================================
    This is SAPup version 7.00/2 upgrade to release
            500 of BBPCRM
            2005_1_700 of PI_BASIS
            700 of SAP_ABA
            700 of SAP_AP
            700 of SAP_BASIS
            700 of SAP_BW
            2005_1_700 of ST-PI
    Target SAP system is ADC, MSSQL database
    SAPup started in PREPARE mode.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:58:46 PM
    > continue
    The following options are available:
    select: Display screen for selecting PREPARE modules
    status: Display the statuses of the PREPARE modules
    exit:   Exit PREPARE
    help:   Getting help about PREPARE
    ? select
    ? status
    ? exit
    Waiting for input since Mar 22, 2007 1:58:53 PM
    > select
    Select the PREPARE modules
    ?                             name     status  mandatory
    ?                  Parameter input  succeeded        yes
    ?                   Initialization  succeeded        yes
    ?                           Import    initial        yes
    ?                        Extension    initial        yes
    ?                      Integration    initial        yes
    ?                     Installation    initial        yes
    ?                   General checks    initial        yes
    ?                Activation checks    initial        yes
    ? Necessary checks for conversions    initial        yes
    ?  Optional checks for conversions    initial         no
    ?             Modification support    initial         no
    ?                   Pre-processing    initial         no
    Waiting for input since Mar 22, 2007 1:58:56 PM
    >                           Import    initial        yes
    You selected the following PREPARE modules:
    Import
    execute: Execute the selected PREPARE modules.
             Make sure that you have carried out the actions described in
             D:\usr\sap\put\log\CHECKS.LOG before continuing.
             (Note: The contents of file CHECKS.LOG are saved
              in D:\usr\sap\put\log\CHECKS.SAV)
    select:  Display screen for selecting PREPARE modules.
    exit:    Exit PREPARE.
    help:    Getting help about PREPARE modules.
    ? execute
    ? select
    ? exit
    ? display CHECKS.LOG
    Waiting for input since Mar 22, 2007 1:59:00 PM
    > execute
    Execution of PREPARE module Import begins at 20070322145902
    >> 14:59:02  PREPARE: START OF PHASE REQIMPORT
           The PREPARE module Import will be started now.
    During this module programs, structures, and table entries
    required by PREPARE are imported (the socalled "tool import").
    Note: This can cause a loss of performance in R/3
    In rare cases, a concurrent transport via the transport directory
    may disturb the tool import. Please avoid any concurrent import
    during this PREPARE module.
    ? continue
    ? cancel
    Waiting for input since Mar 22, 2007 1:59:02 PM
    > continue
    >> 14:59:05  PREPARE: END OF PHASE   REQIMPORT
    >> 14:59:05  PREPARE: START OF PHASE READDATA
    Trying to find archive files ...
    Extracting archive "D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC7000.SAR" to "D:\usr\sap\put" ...
    Archive D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC7000.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC700X.SAR" to "D:\usr\sap\put" ...
    Archive D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC700X.SAR successfully unpacked to D:\usr\sap\put.
    Extracting archive "D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC_SP.SAR" to "D:\usr\sap\put" ...
    Archive D:\D1\SAP_CRM_5.0_SR2_Upgrade_Export\UPG1\DBINDEP\MISC_SP.SAR successfully unpacked to D:\usr\sap\put.
    Trying to find archive files ...
    Extracting archive "C:\D2\SAP_CRM_5.0_SR2_Upgrade_Export\UPG2\DBINDEP\MISC700I.SAR" to "D:\usr\sap\put" ...
    Archive C:\D2\SAP_CRM_5.0_SR2_Upgrade_Export\UPG2\DBINDEP\MISC700I.SAR successfully unpacked to D:\usr\sap\put.
    >> 14:59:40  PREPARE: END OF PHASE   READDATA
    >> 14:59:40  PREPARE: START OF PHASE READDATA_EXT
    Trying to find archive files ...
    >> 14:59:41  PREPARE: END OF PHASE   READDATA_EXT
    >> 14:59:41  PREPARE: START OF PHASE TOOLFIX_CHK
    Correction package 'D:\usr\sap\put\FIX_CRM50SR2.UPG' found, extracting to 'D:\usr\sap\put'
    Archive successfully unpacked.
    >> 14:59:42  PREPARE: END OF PHASE   TOOLFIX_CHK
    >> 14:59:42  PREPARE: START OF PHASE CPYFIL0_CBU
    >> 14:59:42  PREPARE: END OF P

  • Trying to understand the Music app... Genre question

    K... There are so many problems I have with the Music app, but this question is the focus on one.. I understand that I cannot play an entire Genre of music in iOS7 (without creating a Smart Playlist for each Genre from within iTunes), and I've come to terms with that....but I just realized I can't even see the specific songs that genre has.
    I dunno how to explain it, but I'll try...
    I have all of Adam Lambert's albums in iTunes and I have right clicked songs and set them to specific genres, some are pop, some are rock, and I have one lone Adam Lambert song in my "Dance" genre. On my iPhone, with iOS7, I go to the Music app...tap Genres...tap Dance...and it shows Adam Lambert...so I tap on it and it shows me ALL 70 songs, NOT the one single song I have listed in the Dance genre. Now, if I go to Genres on iTunes and go to the Dance section, then that one single Adam Lambert song shows up. This occurs with every artist, not just him. If I go to Rock, it shows all of them as well. It's as if...if you have an artist with a song in multiple genres it decides all of the songs should be in all of those genres. What's the point of it?
    I don't understand the point of the Genre section on the iPhone if I can't even sort my stuff correctly. Am I missing something or is this just how it is now?

    Have you read the manual for this plugin?
    It explains what High and Low refer to, and of course all the other parameters.

  • Trying to understand the basics of iTunes

    It may sound stupid, but after having read various manuals, guides, forum discussions, I still don't understand the basics of iTunes - is a 64 yo maybe too old for this?
    Yes, I can fill my iPod with music and sync it with my laptop. But to manage everything well, I need answers on these questions:
    - After I add my laptop folder MY MUSIC to the iTunes library, does iTunes make COPIES of all my files in that folder? Or just links? If copies, where are they stored?
    - What does the term synchronisation include? Does it mean: the music in the iTunes library will be identical to the music in the iPod? Or:
    - Will all changes in that folder automatically lead to updates of my iTunes library? Changes such as adding/removing files, changing filenames, modifying files with audio editors. If the contents are not automatically updated/synchronised, is there a manual way to do that?
    - And vice versa: if I delete a song in iTunes, does that effect the source file in MY MUSIC? If not, is there an option to delete the song there as well?
    - Could I theoretically delete the whole contents of MY MUSIC folder after all files have been added to iTunes? Is it recommended to do so? Or should I keep the 'originals'?
    - The same goes for cd's: After I (automatically or manually) added the contents of a cd to iTunes, could I theoretically throw or give it away?
    - There is the option to find doubles. If I want to delete one or more of them, how do I know which file I delete. I mean this: if song X is part of album A but also of a bunch of single files, then I would like to keep the album folder complete and just delete the 'single' occurrence. But how to determine that?
    - Changing filenames in MY MUSIC often has no effect on the filename as displayed in iTunes. Why not?
    - I think that is all for now. Maybe later I still come across more basic questions.
    Could anyone give me the basic answers? And if possible in language for dummies, not in nerd slang, please
    Thanks!
    WimYogya
    Dutchman in Indonesia

    *After I add my laptop folder MY MUSIC to the iTunes library, does iTunes make COPIES of all my files in that folder? Or just links? If copies, where are they stored?*
    That depends. Open iTunes and go to Edit>Preferences>Advanced. If "Copy files to iTunes Music Folder" is checked then iTunes is "copying" the files into the iTunes Music folder which is inside the iTunes folder. The library is then referenced to the location of the copy ( in this case you can if you wish delete the original). If it's unchecked it is adding the songs to to your iTunes library but referencing the location that the file is in without making a copy.
    *Will all changes in that folder automatically lead to updates of my iTunes library? Changes such as adding/removing files, changing filenames, modifying files with audio editors.*
    No, iTunes doesn't support folder watching so all changes have to be made within iTunes.
    *If the contents are not automatically updated/synchronised, is there a manual way to do that?*
    File>Add File to Library: Adding Content to iTunes
    *if I delete a song in iTunes, does that effect the source file in MY MUSIC? If not, is there an option to delete the song there as well?*
    iTunes will delete songs from the library and move them to Trash (Recycle Bin) only if they are in the iTunes Music folder. (iTunes will ask if you want to trash the file if this is the case, it doesn't trash it automatically). If your songs are kept outside of this folder then deleting only removes the reference to the song from the library and you have to go to the folder they are located in to trash the file itself.
    *Could I theoretically delete the whole contents of MY MUSIC folder after all files have been added to iTunes? Is it recommended to do so? Or should I keep the 'originals'?*
    You could only delete the songs from the original folder if you have set the preference above to copy the files to the iTunes Music folder, if not you have to keep them where they are. Regardless of where the files are stored you would be well advised to back them up in case you have problems with your computer. You might also find this article interesting/useful: iLounge - The Complete Guide to Backing Up your iTunes Library
    *The same goes for cd's: After I (automatically or manually) added the contents of a cd to iTunes, could I theoretically throw or give it away?*
    You don't own the copyright of the song, basically you own the license to play it. if you make a copy and then sell/give the CD away you are essentially sharing the files illegally.
    *There is the option to find doubles. If I want to delete one or more of them, how do I know which file I delete. I mean this*
    You would have to check the location of the file manually to be sure which one you wanted to keep.
    *Changing filenames in MY MUSIC often has no effect on the filename as displayed in iTunes*
    Because iTunes doesn't support folder watching, changes need to be made within iTunes. Changing the name of a file outside of iTunes can cause iTunes to lose the location of the file since it is referenced under the name it had when you added it.

  • Trying to understand the B_EO_INBOUND_PARALLEL ?

    Bonjour a tous et a toutes,
    We have 15 integrations scenarios.
    -> ¾ are Async (JMS / IDOC  & IDOC / JMS)
    -> ¼ are Sync (JMS / RFC to CICS and return in JMS)
    We are trying to give priority to the Sync scenarios in order to avoid a timeout on the sender side.
    Here are the EO parameters we are using (in DEV for now):
    EO_OUTBOUND_PARALLEL = 5     B_EO_OUT_PARALLEL = 20
    EO_INTBOUND_PARALLEL = 3       B_EO_IN_PARALLEL = 20
    So we get (in SMQ2), 3 inbound queues and 5 outbound queues. This is working correctly.
    What do not seem to behave the way it is documented are the “B_EO _ …” parameters.
    My understanding is that all in inbound messages will be equally distributed in the 3 inbound queues with a maximum of 20 messages in each and every queues, for a maximum of 60 messages being process in parallel.
    Idem, for the 5 outbound queues (20 messages each = 100 messages being processes in parallel).
    We are not getting this type of behaviour Instead, we get more than 3 inbound queues (and more than 5 outbound queues) with weird names …
    Is this because we are getting more messages than 60 inbound messages ?
    Back to my initial request ... prioritize Async messages. We have used message filtering to achieve that … I have 2 questions
    1) De we have to set filtering for OUR ENTIRE Async message to a lower priority queue and assign ALL Sync message to a higher priority queues? Is that how we should proceed?
    2) How can we make sure (when we watch SMQ2) that message that are sent to a higher priority queue are getting process BEFORE a lower priority queues ?
    Any help will be greatly appreciated!!
    Michel Osborne A+

    Hi David,
    First of all – Many thank for your answer! It seem that there is not that much peoples that has work with parameters
    I have checked the OSS note you are mentioning. We will install it and test it. It might resolved other issues we have with queues:
    SMQ2 - Status: RUNNING forever? & SMQ2 -  "Transaction Executing ...." for ever ...
    We have some blocked queues from time to time and the batch job (that restart the message) do the job. However, in some cases the queue (we get an error in CCMS) get blocked but has the status: RUNNING … (not SYSFAIL) and it stay that way for ever … until we manually unblock the queue. We have a support ticket open at SAP support.
    Not sure I understand the meaning of the LOCK_MESSAGE parameter. It depend of what type of SYSFAIL you get ? This is parameter is available in our instance, but not in the documentation ... Can you elaborate, please ?
    In your case, we you set the values to EO_INBOUND_PARALLEL and EO_OUTBOUND_PARALLEL both to 12, and B_EO_IN_PARALLEL and B_EO_OUT_PARALLEL to 250. Do you see an even distribution of messages in each and every queues? In our case, it seem that the B_EO parameters are not working as documented. We do not see an even distribution … I have even run the pgm in debug to see how it “reorg” (balanced) it’s queue …
    Yes, we have set the BALANCING parameter is to 1
    We are on PI 7.0 – SP12 – HPUX with Oracle as well … but in HA mode.
    A+ Michel Osborne

  • I Dislike the Terms "Destructive" and "Non-Destructive" Editing

    Some folks in the Photoshop realm use the terms "destructive" and "non-destructive" to describe ways of using Photoshop in which transforms are applied directly to pixel values vs. being applied via layers or smart filters or smart objects or other means.
    Do you realize that the term "destructive" is actually mildly offensive to those who know what they're doing and choose to alter their pixel values on purpose?
    I understand that teaching new people to use Photoshop in a way that doesn't "destroy" their original image data is generally a good thing, and I'm willing to overlook the use of the term as long as you don't confront me and tell me what I'm doing when I choose to alter pixel values is "wrong" (or when I choose to advise others on doing so).
    For that people who claim editing pixel values is "destructive", I offer this one response, which is generally valuable advice, in return:
    Never overwrite your original file.
    There.  The "destruction" has ceased utterly.
    It's common sense, really.  You might want to use that file for something else in the future.
    If you shoot in raw mode with a digital camera, then you actually can't overwrite your raw files.  That's a handy side effect, though some don't use raw mode or even start working with digital photographs.
    In any case, when you open your image consider getting in the habit of immediately doing File - Save As and creating a .psd or .tif elsewhere, so that you can subsequently do File - Save to save your intermediate results.
    There can actually be many advantages to altering pixel values, if you know what you're doing and choose to do so.  But sometimes even the most adept Photoshop user might find that a given step created a monster; that's okay, there's a multi-step History palette for going back.  I normally set mine to keep a deep history, to give me a safety net if I DO do something wrong, though I tend to use it rarely.
    And for those who would tout the disadvantages to editing "destructively", there can be huge disadvantages to doing it "non-destructively" as well...  Accumulating a large number of layers slows things down and can use a lot of RAM...  With downsized zooms the mixing can yield posterization that isn't really there, or gee whiz, just TRY finding a computer fast enough to use smart filters in a meaningful way.  Just the concept of layers, if one hasn't worked out how layer data is combined in one's own mind, can be daunting to a new person!
    So I ask that you please stop saying that the "only" or "best" way to use Photoshop is to edit "non-destructively".  There are folks who feel that is offensive and arrogant.  I think the one thing everyone can agree upon is that THERE IS NO ONE OR BEST WAY TO USE PHOTOSHOP!
    You go ahead and do your editing your way.  I prefer to do "constructive" editing. 
    Thanks for listening to my rant.
    -Noel
    Man who say it cannot be done should not interrupt man doing it.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Aegis Kleais wrote:
    When you alter image data in a manner that cannot be reverted, you have destroyed it.
    Really?
    That's one of those things that one is not supposed to question.  It just sounds so right!
    Problem is, it's insufficient in and of itself, and misleading...  It's a rule of thumb that's way too general.
    What IS "data" anyway?  Arrangement of magnetic spots on a disk?  My disk is still whole, so we're not talking about physical destruction here.
    One could argue that all the data is all still there in many cases of pixel-value-change editing (e.g., where there has been no resizing).  The image file is the same size!  Same amount of data.
    Upsampling, or making a copy of an image is actually creating more data, not destroying data.  Thus there is no general "destruction", but the terms "construction" or "creation" could be used.
    But wait, perhaps you're really talking about destroying information, not data...  Well...
    As it turns out the term "destructive" is still off base.  I have altered the information, possibly even adding important information.  If I make a copy this is a no brainer.  Even if I don't, depending on a person's skill in editing, the altered result could still carry all the original information that was important plus information added by editing, and be quite possibly better for its intended purpose (human consumption) than the image before the edit.  That's the goal!
    So now we're talking about important information vs. unimportant information.  And of course we're talking about fitness for a future purpose.
    As with anything, there are multiple ways to get there and multiple ways to interpret the words.
    The term "destructive" in my opinion was invented to further someone's agenda.
    -Noel

  • Unhandled exception occurred during the execution of the workflow instance

    I had a workflow and library working with no issues, but had to move the library and export the workflow to another subsite (though on the same web site/collection).  I followed these how-tos:
    http://msdn.microsoft.com/en-us/library/office/jj819316%28v=office.15%29.aspx
    http://technet.microsoft.com/en-us/library/ee428301%28v=office.15%29.aspx
    Anyway, I've stripped all actions from the workflow and only have an Assign Task, but get this below:
    An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ArgumentException: ContentTypeId at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    To troubleshoot, I removed all library columns, removed then re-added the Custom Content type the New Document uses, and still the same error - with the workflow going into Suspended mode.
    I also tried the removal of the file from /Relationships%20List/allitems.aspx and de-activating then re-activating the SharePoint Publishing feature, also that didn't work.
    I've gone into ULS, but unable to find anything definitive, so not sure what to try next?
    Thank you,
    Chad

    Hi Chad,
    Glad to hear the issue is resolved. Content types could be used for multiple lists in SharePoint site at the same time.
    However, I'm not quite sure why you said the resolution is for a "bug". I read the article per your link:
    http://www.andrewconnell.com/blog/SP2013-Workflow-Custom-Task-Outcomes
    The article is showing how to create custom outcomes buttons in task forms. As I understand, the issue you encountered is that workflow migrated from the other site shows the suspended status.
    Please be more specific on the issue if assistance is needed. If this is the second question, I’d recommend you open another thread in the relevant forum and provide specific information about the issue. In order to avoid confusion and keep track of troubleshooting
    steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently.
    Thanks for the understanding.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • What are the Terms and Conditions for the AppleID

    What are the Terms and Conditions for the AppleID?   You know, those speed bumps you blow by when trying to achieve something.  Good luck trying to find them.  Apple has one place to take your money, many many different ways to tie you up with disparate Terms and Conditions.   They say that the fine print is important too.  So why are the terms and conditions for the AppleID so hard to find?

    Hi, Wanderer 37.  
    Thank you for visiting Apple Support Communities.  
    I absolutely understand your concern with having access to Terms and Conditions that you have accepted, and at Apple, we want this information to be as transparent as possible.  You can access the iTunes/Apple ID Terms and Conditions here:
    TERMS AND CONDITIONS
    https://www.apple.com/legal/internet-services/itunes/id/terms-en.html
    Cheers, 
    Jason H.  

  • How to assign ownership of the term to one of its shared terms?

    Hi everything,
    I have created a term called "New to Company", then I added the child term "1st week", "1st 30 Days", and "1st 90 Days" under it. Then I deleted them since we decided not using them. Later, we want to use them again
    so I was trying to add these child terms under "New to Company". It will not allowed meto do it. I found these three child terms are under System-> Orphaned Term. When I select one of it, on the right side ofthe window, pleae see the pic below.
    Anyone please let me know how can I assign ownership of the term to one of its shared terms to make these three child terms back under the "New to Company" term?
    Thank you in advance.
    Miranda

    Hi
    Miranda,
    According to your post, my understanding is that you wanted to assign ownership of the term in orphaned terms.
    For your issue, did you reuse the child terms before you deleted them?
    Deleting a term when it is still reused elsewhere will move the term to the orphaned Term Set object, and the term becomes an orphan.
    Orphan terms cannot be deleted directly. When all reused term objects are deleted, the orphan is automatically deleted.
    You can only assign the ownership of the term to one of its shared terms, you can not make them back under the “New to Company” term directly.
    If you want to use them again, you should delete the reused terms in other term set, then the terms would automatically deleted in the orphaned terms.
    Now, you can recreate them under the “New to Company” term set.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Can't re-install Photoshop, all other programs from Adobe Creative Suite 5.5 Design Standard (DVD) installed successfully.

    My iMac crashed and once I recovered it I re-installed all my software including my Adobe Creative Suite 5.5 Design Standard (DVD) but Photoshop simply won't install after 3 or 4 attempts. After the lengthy installation process I get a huge error mes

  • T440s, FnLk and Linux

    Can anybody confirm whether Fn Lock (FnLk, to use F1-F12 without holding Fn down) works with Linux? Or it depends on Windows driver only? I've read that FnLk on T431s works with Linux. Solved! Go to Solution.

  • Sort by date album order etc

    this sometimes stops working. i.e. when clicking the required option nothing at all happens.

  • How to change BP currency in AP Invoice using Add On

    Hi ! I create AP Invoice from my add on project .I used B1 D1 API  SAPbobsCOM.BoObjectTypes.oPurchaseInvoices . I choose BP code from my form and then I create AP Invoice .When creating AP Invoice , I want to change BP Currency to other currency .It

  • OIM and EBS reconciliation

    Hallo Everyone, I have installed OIM Version: 9.0.1.1561.0 on Win2003 Std Ed. Am trying to use the EBS user management connector. I have already deployed the connector. But I have the following doubts and questions. 1. When performing the reconciliat