Forced conversion in data base utilities

I am trying to activate the infoobject 0busobject it is giving conversion block lock error. i am not able to activate the BI content object . Can you tell me where to search for <b>database utilities --- Forced conversion</b> to use this functionality to activate my infoobject.
can u tell me step by step how to go about this.
Regards
Soniya

check OSS note: 325296
and the Tcode for database utilities is SE14

Similar Messages

  • Transfer of xml file elements to data base columns

    hi all,
    i have to store xml file's data(element values) into the data base(table columns).
    i heard that we can acheive this by XSU.
    IS it is mediator between xml and db? if yes how to install it.
    i tried something as below
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Nam
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    )but i am getting following error. can anybody explain about this
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (
      2  select xmltype('<Message-Header>
      3  <Message-Id>1234</Message-Id>
      4  <Sender-Company-ID>4569</Sender-Company-ID>
      5  <Sender-Company-Name>abc company</Sender-Company-Name>
      6  <Sender-User-ID>AA</Sender-User-ID>
      7  <Recv-Company-ID>050</Recv-Company-ID>
      8  <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
      9  <Creation-Time>20101019 15:59:39</Creation-Time>
    10  </Message-Header>') as xml from dual
    11* )
    SQL> /
    with t as (
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't existPlease help me..
    my db version is Oracle Database 10g Release 10.2.0.1.0 - Production

    Hi,
    What are you trying to achieve with a single WITH clause and no SELECT?
    Please see this from the documentation if you want to use it properly :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2077142
    Apart from its true purpose of subquery factoring, the WITH clause is often use here and there to simulate a table content, but you'll always need a SELECT.
    Maybe that's what you were trying to do?
    As for your question, starting with release 10.2, Oracle provides XMLTable to shred XML documents into relational structures.
    For example,
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Name>
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    select x.*
    from t,
         XMLTable(
          '/Message-Header'
          passing t.xml
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;If you're working in PL/SQL, and the XML resides in a variable, you can directly do (with necessary datatype conversion in the SELECT) :
    insert into your_table ( <your_columns_list> )
    select <your_columns_list>
    from XMLTable(
          '/Message-Header'
          passing your_xml_var
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;

  • I'm looking for a decent CRM app, so I can load my customer data base

    HI I'm looking for a CRM app or package, just started using my air for business and would like to have my customer data base with me handy
    for pulling up local customers and being able to enter some data sales related or just comments regarding conversations and topics talked about so I can follow up ect!
    any suggestions would be appreciated!
    thanks, Lee.

    Hi Lee what sort of database are you looking at also what sort of business do you run ?
    I have a CRM Package that is native to mac and pc and is built off of filemaker it is normally targeted at Recruitment businesses.
    Drop me a line if you wanna chat about it!
    Sammie

  • Performance problem in select data from data base

    hello all,
    could you please suggest me which select statement is good for fetch data form data base if data base contain more than 10 lac records.
    i am using SELECT PACKAGE SIZE n statement,  but it's taking lot of time .
    with best regards
    srinivas rathod

    Hi Srinivas,
    if you have huge data and selecting ,you could decrease little bit time if you use better techniques.
    I do not think SELECT PACKAGE SIZE  will give good performance
    see the below examples :
    ABAP Code Samples for Simple Performance Tuning Techniques
    1. Query including select and sorting functionality
    tables: mara, mast.
        data: begin of itab_new occurs 0,
                 matnr like mara-matnr,
                 ernam like mara-ernam,
                 mtart like mara-mtart,
                 matkl like mara-matkl,
                 werks like mast-werks,
               aenam like mast-aenam,
    stlal like mast-stlal,
         end of itab_new.
    select fmatnr fernam fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as f inner join mast as g on
    fmatnr = gmatnr where gstlal = '01' order by fernam.
    Code B
    tables: mara, mast.
    data: begin of itab_new occurs 0,
          matnr like mara-matnr,
          ernam like mara-ernam,
          mtart like mara-mtart,
          matkl like mara-matkl,
          werks like mast-werks,
          aenam like mast-aenam,
          stlal like mast-stlal,
    end of itab_new.
    select fmatnr fernam fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as f inner join mast as g on f~matnr =
    gmatnr where gstlal = '01'.
    sort itab_new by ernam.
    Both the above codes essentially do the same function, but the execution time for code B is considerably lesser than that of Code A. Reason: The Order by clause associated with a select statement increases the execution time of the statement, so it is profitable to sort the internal table once after selecting the data.
    2. Performance Improvement Due to Identical Statements – Execution Plan
    Consider the below queries and their levels of efficiencies is saving the execution
    tables: mara, mast.
    data: begin of itab_new occurs 0,
          matnr like mara-matnr,
          ernam like mara-ernam,
          mtart like mara-mtart,
          matkl like mara-matkl,
          werks like mast-werks,
          aenam like mast-aenam,
          stlal like mast-stlal,
    end of itab_new.
    select fmatnr fernam fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as f inner join mast as g on f~matnr =
    gmatnr where gstlal = '01' .
    sort itab_new.
    select fmatnr fernam
    fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as
    f inner join mast as g on f~matnr =
    gmatnr where gstlal
    = '01' .
    Code D (Identical Select Statements)
    tables: mara, mast.
    data: begin of itab_new occurs 0,
          matnr like mara-matnr,
          ernam like mara-ernam,
          mtart like mara-mtart,
          matkl like mara-matkl,
          werks like mast-werks,
          aenam like mast-aenam,
          stlal like mast-stlal,
    end of itab_new.
    select fmatnr fernam fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as f inner join mast as g on f~matnr =
    gmatnr where gstlal = '01' .
    sort itab_new.
    select fmatnr fernam fmtart fmatkl gwerks gaenam g~stlal
    into table itab_new from mara as f inner join mast as g on f~matnr =
    gmatnr where gstlal = '01' .
    Both the above codes essentially do the same function, but the execution time for code B is considerably lesser than that of Code A. Reason: Each SQL statement during the process of execution is converted into a series of database operation phases. In the second phase of conversion (Prepare phase) an “execution  plan” is determined for the current SQL statement and it is stored, if in the program any identical select statement is used, then the same execution plan is reused to save time. So retain the structure of the select statement as the same when it is used more than once in the program.
    3. Reducing Parse Time Using Aliasing
    A statement which does not have a cached execution plan should be parsed before execution; this parsing phase is a highly time and resource consuming, so parsing time for any sql query must include an alias name in it for the following reason.
    1.     Providing the alias name will enable the query engine to resolve the tables to which the specified fields belong to.
    2.     Providing a short alias name, (a single character alias name) is more efficient that providing a big alias name.
    Code E
    select jmatnr jernam jmtart jmatkl
    gwerks gaenam g~stlal into table itab_new from mara as
    j inner join mast as g on jmatnr = gmatnr where
                g~stlal = '01' .
    In the above code the alias name used is ‘ j ‘.
    4. Performance Tuning Using Order by Clause
    If in a SQL query you are going to  read a particular database record based on some key values mentioned in the select statement, then the read query can be very well optimized by ordering the fields in the same order in which we are going to read them in the read query.
    Code F
    tables: mara, mast.
    data: begin of itab_new occurs 0,
          matnr like mara-matnr,
          ernam like mara-ernam,
          mtart like mara-mtart,
          matkl like mara-matkl,
          end of itab_new.
    select MATNR ERNAM MTART MATKL from mara into table itab_new where
    MTART = 'HAWA' ORDER BY  MATNR ERNAM  MTART MATKL.
    read table itab_new with key MATNR = 'PAINT1'   ERNAM = 'RAMANUM'
    MTART = 'HAWA'   MATKL = 'OFFICE'.
    Code G
    tables: mara, mast.
    data: begin of itab_new occurs 0,
          matnr like mara-matnr,
          ernam like mara-ernam,
          mtart like mara-mtart,
          matkl like mara-matkl,
          end of itab_new.
    select MATNR ERNAM MTART MATKL from mara into table itab_new where
    MTART = 'HAWA' ORDER BY  ERNAM MATKL MATNR MTART.
    read table itab_new with key MATNR = 'PAINT1'   ERNAM = 'RAMANUM'
    MTART = 'HAWA'   MATKL = 'OFFICE'.
    In the above code F, the read statement following the select statement is having the order of the keys as MATNR, ERNAM, MTART, MATKL. So it is less time intensive if the internal table is ordered in the same order as that of the keys in the read statement.
    5. Performance Tuning Using Binary Search
    A very simple but useful method of fine tuning performance of a read statement is using ‘Binary search‘ addition to it. If the internal table consists of more than 20 entries then the traditional linear search method proves to be more time intensive.
    Code H
    select * from mara into corresponding fields of table intab.
    sort intab.     
    read table intab with key matnr = '11530' binary search.
    Code I
    select * from mara into corresponding fields of table intab.
    sort intab.     
    read table intab with key matnr = '11530'.
    Thanks
    Seshu

  • SAP R/3 TO DATA BASE?

    My scenario is to send the data from SAP R/3 TO oracle data base which updates the data\chages in oracle data base?
    Explain me this scenario?
    Thank you

    Hi,
    When you need to load information into an SAP R/3 system from a legacy system, a set of tools that falls into the Data Transfer catagory are used. Between 3.1H and 4.6C there were major changes in this area of SAP. The old Data Transfer Workbench can be used, or you can combine the new tools with programs that you write to effectively manage a data transfer project. SAP offers The Data Transfer Guidebook www.saplabs.com/dx to help guide users through the process.
    Moreover,  the new functions use BAPI interfaces and reduce the time and cost of mass data transfer . The
    DXWB also integrates batch input and direct input based on the business object's
    load programs. The DXWB is a one-stop-shop for all data transfers and contains
    the Data Mapping and Conversion (DMC) tool and integrates with the Legacy
    System Migration Workbench data mappings.
    The DXWB provides central functions to facilitate required DX tasks:
    . Organize DX-related work (project organization)
    . Access to DX-related documentation on specific topic
    . Understand the SAP target structures
    . Edit data file for test purposes
    . Map legacy structures to SAP target structure by using DMC
    . Run the required ABAP-based DX programs
    . Log technical and application errors
    . Correct erroneous records before reprocessing

  • Data base in microsoft office is damaged andI can't rebuild it. suggestions?

    Hi
    The data base for Microsoft Office 2008 has been damaged. I've tried twice to rebuild the data base, but it stalls after 2 hours and I'm forced to cancel. Very frustrating. The Office tools is a nice tool, but it's not working. I can use Word, Excel and PP but Entourage will not open at all. I've removed office and reinstalled and downloaded all of the updates. I still get the same message. If I have to start over, so be it, but I'm not sure how to completely remove Office. I removed it using Microsoft tools. (Positive reinforcement that I will always use Macs!)  Any suggestions will be most appreciated.
    Thanks,
    Momo3

    use time machine (if you have it on before all the errors in office) to restore the working files. if not you can use cleanmymac to remove all microsoft office program files and then reinstall office. Back up all your data before useing cleanmymac. it is a good app but it can clean too much some times if you do use clean my mac, open clean my mac click applications tab drag office apps from finder>applications not the dock and microsoft update as well. then click remove. it will remove all files that go with office (It wont remove Your document files) her is a link to a free trial of clean my mac http://macpaw.com/cleanmymac

  • Pivot Report in Excel from Oracle data base

    I need to bring data in Excel from Oracle table.
    The connectivity was established without any problem.
    When trying to transform the newly created query into
    a pivot table a am not able to see the data inside the
    "Data area" of pivot table as it is in the data base
    tables, instead Excel transforms the data in Sum, Average,
    etc...
    I believe it is an Excel issue but I am not sure.
    Any sugestions would be appreciated.
    Thanks,
    Larry Moise

    Thank u but already i do have apache POI
    hoew to make a conversion of coulmn data to excel

  • What are  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.

    BW on HANA :  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.
    We are trying to copy database from SAP BW7.0 to SAP BW on HANA 7.4 SPS6 so we are in search for list of steps or activities during database copy both pre and post steps.
    Along with the above we are in search of Pre and post migration steps ones database is transferred successfully from oracle to HANA on 7.4 SPS6.
    Kindly help us in getting the exact course of action as requested.
    Thanks and Regards,
    Lavina Joshi

    Hi Lavina,
    try this link for starters: Upgrade and Migration - BW on HANA | SAP HANA
    Points to remember are:
    Preparation:
         -- Hardware Sizing
         -- Preparation of Data Centres
         -- HANA Hardware preparation
         -- System Landscape Readiness (upgrade software downloads, system readiness checks, etc)
         -- House Keeping activities on BW system (data clean up, etc)
    Post Installation:
         -- Sanity checks / Preparation and License checks
         -- JAVA Configurations
         -- Infoprovider conversions 
    Overall Stages are described below:
    # Environmental setup (HANA box)
         -- Initial system checks and Building Activities (system copy, Appln server setups, etc)
    # System readiness
                   - ZBW_HANA_COCKPIT Tool
                   - ZBW_HANA_CHECKLIST Tool
                   - ZBW_ABAP_ANALYZER Tool
                   - ZBW_TRANSFORM_FINDER Tool
                   - SIZING Report
                   - System Clean up Activities
                   - Impact of 7.4 on source system checks
                   - Java Upgrade for portal
    # DMO Stages
                   - Preparation & Pre Migration checks
                   - Execution / Migration
                   - Post Migration Activities
    # Testing Phase
                   - Source system checks/Activities
                   - System and Integration Testing
                   - End to End Testing
                   - Performance testing
                   - Reports
                   - BO reports / Interfaces
    Do let me know if you require any further information.
    Regards,
    Naren

  • Window pops up saying can not complete request data base error, disk is full

    Window pops up saying can not complete request data base error, disk is full

    I am using the latest ID version with update and I am using a Mac running 10.9.5. This all started when I tried to make a PDF file from a pub I was working on. The application made the file but went into a spinning beach ball and I had to force quit. Now the window pops up when I open ID and also when I am working on a documents.

  • J2ee process not started sfter data base restore

    hi ,i installed a test system.it is abap+java stack.i have restored full data base from production.SID's are different.abap satack is working fine,but j2ee process are not thetr in mmc showing no information is available. any one help me out.

    hi am sedin
    dev_disp trc file
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        CRT
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3572
    Thu Mar 13 20:32:42 2008
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3572) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Mar 13 20:32:47 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5273]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >crmtest_CRT_00                          <
    DpShMCreate: sizeof(wp_adm)          18512     (1424)
    DpShMCreate: sizeof(tm_adm)          5258160     (26160)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1744)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000CFD0050, size: 5947376)
    DpShMCreate: allocated sys_adm at 000000000CFD0050
    DpShMCreate: allocated wp_adm at 000000000CFD1F00
    DpShMCreate: allocated tm_adm_list at 000000000CFD6750
    DpShMCreate: allocated tm_adm at 000000000CFD67B0
    DpShMCreate: allocated wp_ca_adm at 000000000D4DA360
    DpShMCreate: allocated appc_ca_adm at 000000000D4E0120
    DpShMCreate: allocated comm_adm at 000000000D4E2060
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000D568CF0
    DpShMCreate: allocated gw_adm at 000000000D568D70
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000D568DA0
    DpShMCreate: allocated wall_adm at 000000000D568DB0
    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 4096 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1312
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1199
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( crmtest) [dpxxdisp.c   11586]
    Thu Mar 13 20:32:48 2008
    DpStartStopMsg: send start message (myname is >crmtest_CRT_00                          <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    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 75
    Release check o.K.
    Thu Mar 13 20:33:01 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Thu Mar 13 20:33:04 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 424
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1205) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=1312)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:33:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5112
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1275
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:33:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 368
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1276) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5112)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:33:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3456
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1294
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:33:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 364
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1295) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3456)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4564
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1310
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 356
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1311) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4564)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3604
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1321
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 352
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1322) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3604)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:34:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4452
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1336
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:34:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 348
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1337) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4452)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3476
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1368
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 344
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1370) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3476)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:28 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5104
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1381
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:36 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 340
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1382) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5104)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:35:48 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3304
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1396
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:35:56 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 7 / sock 324
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1397) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3304)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:36:08 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4864
      argv[0] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = F:\usr\sap\CRT\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1412
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CRT
      argv[7] = -DSAPMYNAME=crmtest_CRT_00
      argv[8] = -DSAPPROFILE=F:\usr\sap\CRT\SYS\profile\CRT_DVEBMGS00_crmtest
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu Mar 13 20:36:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 320
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1413) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4864)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu Mar 13 20:36:28 2008
    DpEnvCheckJ2ee: switch off j2ee start flag
    Sat Mar 15 04:50:32 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:50:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:50:52 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:51:47 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:03 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:12 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:52:19 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:53:02 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:53:31 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:01 2008
    WARNING => Program on wp 8 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:07 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 04:55:18 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:04 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:11 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:20 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:50:26 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:08 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:27 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:51:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:52:23 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:52:50 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 16:54:16 2008
    WARNING => Program on wp 8 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sat Mar 15 17:00:01 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:26 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:34 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:49:43 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:50:38 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:50:54 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:51:05 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:51:12 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:52:19 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:54:08 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 04:59:50 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:22 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:30 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:49:38 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:50:42 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:50:54 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:52:02 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:53:30 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Sun Mar 16 16:53:39 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:49:42 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:49:51 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:00 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:06 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:50:55 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:11 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:20 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:51:28 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:52:10 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:52:37 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:03 2008
    WARNING => Program on wp 8 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:13 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 04:54:21 2008
    WARNING => Program on wp 9 (stat=0x4) no longer exists - answer discarded [dpxxdisp.c   3787]
    Mon Mar 17 05:00:20 2008
    WARNING => Program on wp 9 (stat=0x2) no longer exists - answer discarded [dpxxdisp.c   3787]
    and dev_wo is
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Mar 13 20:32:48 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      00
    M sid        CRT
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        3920
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3920) [dpxxdisp.c   1299]
    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)          18512     (1424)
    M  DpShMCreate: sizeof(tm_adm)          5258160     (26160)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1744)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EFD0050, size: 5947376)
    M  DpShMCreate: allocated sys_adm at 000000000EFD0050
    M  DpShMCreate: allocated wp_adm at 000000000EFD1F00
    M  DpShMCreate: allocated tm_adm_list at 000000000EFD6750
    M  DpShMCreate: allocated tm_adm at 000000000EFD67B0
    M  DpShMCreate: allocated wp_ca_adm at 000000000F4DA360
    M  DpShMCreate: allocated appc_ca_adm at 000000000F4E0120
    M  DpShMCreate: allocated comm_adm at 000000000F4E2060
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000000F568CF0
    M  DpShMCreate: allocated gw_adm at 000000000F568D70
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000F568DA0
    M  DpShMCreate: allocated wall_adm at 000000000F568DB0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host crmtest

    M Thu Mar 13 20:32:49 2008
    M  calling db_connect ...
    C  Thread ID:3956
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'F:\usr\sap\CRT\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  np:(local) connection used on CRMTEST
    C  CopyLocalParameters: dbuser is 'crt'

    C Thu Mar 13 20:32:50 2008
    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  Cache sizes: header 104 bytes, 20000 names (32800000 bytes), 500 dynamic statements (2872000 bytes), total 35672104 bytes
    C  Using shared procedure name cache CRMTEST_CRTCRT_CRT_MEM initialized by another process.
    C  Connected to db server : [CRMTEST] server_used : [np:(local)], dbname: CRT, dbuser: crt
    C  pn_id:CRMTEST_CRTCRT_CRT
    C  Using MARS (on sql 9.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 20080313 203249 CRMTEST        
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.

    M Thu Mar 13 20:32:51 2008
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Thu Mar 13 20:32:58 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0000000019460050, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 000007FFF3290050, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 00000000198A0050, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 000000001B7F0050, size: 615040)
    M  SHM_PAGING_ADM          (addr: 000000001B890050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 000000001B920050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000000FFE0050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 000000001FA70160, size: 30000000, end: 000000002170C4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 0000000021710160, size: 10240000, end: 00000000220D4160)

    B Thu Mar 13 20:32:59 2008
    B  dbexpbuf: Buffer EIBUF (addr: 00000000220E0170, size: 4194304, end: 00000000224E0170)
    B  dbexpbuf: Buffer ESM   (addr: 00000000224F0170, size: 4194304, end: 00000000228F0170)
    B  dbexpbuf: Buffer CUA   (addr: 0000000022900170, size: 3072000, end: 0000000022BEE170)
    B  dbexpbuf: Buffer OTR   (addr: 0000000022BF0170, size: 4194304, end: 0000000022FF0170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000115A2D30
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 000000002C3900D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 000000002C3904F0
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2168 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 36 MB, reducing # of fragments
    A  System page size: 4kb, total admin_size: 5720kb, dir_size: 5664kb.
    A  Attached to PXA (address 000007FFF6D30050, size 150000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--


    A Thu Mar 13 20:33:00 2008
    A  ABAP ShmAdm attached (addr=000007FF6207E000 leng=20955136 end=000007FF6347A000)
    A  >> Shm MMADM area (addr=000007FF62557E90 leng=244096 end=000007FF62593810)
    A  >> Shm MMDAT area (addr=000007FF62594000 leng=15622144 end=000007FF6347A000)
    A  RFC Destination> destination crmtest_CRT_00 host crmtest system CRT systnr 0 (crmtest_CRT_00)
    A  RFC Options> H=crmtest,S=00,d=2,
    B  table logging switched off for all clients
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 13730 bytes at 000000002C500050
    N  SsfSapSecin: putenv(SECUDIR=F:\usr\sap\CRT\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is F:\usr\sap\CRT\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          = STD / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.75.20050900]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [10]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume crmtest_CRT_00

    E Thu Mar 13 20:33:01 2008
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    C Thu Mar 13 20:33:15 2008
    C  The IRow interface is supported by this OLEDB provider

    S Thu Mar 13 20:34:08 2008
    S  found spool memory service RSPO-ACTIONS at 000000002C39A230

    M Thu Mar 13 20:36:35 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 20:38:08 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 0000000008E30050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 0000000008E307C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 0000000008E30800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 0000000008E3080C

    M Thu Mar 13 20:39:30 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 20:40:58 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]
    B  dbmyclu : info : my major identification is 168427960, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my initial uuid is 21ED0D86BD75A54AB110DF41F509CAAB.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.

    M Thu Mar 13 21:07:39 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:04 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:23 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:08:45 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:09:37 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:09:59 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:10:16 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:10:40 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:12:33 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:12:56 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    M Thu Mar 13 21:14:15 2008
    M  *** ERROR => TempLicense request rejected [slicfkt.c    656]
    M  *** ERROR => SlicTryTemplicense: SlicICheckLicense failed (rc: -104) [slicch.c     2125]
    M  ***LOG SL3=> KLIC_HWIDKEY_LN.SLIC_HWIDKEY_LN [slicch.c     380]
    M  *** ERROR =>
    SAPLICENSE ERROR ***, error description not available
    [likeyapi_w.c 2182]

    N Thu Mar 13 21:14:56 2008
    N  RSEC: The entry with identifier /RFC/[email protected]_CRD
    N  was encrypted by a system
    N  with different SID and cannot be decrypted here.
    N  RSEC: The entry with identifier /RFC/[email protected]_CRD
    N  was encrypted by a system
    N  with different SID and cannot be decrypted here.

    A Thu Mar 13 21:14:57 2008
    A  RFC 3165  CONVID 24150480
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 2, 24150480, {BBF7B2FD-E7BD-481C-BCC5-C14C4DCF7569})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24151558
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 3, 24151558, {BE818A28-28FF-4FA3-8468-7D26BAE3E45C})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24152667
    M  *
    M  *  TIME        Thu Mar 13 21:14:57 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *              state RECEIVE_DO_ACCEPT
    M  *  COUNTER     79
    M  *
    M  *****************************************************************************

    A  RFC 3293  CONVID 24152667
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 ThSAPCMRCV
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 5, 24152667, {AF649C7D-630C-4119-8883-D1B05D5C7B04})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24152667
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 comread

    A Thu Mar 13 21:15:00 2008
    A  RFC 3165  CONVID 24156636
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 7, 24156636, {6B579F5B-BE77-497B-8F00-10A4EA3E56CA})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    A Thu Mar 13 21:16:19 2008
    A  RFC 3165  CONVID 24236495
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 2, 24236495, {4060AC1F-CDBC-4F8F-A688-E0EC4349A4AD})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24237526
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 3, 24237526, {2194687C-6032-433B-A830-3B14BBB6F08E})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24238573
    M  *
    M  *  TIME        Thu Mar 13 21:16:19 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *              state RECEIVE_DO_ACCEPT
    M  *  COUNTER     82
    M  *
    M  *****************************************************************************

    A  RFC 3293  CONVID 24238573
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 ThSAPCMRCV
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 5, 24238573, {7070FE84-C4F8-4B93-9A35-CC8B33004994})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24238573
    A   * CMRC=25 DATA=1 STATUS=1 SAPRC=221 comread

    A Thu Mar 13 21:16:21 2008
    A  RFC 3165  CONVID 24241636
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 7, 24241636, {BAE47DEC-B5E0-436B-AF61-49BA0BECBA89})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    A Thu Mar 13 21:16:51 2008
    A  RFC 3165  CONVID 24272417
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 9, 24272417, {4A78FF2B-82BD-4199-845F-ED81CBD5CFE9})
    A  RFC> Called function module: TMS_CI_START_SERVICE
    A  RFC 3165  CONVID 24273433
    A   * CMRC=18 DATA=3 STATUS=1 SAPRC=0 comread Logon not possible (error in license check)                                    
    A  RFC> ABAP Programm: SAPLTMSC (Transaction: STMS)
    A  RFC> User: SAP* (Client: 000)
    A  RFC> Destination: [email protected]_CRT (handle: 10, 24273433, {6B3B7501-5319-4275-BCF3-64CE72C5D911})
    A  RFC> Called function module: TMS_CI_START_SERVICE

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host crmtest / sapgw00
    M  *  ERROR       program state check for conversation 24274480
    M  *
    M  *  TIME        Thu Mar 13 21:16:51 2008
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          471
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        3251
    M  *  DETAIL      program sapgw00 on host crmtest called function SEND_DATA in
    M  *            

  • How to use Load XML Data (Home Utilities Data Load/Unload Load)

    How is Load XML Data (Home>Utilities>Data Load/Unload>Load) supposed to work? Where is this documented?
    What table type/structure is required?
    How does this related to XDB functionality?

    It's not really documented that well in the XE redux documents (or even the base Apex Documents)- see http://download-west.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/sql_utl.htm#sthref2530
    However, it's reasonably easy to use - you can export a table to XML format, and then reload the table with the data by importing the XML document. It has nothing to do with XDB, it's just a different flat file representation for unloaded data than CSV

  • How to export a data as an XML file from oracle data base?

    could u pls tell me the step by step procedure for following questions...? how to export a data as an XML file from oracle data base? is it possible? plz tell me itz urgent requirement...
    Thankz in advance
    Bala

    SQL> SELECT * FROM v$version;
    BANNER
    Oracle DATABASE 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS FOR 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    5 rows selected.
    SQL> CREATE OR REPLACE directory utldata AS 'C:\temp';
    Directory created.
    SQL> declare                                                                                                               
      2    doc  DBMS_XMLDOM.DOMDocument;                                                                                       
      3    xdata  XMLTYPE;                                                                                                     
      4                                                                                                                        
      5    CURSOR xmlcur IS                                                                                                    
      6    SELECT xmlelement("Employee",XMLAttributes('http://www.w3.org/2001/XMLSchema' AS "xmlns:xsi",                       
      7                                  'http://www.oracle.com/Employee.xsd' AS "xsi:nonamespaceSchemaLocation")              
      8                              ,xmlelement("EmployeeNumber",e.empno)                                                     
      9                              ,xmlelement("EmployeeName",e.ename)                                                       
    10                              ,xmlelement("Department",xmlelement("DepartmentName",d.dname)                             
    11                                                      ,xmlelement("Location",d.loc)                                     
    12                                         )                                                                              
    13                   )                                                                                                    
    14     FROM   emp e                                                                                                       
    15     ,      dept d                                                                                                      
    16     WHERE  e.DEPTNO=d.DEPTNO;                                                                                          
    17                                                                                                                        
    18  begin                                                                                                                 
    19    OPEN xmlcur;                                                                                                        
    20    FETCH xmlcur INTO xdata;                                                                                            
    21    CLOSE xmlcur;                                                                                                       
    22    doc := DBMS_XMLDOM.NewDOMDocument(xdata);                                                                           
    23    DBMS_XMLDOM.WRITETOFILE(doc, 'UTLDATA/marco.xml');                                                                  
    24  end;                                                                                                                  
    25  /                                                                                                                      
    PL/SQL procedure successfully completed.
    .

  • Can any one help me to configure the mysql table to enable user expiration to function, I have tryed most things, but not dates are being passed back to the data base from the form

    Im trying to build  user expiration into my registration form, but I cant get the form to send back the date registering.
    in my data base i have tried every thing from timestamp to datetime. I can get a timestamp but it is not functioning with the expiration?

    just have a look at my tutorial Login tables: installation & configuration where the required column attributes are explained and where you can obtain a fully functional SQL dump for a typical ADDT "login" and (optionally) "login_stats" table.
    BTW, "expiration" will have to be an "int" column.
    Cheers,
    Günter

  • Quota Generation not happen's on Pro data basis .

    Dear experts,
    Time evalution status - 1.
    1.Employee service 0 - 5 years - 24 Days entitlement
    2.Employee service 5 - 10 years  - 29 days  entitlement.
    when generating quota for employee less than five years its calculating correctly.when come's  to employee more than 5 years its not calculating on pro-data basis of employee joining month. Instead of Month it's looking at the year and calculating it.
    DOJ of employee
    Mar-09
    Year
    TOTAL quota accrued
    2009
    20
    2010
    24
    2011
    24
    2012
    24
    2013
    24
    Client requirement
    System calculation as of now
    2014
    28
    29
    Calculation part.
    below screen shot show how system calculating and how client needed.
    how this  scenario can be configured.
    Regards
    Vinodh

    Check the Deduction rule for that Quota
    once check the Groupings for ESG and PSA
    V_001P_ALL
    V_503_ALL

  • How to stored data after clicking checkbox in data base table

    REPORT  ZT                                      .
    TYPE-pools: slis.
    tables:mkpf,mseg,mard,COWB_COMP,ZTABLE.
    Types:BEGIN OF tp_data,
         mblnr LIKE mseg-mblnr,
         matnr LIKE mseg-matnr,
         werks LIKE mard-werks,
         lgort LIKE mard-lgort,
         lgpbe LIKE mard-lgpbe,
         charg LIKE mseg-charg,
         bwart LIKE mseg-bwart,
         budat LIKE mkpf-budat,
         menge LIKE mseg-menge,
         meins LIKE mseg-meins,
         kostl LIKE mseg-kostl,
         aufnr LIKE mseg-aufnr,
         rsnum LIKE mseg-rsnum,
         endkz like COWB_COMP-endkz,
    END OF tp_data,
    tp_tbl_data TYPE STANDARD TABLE OF tp_data.
    MODIFIED*******************
    DATA: WA TYPE TP_DATA.
    MODIFIED*******************
    *data: t_data like Y00_MM_ISSUE_DAT occurs 0 with header line.
    Constants
    Data objects (variable declarations and definitions)
    Report data to be shown.
    DATA: it_data TYPE STANDARD TABLE OF tp_data.
    MODIFIED*******************
    DATA : V_REPID LIKE SY-REPID.
    MODIFIED*******************
    Heading of the report.
    DATA: t_heading TYPE slis_t_listheader.
    *========================== Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:smblnr FOR mseg-mblnr MODIF ID m1,
                  smatnr FOR mseg-matnr MODIF ID m2,
                  swerks FOR mard-werks MODIF ID m3,
                  slgort FOR mard-lgort MODIF ID m4,
                  slgpbe FOR mard-lgpbe MODIF ID m5,
                  scharg FOR mseg-charg MODIF ID m6,
                  sbwart FOR mseg-bwart MODIF ID m7,
                  skostl FOR mseg-kostl MODIF ID m8,
                  saufnr FOR mseg-aufnr MODIF ID m9,
                  srsnum FOR mseg-rsnum MODIF ID m10.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:pre RADIOBUTTON GROUP radi USER-COMMAND ucomm DEFAULT 'X',
              pse RADIOBUTTON GROUP radi,
              bps RADIOBUTTON GROUP radi.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    PARAMETER:layout TYPE i.
    SELECTION-SCREEN END OF BLOCK b3.
    MODIFIED*******************
    INITIALIZATION.
    V_REPID = sy-repid.
    MODIFIED*******************
    *=========================== Event Blocks
    AT selection-SCREEN.
    start-OF-selection.
    PERFORM get_data USING it_data.
    END-OF-selection.
    PERFORM build_alv USING it_data t_heading.
    *=========================== Subroutines
    *&      Form  get_data
          Gets the information to be shown in the report.
    FORM get_data USING t_data TYPE tp_tbl_data.
    SELECT msegmblnr msegmatnr mardwerks mardlgort mard~lgpbe
    msegcharg msegbwart mkpf~budat
       msegmenge  msegmeins msegkostl msegaufnr mseg~rsnum
    INTO CORRESPONDING FIELDS OF TABLE t_data
    FROM mseg
    JOIN mard ON mardmatnr EQ msegmatnr
                  JOIN mkpf ON msegmblnr EQ mkpfmblnr
                  WHERE mseg~matnr IN smatnr.
    ENDFORM.                    " get_data
    *&      Form  build_alv
          Builds and display the ALV Grid.
    FORM build_alv USING t_data TYPE tp_tbl_data
         t_heading  TYPE slis_t_listheader.
    ALV required data objects.
    DATA: w_title   TYPE lvc_title,
           w_comm    TYPE slis_formname,
           w_status  TYPE slis_formname,
           x_layout  TYPE slis_layout_alv,
           t_event    TYPE slis_t_event,
           t_fieldcat TYPE slis_t_fieldcat_alv,
           t_sort     TYPE slis_t_sortinfo_alv.
    REFRESH t_fieldcat.
    REFRESH t_event.
    REFRESH t_sort.
    CLEAR x_layout.
    CLEAR w_title.
    Field Catalog
    PERFORM set_fieldcat2 USING:
           1 'MBLNR' 'MBLNR' 'MSEG' space space space space space space
    space space space space space space t_fieldcat ,
           2 'MATNR' 'MATNR' 'MSEG' space space space space space space
    space space space space space space  t_fieldcat ,
           3 'WERKS' 'WERKS' 'MARD' space space space space space space
    space space space space space space  t_fieldcat,
           4 'LGORT' 'LGORT' 'MARD' space space space space space space
    space space space space space space t_fieldcat ,
           5 'LGPBE' 'LGPBE' 'MARD' space space space space space space
    space space space space space space t_fieldcat ,
           6 'CHARG' 'CHARG' 'MSEG' space space space space space space
    space space space space space space t_fieldcat ,
           7 'BWART' 'BWART' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
           8 'BUDAT' 'BUDAT' 'MKPF' space  space space space space space
    space space space space space space t_fieldcat,
           9 'MENGE' 'MENGE' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
           10 'MEINS' 'MEINS' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
           11 'KOSTL' 'KOSTL' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
           12 'AUFNR' 'AUFNR' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
           13 'RSNUM' 'RSNUM' 'MSEG' space  space space space space space
    space space space space space space t_fieldcat,
       14 'ENDKZ' 'ENDKZ' 'COWB_COMP' space space 'select' 'Select this row' 'Sel' 'Select this row' space space space 'X' 'X' space t_fieldcat.
    Layout
    x_layout-zebra = 'X'.
    Top of page heading
    PERFORM set_top_page_heading USING t_heading t_event.
    Events
    PERFORM set_events USING t_event.
    GUI Status
    w_status = ''.
    User commands
    w_comm   = 'USER_COMMAND'.
    Order
    Example
    PERFORM set_order USING '<field>' 'IT_DATA' 'X' space space t_sort.
    PERFORM set_order USING 'MBLNR' 'IT_DATA' 'X' space 'X' t_sort.
    PERFORM set_order USING 'EBELN' 'IT_DATA' 'X' space 'X' t_sort.
    PERFORM set_order USING 'EBELP' 'IT_DATA' 'X' space space t_sort.
    Displays the ALV grid
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       i_callback_program       = V_REPID
       it_fieldcat              = t_fieldcat
       is_layout                = x_layout
       it_sort                  = t_sort
       i_callback_pf_status_set = w_status
       i_callback_user_command  = w_comm
       i_save                   = 'X'
       it_events                = t_event
       i_grid_title             = w_title
    TABLES
       t_outtab                 = t_data
    EXCEPTIONS
       program_error            = 1
       OTHERS                   = 2.
    IF sy-subrc <> 0.
       MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM.                    " build_alv.
    *&      Form  set_top_page_heading
          Creates the report headings.
    FORM set_top_page_heading USING t_heading TYPE slis_t_listheader
         t_events  TYPE slis_t_event.
    DATA: x_heading TYPE slis_listheader,
           x_event   TYPE LINE OF slis_t_event.
    Report title
    CLEAR t_heading[].
    CLEAR x_heading.
    x_heading-typ = 'H'.
    x_heading-info = 'Reporte Prueba'(001).
    APPEND x_heading TO t_heading.
    Program name
    CLEAR x_heading.
    x_heading-typ = 'S'.
    x_heading-KEY = 'Program: '.
    x_heading-info = sy-repid.
    APPEND x_heading TO t_heading.
    User who is running the report
    CLEAR x_heading.
    x_heading-typ = 'S'.
    x_heading-KEY = 'User: '.
    x_heading-info = sy-uname.
    APPEND x_heading TO t_heading.
    Date of execution
    CLEAR x_heading.
    x_heading-typ = 'S'.
    x_heading-KEY = 'Date: '.
    WRITE sy-datum TO x_heading-info.
    APPEND x_heading TO t_heading.
    Time of execution
    CLEAR x_heading.
    x_heading-typ = 'S'.
    x_heading-KEY = 'Time: '.
    WRITE sy-uzeit TO x_heading-info.
    APPEND x_heading TO t_heading.
    Top of page event
    x_event-name = slis_ev_top_of_page.
    x_event-FORM = 'TOP_OF_PAGE'.
    APPEND x_event TO t_events.
    ENDFORM.
    *&      Form  set_events
          Sets the events for ALV.
          The TOP_OF_PAGE event is alredy being registered in
          the set_top_page_heading subroutine.
    FORM set_events USING t_events TYPE slis_t_event.
    DATA: x_event   TYPE LINE OF slis_t_event.
    Example
    clear x_event.
    x_event-name = .
    x_event-form = .
    append x_event to t_event.
    ENDFORM.
    *&      Form  set_order
          Adds an entry to the order table.
    FORM set_order USING p_fieldname p_tabname p_up p_down p_subtot
         t_sort TYPE slis_t_sortinfo_alv.
    DATA: x_sort TYPE slis_sortinfo_alv.
    CLEAR x_sort.
    x_sort-fieldname = p_fieldname.
    x_sort-tabname   = p_tabname.
    x_sort-UP = p_up.
    x_sort-down = p_down.
    x_sort-subtot = p_subtot.
    APPEND x_sort TO t_sort.
    ENDFORM.                    "set_order
    *&      Form  set_fieldcat2
          Adds an entry to the field catalog.
    FORM set_fieldcat2 USING p_colpos p_fieldname p_ref_fieldname
    p_ref_tabname
         p_outputlen p_noout
         p_seltext_m p_seltext_l p_seltext_s p_reptext_ddic p_ddictxt
         p_hotspot p_showasicon p_checkbox p_edit
         p_dosum
         t_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: wa_fieldcat TYPE slis_fieldcat_alv.
    CLEAR wa_fieldcat.
    General settings
    wa_fieldcat-fieldname = p_fieldname.
    wa_fieldcat-col_pos = p_colpos.
    wa_fieldcat-no_out = p_noout.
    wa_fieldcat-HOTSPOT = p_hotspot.
    wa_fieldcat-CHECKBOX = p_checkbox.
    wa_fieldcat-ICON = p_showasicon.
    wa_fieldcat-do_sum = p_dosum.
    Set reference fieldname, tablenam and rollname.
    If p_ref_tabname is not given, the ref_fieldname given is a data
    *element.
    If p_ref_tabname is given, the ref_fieldname given is a field of a
    *table. In case ref_fieldname is not given, it is copied from the
    *fieldname.
    IF p_ref_tabname IS INITIAL.
       wa_fieldcat-rollname =   p_ref_fieldname.
    ELSE.
       wa_fieldcat-ref_tabname = p_ref_tabname.
       IF p_ref_fieldname EQ space.
         wa_fieldcat-ref_fieldname =   wa_fieldcat-fieldname.
       ELSE.
         wa_fieldcat-ref_fieldname =   p_ref_fieldname.
       ENDIF.
    ENDIF.
    Set output length.
    IF NOT p_outputlen IS INITIAL.
       wa_fieldcat-outputlen = p_outputlen.
    ENDIF.
    Set text headers.
    IF NOT p_seltext_m IS INITIAL.
       wa_fieldcat-seltext_m = p_seltext_m.
    ENDIF.
    IF NOT p_seltext_l IS INITIAL.
       wa_fieldcat-seltext_l = p_seltext_l.
    ENDIF.
    IF NOT p_seltext_s IS INITIAL.
       wa_fieldcat-seltext_s = p_seltext_s.
    ENDIF.
    IF NOT p_reptext_ddic IS INITIAL.
       wa_fieldcat-reptext_ddic = p_reptext_ddic.
    ENDIF.
    IF NOT p_ddictxt IS INITIAL.
       wa_fieldcat-ddictxt = p_ddictxt.
    ENDIF.
    Set as editable or not.
    IF NOT p_edit IS  INITIAL.
       wa_fieldcat-INPUT     = 'X'.
       wa_fieldcat-EDIT     = 'X'.
    ENDIF.
    APPEND wa_fieldcat TO t_fieldcat.
    ENDFORM.                   "set_fieldcat2
    *&      Form  top_of_page
          Called on top_of_page ALV event.
          Prints the heading.
    FORM top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
         i_logo             = 'TRVPICTURE04'
       it_list_commentary = t_heading.
    ENDFORM.                    " alv_top_of_page
    *&      Form  user_command
          Called on user_command ALV event.
          Executes custom commands.
    FORM user_command USING r_ucomm     LIKE sy-ucomm
         rs_selfield TYPE slis_selfield.
    case sy-ucomm.
    WHEN '&DATA_SAVE'.
    LOOP AT IT_DATA INTO WA WHERE ENDKZ = 'X'.
       IF WA-ENDKZ = 'X'.
    *******MODIFIED*********************************
    U DELETE THIS CODE N USER UR INSERT CODE TO CHECK
    SY-MSGV1 = WA-MBLNR.                              " U CAN DELETE
    SY-MSGV2 = WA-MATNR.                              " U CAN DELETE
    MESSAGE ID 'BC_BOR' TYPE 'I' NUMBER '888'          " U CAN DELETE
            WITH SY-MSGV1 SY-MSGV2. " U CAN DELETE
    *******MODIFIED*********************************
       INSERT ZTABLE.
       ENDIF.
    endloop.
    ENDCASE.
    ENDFORM.                    "user_command
    this is my code, database will stored in fields only.data is empty,
    how to slove that one,send any sugestion.

    Hi Lakshmi,
           Can u explain briefly what is ur requirement. U mean to say that after clicking the checkbox in data base table or Screen?
    Regards,
      Jayaram...

Maybe you are looking for

  • Is there a way to automate an indesign catalogue so that it populates fields from excel?

    A client has seen a competitor present a catalogue and shows how from an excel or database file this indesign template can be populated with text and with images from a filename listed in the the excel.  Does anyone know how to do this or can you sug

  • Unbounded element in Business Rules

    Hi everyone, I am trying to achieve in returning the same element (unbounded) when the rules condition are satisfied. I want to return the below response message: <newJoinerRulesResponse> <Rule> <Code>Example</Code> <Description>test</Description> </

  • Mac book pro hard disc replacement and back up from time machine

    Recently i replaced my  mac book pro's hard disc and now i am facing various problems such as: Itunes  does not recognize any of my devices (iphone  & ipad) and iphoto can not import my photos. Before replacement i had made back up with time machine.

  • A hardware switch that will jump between 2 wired networks

    Does anyone know if this exists. I am looking for an equivalent of a KVM switch for networks. I have 2 networks coming into a room I have a switch that needs to move back and forth from one network to the other. Currently when I need to switch I unpl

  • Can't find iMovie special effects

    I have found the advance tools, but it looks like it only affects color. The older iMovie had special effects like rain, lightning bolt, ... Where are they in '08?