Call a pkg of another data base via dblink

call a package from another database by dblink oracle
call a package from another database by dblink oracle , i got one pkg in DB A and i got dblink in DB 2 to DB A
now i wnt to call the pkg og DB A from DB 2
Thanks
Raj

Hi Raj ,
1. Check you DB link is function properly.
select * from dual@dblink_name
2. Create a synoynm on DB2 like below;
Create synoynm synonym_pkg for pkg@db_link
3. Now you can access the pkg via synonynm
Cheers,
Kanchana

Similar Messages

  • How to switch from  one Data base to another data base

    Hi,
    How to switch from one Data base to another data base if first data base server like in restoring,blocking,network disconnected state.
    Please help out for the same.
    Regards,
    Anilkumar

    Sounds like a problem for forums/support from the DB provider, as this problem is normally solved through some form of HA provided by the DB (or some cluster software, but still not Java) with, normally, a shared (virtual) IP address.

  • Calling image from backend(SAP data base)

    How to call image from the data base table.
    I want image should be displayed on the screen,it has to take that image from SAP data base.
    Please help me.
    Regards
    Sushma

    You could write a java class to read the binary stream of data from the SAP backend and display the same in a WD application.
    Also refer to the following blog, might help you.
    The specified item was not found.
    Thanks,
    GLM

  • Is possible to restore with another data base ?

    Hi,
    I want to restore my DEV database with PRD database in TESTserver through SQL enterprise manager. I have backup of PRD, which is taken from DB13.
    Is that possible to restore like this?
    Gayathry.

    Hi,
    1. Does the database ALREADY exist on the target server?
    2. If so, does the directory structure where the MDF/LDF match where the MDF/LDF reside on the live server. In this I mean if the files on the live server were located in the C:\MyDir\Data folder, do they also reside like that on the target serverr?
    IF NOT ... you need to use the WITH MOVE option to place the MDF and LDF in the folder(s) that are being used on your target  server. If you are using the Restore wizard, you need to change the file path on the Options tab of the wizard. Change the path in the "Move to physical file name" option to the desired location.
    if this not work
    try to restore database with same SID on target server i.e PRD than after you can change the dtabse from PRD to PSD using following sap note
    151603
    regards,
    Kaushal

  • HANA as a Oracle Data Source via dblink

    Has anyone configured Oracle dblink to connect to HANA?
    I am trying to help out the Oracle DBA. It looks like Oracle documentation on dblink shows it uses ODBC.
    Any tips would be great. Thanks.

    This is what the Unix/Oracle team did to make the connection (Thanks JK and TN). Hope this helps other folks.
    Install a ODBC driver manager.  It looks like Oracle recommends unixODBC (http://www.unixodbc.org/)
    The SAP HANA client installed, which includes the ODBC driver for HANA
    The particular HANA instance setup as a data source in ODBC on the Linux box
    Install Oracle Database Gateway for ODBC (http://docs.oracle.com/cd/E16338_01/gateways.112/e12070/toc.htm)
    Configure the gateway to connect to the HANA instance (http://docs.oracle.com/cd/B28359_01/gateways.111/b31042/configodbc.htm), which includes setting up a new database link

  • Data base back-up

    Hi this is venkt.
    I have hyperion 9.3.1.useing export command i taken the database back-up.How u can load the exported file into another data base.please send the steps & procedure.

    Hi Venkt,
    If you have exported complete data ( in unformatted manner), then you can directly load the exported data file into the cube without any business rule( free form loading).
    If you export it in columnar format , you might need to have rule file.
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Call function from data base with clob input parameter.

    Hello,
    In this project I use Jdev 11g.
    I call function from database.
    create or replace function get_fa_list (
    p_fa_id_list in clob
    return sys_refcursor
    is
    vCursor sys_refcursor;
    begin
    put_msg ('begin');
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;
    put_msg ('Save');
    open vCursor for
    select rownum as id, s.*
    from (
    select f.latitude, f.longitude, count (distinct f.res_id) as res_count, count (*) as fa_count, 16711680 as color, res_concat_distinct (f.res_id) as station_list
    from mv_frequency_assignment f, table (SplitClob (p_fa_id_list, ',')) l
    where f.ext_system = 'BI' and
    f.ext_sys_id = l.column_value
    group by f.latitude, f.longitude
    ) s;
    put_msg ('Open and End');
    return vCursor;
    end get_fa_list;
    I use TopLink in ejb.
    i use follow code for call function and get result.
    public List<TmpResPoints> findAllPointsBI(String p_id){
    UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
    uow.beginEarlyTransaction();
    StoredFunctionCall call = new StoredFunctionCall();
    call.setProcedureName("get_fa_list");
    call.useUnnamedCursorOutputAsResultSet();
    ClobDomain c = new ClobDomain(p_id);
    //System.out.println(c.toString());
    call.addNamedArgumentValue("p_fa_id_list", c);
    ReadAllQuery query = new ReadAllQuery();
    query.setReferenceClass(TmpResPoints.class);
    query.setCall(call);
    List<TmpResPoints> result = (List<TmpResPoints>)uow.executeQuery(query);
    uow.commit();
    uow.release();
    return result;
    But size parameter "p_fa_id_list" is 0. (geting from temp table in Data base). this code in function >>
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;)
    How I can call this function from dataBase and get result?
    thx,
    Demka.

    What is the SQL generated?
    The argument should just be the Clob value (a String) not the domain object.
    Also try addNamedArgument, and then pass the named argument to the query.
    James : http://www.eclipselink.org

  • How can we make a call to the Data base in the SAP Scripts?

    Hi All,
            How we make a call to the data base in scripts?
    I think we can use the PERFORM statement to achieve the above functionality.
    Pls correct me if i am wrong?
    Regards
    Abhilash.

    Hello.
    If you want to access database in the script itself (not in print program) yes, you can use PERFORM statement.
    In your script, use:
    /: PERFORM F_FORM IN PROGRAM ZRFIRFS05
    /: USING &VAR1&
    /: CHANGING &VAR2&
    /: ENDPERFORM
    Then, create a program ZPROG (ZRFIRFS05 in my case) with a structure like this one:
    REPORT ZRFIRFS05 .
    FORM f_form TABLES in_par STRUCTURE itcsy out_par STRUCTURE itcsy.
      DATA: l_data1(10).
      READ TABLE in_par WITH KEY name = 'VAR1'.
      CHECK sy-subrc = 0.
      l_data1 = in_par-value.
    *  SELECT .... "YOUR SELECT TO DATABASE
      READ TABLE out_par WITH KEY name = 'VAR2'.
      CHECK sy-subrc = 0.
      out_par-value = l_data3.
      MODIFY out_par INDEX sy-tabix.
    ENDFORM.
    Regards.
    Valter Oliveira.

  • 9i can't connect to a data base, even when I use another user's tnanames.or

    I can't connect to a data base, even using tnsping with a tnanames.ora file that I copied from a user's PC that was able to connect. It's a new install of 9i on my PC. What did I miss? I'm on a Win 2000 box and Oracle is on a UNIX server.
    Here's the description from the tnsnames.ora file:
    HISTA02A =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = bkodv1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = HISTA02)
    The file is from the previous version 8.1.7, should that matter? 9.2.0.1 is the server now.

    Yes, I even pinged it to make sure. When I do a tnsping HISTA02 I get :
    C:\>tnsping HISTA02
    TNS Ping Utility for 32-bit Windows: Version 9.2.0.1.0 - Production on 28-FEB-2007 14:25:53
    Copyright (c) 1997 Oracle Corporation. All rights reserved.
    Used parameter files:
    C:\Local\network\ADMIN\sqlnet.ora
    TNS-03505: Failed to resolve name
    My SQLNT.ora looks like this:
    # SQLNET.ORA Network Configuration File: C:\orant\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    NAMES.DEFAULT_DOMAIN = cboent.cboe.com
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)

  • BPEL with TWO data base polling adapters????

    Hi,
    Can some one tell, Is it possible to have two data base polling adapters in one BPEl process??
    What I am trying to do is , simultaneoulsy polling two independent data base tables in one bpel with two receive activities, but it did not work as BPEl should have only one start activity.
    Please post your ideas , if we can achive this.
    Thanks,
    Kumar

    So, are you trying to detect the fact that two different rows in two different tables were both inserted? If so are they related some how? Are they parent child? Is one guaranteed to appear before the other?
    I'm thinking two processes with database adapters that in turn call a third process which has two receives which are connected via a correlation set.
    Another solution would be database triggers that look for the existence of both rows before inserting into a third table -- this third table would drive the database adapter.

  • How to access two oracle data base with out DB link

    Hi,
    I have two data base schema
    one is held in oracle 10g and the other in 11g ,Currently i am using DB link to access both the database. i am accessing around 70 tables using DB link.
    As per new requirement i have to remove DB link ,is there any other way i can access both database with out DB link.
    Thanks,

    malarkandy wrote:
    I have two data base schema
    one is held in oracle 10g and the other in 11g ,Currently i am using DB link to access both the database. i am accessing around 70 tables using DB link.
    As per new requirement i have to remove DB link ,is there any other way i can access both database with out DB link.Yes. But that needs another network and application interface instead of a database link.
    The target database can implement PL/SQL web services. These can be called via HTTP.
    The local database can use UTL_HTTP to make a call to the target database's web service for accessing target database data.
    Both databases can use AQ (Advance Queues). This can be integrated with an application server's JMS queues.
    This enable one database to enqueue a request to the other database, and for that database to respond by sending data.
    There are numerous such type of interfaces that can be used. Some primitive. Some advanced. Some simple. Some complex.
    The easiest and most flexible mechanism is however a database link. And it does not make sense to disallow database links for security and management reasons, but allow JMS for example. The network infrastructure is the same for both methods. The network protocol is the same. The security issues and concerns are the same - except that JMS for example is significantly more moving parts and make configuration and security a lot more complex than using a database link.

  • 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 trigger pop-up window in report and update data base from report

    Hi All,
    I have a requirement, in a report output list to trigger a pop up window with some rejection codes corresponding to each sales order when i select from the output list. Also i need to update data base by selecting one of the rejection code in the pop-up window list for that sales order. Can any one please let me know how to achive this.
    Also, i have check boxes for each record in the output list. Also, i have added one more check box as "Select All'. When select 'Sleect All' check box , all check boxes need to be checked, how to achieve this. PLease let me know.
    Thanks in advance.
    Regards,
    Rajesh

    Hi check this code of editable ALV report... I updated the data base with the changes made..in the editable ALV
    *& Report ZJAY_EDIT_ALV
    REPORT zjay_edit_alv.
    * TYPE-POOLS *
    TYPE-POOLS: slis.
    * INTERNAL TABLES/WORK AREAS/VARIABLES
    DATA: i_fieldcat TYPE slis_t_fieldcat_alv,
    i_index TYPE STANDARD TABLE OF i WITH HEADER LINE,
    w_field TYPE slis_fieldcat_alv,
    p_table LIKE dd02l-tabname,
    dy_table TYPE REF TO data,
    dy_tab TYPE REF TO data,
    dy_line TYPE REF TO data.
    * FIELD-SYMBOLS *
    FIELD-SYMBOLS: <dyn_table> TYPE STANDARD TABLE,
    <dyn_wa> TYPE ANY,
    <dyn_field> TYPE ANY,
    <dyn_tab_temp> TYPE STANDARD TABLE.
    * SELECTION SCREEN *
    PARAMETERS: tabname(30) TYPE c DEFAULT 'MARA',
    lines(5) TYPE n DEFAULT 7.
    * START-OF-SELECTION *
    START-OF-SELECTION.
    * Storing table name
    p_table = tabname.
    * Create internal table dynamically with the stucture of table name
    * entered in the selection screen
    CREATE DATA dy_table TYPE STANDARD TABLE OF (p_table).
    ASSIGN dy_table->* TO <dyn_table>.
    IF sy-subrc <> 0.
    MESSAGE i000(z_zzz_ca_messages) WITH ' No table found'.
    LEAVE TO LIST-PROCESSING.
    ENDIF.
    * Create workarea for the table
    CREATE DATA dy_line LIKE LINE OF <dyn_table>.
    ASSIGN dy_line->* TO <dyn_wa>.
    * Create another temp. table
    CREATE DATA dy_tab TYPE STANDARD TABLE OF (p_table).
    ASSIGN dy_tab->* TO <dyn_tab_temp>.
    SORT i_fieldcat BY col_pos.
    * Select data from table
    SELECT * FROM (p_table)
    INTO TABLE <dyn_table>
    UP TO lines ROWS.
    REFRESH <dyn_tab_temp>.
    * Display report
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    i_structure_name = p_table
    i_callback_user_command = 'USER_COMMAND'
    i_callback_pf_status_set = 'SET_PF_STATUS'
    TABLES
    t_outtab = <dyn_table>
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    ENDIF.
    *& Form SET_PF_STATUS
    * Setting custom PF-Status
    * -->RT_EXTAB Excluding table
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
    SET PF-STATUS 'ZSTANDARD'. "copy it from SALV func group standard
    ENDFORM. "SET_PF_STATUS
    *& Form user_command
    * Handling custom function codes
    * -->R_UCOMM Function code value
    * -->RS_SELFIELD Info. of cursor position in ALV
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    * Local data declaration
    DATA: li_tab TYPE REF TO data,
    l_line TYPE REF TO data.
    * Local field-symbols
    FIELD-SYMBOLS:<l_tab> TYPE table,
    <l_wa> TYPE ANY.
    * Create table
    CREATE DATA li_tab TYPE STANDARD TABLE OF (p_table).
    ASSIGN li_tab->* TO <l_tab>.
    * Create workarea
    CREATE DATA l_line LIKE LINE OF <l_tab>.
    ASSIGN l_line->* TO <l_wa>.
    CASE r_ucomm.
    * When a record is selected
    WHEN '&IC1'.
    * Read the selected record
    READ TABLE <dyn_table> ASSIGNING <dyn_wa> INDEX
    rs_selfield-tabindex.
    IF sy-subrc = 0.
    * Store the record in an internal table
    APPEND <dyn_wa> TO <l_tab>.
    * Fetch the field catalog info
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    i_program_name = sy-repid
    i_structure_name = p_table
    CHANGING
    ct_fieldcat = i_fieldcat
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2
    OTHERS = 3.
    IF sy-subrc = 0.
    * Make all the fields input enabled except key fields
    w_field-input = 'X'.
    MODIFY i_fieldcat FROM w_field TRANSPORTING input
    WHERE key IS INITIAL.
    ENDIF.
    * Display the record for editing purpose
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    i_structure_name = p_table
    it_fieldcat = i_fieldcat
    i_screen_start_column = 10
    i_screen_start_line = 15
    i_screen_end_column = 200
    i_screen_end_line = 20
    TABLES
    t_outtab = <l_tab>
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    * Read the modified data
    READ TABLE <l_tab> INDEX 1 INTO <l_wa>.
    * If the record is changed then track its index no.
    * and populate it in an internal table for future
    * action
    IF sy-subrc = 0 AND <dyn_wa> <> <l_wa>.
    <dyn_wa> = <l_wa>.
    i_index = rs_selfield-tabindex.
    APPEND i_index.
    ENDIF.
    ENDIF.
    ENDIF.
    * When save button is pressed
    WHEN 'SAVE'.
    * Sort the index table
    SORT i_index.
    * Delete all duplicate records
    DELETE ADJACENT DUPLICATES FROM i_index.
    LOOP AT i_index.
    * Find out the changes in the internal table
    * and populate these changes in another internal table
    READ TABLE <dyn_table> ASSIGNING <dyn_wa> INDEX i_index.
    IF sy-subrc = 0.
    APPEND <dyn_wa> TO <dyn_tab_temp>.
    ENDIF.
    ENDLOOP.
    * Lock the table
    CALL FUNCTION 'ENQUEUE_E_TABLE'
    EXPORTING
    mode_rstable = 'E'
    tabname = p_table
    EXCEPTIONS
    foreign_lock = 1
    system_failure = 2
    OTHERS = 3.
    IF sy-subrc = 0.
    * Modify the database table with these changes
    MODIFY (p_table) FROM TABLE <dyn_tab_temp>.
    REFRESH <dyn_tab_temp>.
    * Unlock the table
    CALL FUNCTION 'DEQUEUE_E_TABLE'
    EXPORTING
    mode_rstable = 'E'
    tabname = p_table.
    ENDIF.
    ENDCASE.
    rs_selfield-refresh = 'X'.
    ENDFORM. "user_command

  • How to check the validation at data base level as well as current user ente

    Dear all
    i have creation page in that item code will not enter the duplicate values
    in that creation page contains advanced table
    user will click on create 15 blank records using add another row
    suppose in first row user will enter LAPTOP assume this item code
    in this case i need to raise exception through databse level
    in second row also user enter LAPTOP1 in this case exception will not raise becaause data is not there at databse
    in third row user will enter LAPTOP1 in this case item is not there in data base but it is there in second row in this case
    i need to raise exception
    how to achieve this
    Thanks in Advance
    Sreekanth

    You can validate this in form submission.
    1. Call a method in AMImpl.java
    2. loop the ViewObjects and check the values
    3. If you find a match, throw the error
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                   

  • Inserting in the UUT_Results table a value that we read from our data base from a local variable

    We would like to include in the UUT_Results table a value that we read from our data base into a local variable during the execution of our sequence file. We found that by modifying the configure database options we were able to add a column for this variable, but the local variable was not available to be placed into an expression for that column from the local variables or parameters. Is it possible to do this, and if so, how? Station Globals were available to be included in the expression, however the sequence file may be executed on more than one system which makes the Global unavailable on systems other than the one where the sequence file originated.

    You can use the TestStand API to programmatically create global variables at runtime, thus ensuring their existence. For example, you could call Engine.Globals.SetValString("GlobalStringVariableName", PropOption_InsertIfMissing, "variable value")
    Of course, if you need to test multiple UUTs in parallel, a single global is not sufficient. In that case you might consider adding the field you need to the UUT datatype in the process model. You could then access the field in your sequence via RunState.Root.Locals.UUT.YourNewField = YourNewValue.
    If you also want your sequence to run without using a process model, you must check for the existence of the UUT before accessing it. You could use the expression function: PropertyExists("RunState.Root.Locals.UUT.YourNewFi
    eld")

Maybe you are looking for

  • Tile horizontal and vertical

    Hi all, I m using internal frame. i m showing a menu which show cascde, tile horizontal and vertical. when i click on tile horizontal it should display all open internal frame in tile horizontal same as for cascade and tile vertical. how do i proceed

  • HT1222 Can I download iOS 5 throughout iPad without connect to pc

    Can I know how I going to do my ios5 upgrading proses without connect to I tunes

  • "Entry Point not found" error message and sqlite3.dll

    Hello! I hope someone can help me. when I try to burn a playlist or CD from iTunes (using windows vista) i receive this error message about half way through the disc burn "The attempt to burn a disc failed. An unknown error occurred (4450)" and burn

  • I am unable to import my favorites folder from an old harddrive onto the new harddrive

    I recently changed hard drives moving to a larger hard drive. Before doing so, I exported my favorites from Firefox and they were saved on a folder called FAVORITES on a portable hard drive. Now when I try to import these favorites I am unable to imp

  • Connecting to HR schema

    Hi there, I'm an absolute beginner with Oracle SQL Developer so bare with me: I have a series of sql tutorials which I am going through which are based on the HR schema. My question is how do I connect to the HR schema? I have tried opening a new con