Regarding obselete statements in ECC 6.0 ...plz help uregent

Hi guys...
I am importing a program from <b>4.7 to ECC 6.0.</b>
When i am checking <b>SLIN errors</b> i am getting followin error..
<b>The current ABAP command is obsolete
Field groups cannot be created in the OO context.
Internal Message Code: FIELD-GROUPS 000</b>
The 4.7 program uses the follwing code where i am getting the error
<b>FIELD-GROUPS: HEADER, ITEMS.</b>So plz find a solution for this...
thank u.
madhavi

Hi Madhavi,
There is no other solution than rewriting the program, e.q. by creating internal tables for the fields now defined with FIELD-GROUPS in  HEADER and ITEMS and looping over these tables.
Regards,
John.

Similar Messages

  • Regarding types statement in ECC 6.0...plz reply..urgent

    Hi,
    I am copying a program which is in<b> 4.7 to ECC 6.0,</b>i am facing error regarding <b>structures with types<b>...
    The following code in<b> 4.7</b>
    <b>DATA:BEGIN OF W_BMM00.
            INCLUDE STRUCTURE BMM00.
    DATA:END OF W_BMM00.
    DATA:BEGIN OF W_BMMH1.
            INCLUDE STRUCTURE BMMH1.
    DATA:END OF W_BMMH1.
    DATA:BEGIN OF W_BMMH7.
            INCLUDE STRUCTURE BMMH7.
    DATA:END OF W_BMMH7.
    DATA : BEGIN OF TAB_TLINE OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA : END OF TAB_TLINE.</b>
    i have written the same in <b>ECC6.0</b> as below
    <b>TYPES:BEGIN OF tw_bmm00.
            INCLUDE STRUCTURE bmm00.
    TYPES:END OF tw_bmm00 ,
          tt_bmm00 TYPE STANDARD TABLE OF tw_bmm00.
    TYPES:BEGIN OF tw_bmmh1.
            INCLUDE STRUCTURE bmmh1.
    TYPES:END OF tw_bmmh1 ,
              tt_bmmh1 TYPE STANDARD TABLE OF tw_bmmh1.
    TYPES:BEGIN OF tw_bmmh7.
            INCLUDE STRUCTURE bmmh7.
    TYPES:END OF tw_bmmh7 ,
          tt_bmmh7  TYPE STANDARD TABLE OF tw_bmmh7.
    TYPES:BEGIN OF tw_TAB_TLINE.
            INCLUDE STRUCTURE TLINE.
    TYPES:END OF tw_TAB_TLINE,
          tt_tab_tline TYPE STANDARD TABLE OF tw_tab_tline.
    lw_bmm00 TYPE tw_bmm00,
          lt_bmm00 TYPE tt_bmm00,
          lw_bmmh1 TYPE tw_bmmh1,
          lt_bmmh1 TYPE tt_bmmh1,
          lw_bmmh7 TYPE tw_bmmh7,
          lt_bmmh7 TYPE tt_bmmh7,
          lw_tab_thead TYPE tw_tab_thead,
          lt_tab_thead TYPE tt_tab_thead,</b>....
    when i check SLIN errors i am getting the following errors<b>...plz resolve</b>..
    <b>The current ABAP command is obsolete
    <b>Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary
    types (not "LIKE" or "STRUCTURE").</b></b>
    <b></b>

    include strture not allowed.
    rules.
    ABAP Development under Unicode
    Prior to Unicode the length of a character was exactly one byte, allowing implicit typecasts or memory-layout oriented programming. With Unicode this situation has changed: One character is no longer one byte, so that additional specifications have to be added to define the unit of measure for implicit or explicit references to (the length of) characters.
    Character-like data in ABAP are always represented with the UTF-16 - standard (also used in Java or other development tools like Microsoft's Visual Basic); but this format is not related to the encoding of the underlying database.
    A Unicode-enabled ABAP program (UP) is a program in which all Unicode checks are effective. Such a program returns the same results in a non-Unicode system (NUS) as in a Unicode system (US). In order to perform the relevant syntax checks, you must activate the Unicode flag in the screens of the program and class attributes.
    In a US, you can only execute programs for which the Unicode flag is set. In future, the Unicode flag must be set for all SAP programs to enable them to run on a US. If the Unicode flag is set for a program, the syntax is checked and the program executed according to the rules described in this document, regardless of whether the system is a US or a NUS. From now on, the Unicode flag must be set for all new programs and classes that are created.
    If the Unicode flag is not set, a program can only be executed in an NUS. The syntactical and semantic changes described below do not apply to such programs. However, you can use all language extensions that have been introduced in the process of the conversion to Unicode.
    As a result of the modifications and restrictions associated with the Unicode flag, programs are executed in both Unicode and non-Unicode systems with the same semantics to a large degree. In rare cases, however, differences may occur. Programs that are designed to run on both systems therefore need to be tested on both platforms.
    Other Changes
    1. Bit Statements
    2. Adding Field Sequences
    3. Loops with VARY and VARYING
    4. Creating Subroutines
    5. Saving Programs
    6. Assigning Types for GET/SET PARAMETER
    7. Unreachable Statements
    8. Function Modules with Incorrect Parameter Names
    1. Bit Statements
    Previously, the system checked for the bit statements SET BIT i OF f [TO g] and GET BIT i OF f [INTO g]whether the field f is character-type; X fields, X strings, and flat structures are usually regarded as character-type. For Unicode programs this is no longer useful, because the types X and XSTRING no longer count as character-type and the bit by bit access to character-type fields or structures is no longer platform-independent. Therefore, with these operations in Unicode programs, the field f must be type X or XSTRING.
    For the bit mask operations f O x, f Z x, and f M x you could previously use all number-type and hence all character-type types for the left operand f. In Unicode programs, the f operand must now be type X or XSTRING.
    2. Adding Field Sequences
    When adding field sequences, restrictions apply to the following statements in Unicode:
    ADD n1 THEN n2 UNTIL nz [ ACCORDING TO sel ] GIVING m ...
    ADD n1 THEN n2 UNTIL nz TO m [ RANGE str ].
    1. The operands n1, n2, and nz must be type-compatible with one another.
    2. The distance between nz and n1 must be an integral multiple of the distance between n2 and n1.
    3. A syntax or runtime error occurs if the fields n1, n2, and nz are not in a structure. This structure must be recognizable statically or its valid area must be marked explicitly using the RANGE addition.
    4. At runtime, the system ensures that the RANGE area is not left.
    ADD n1 FROM i1 GIVING m [ RANGE str ].
    1. Field n1 must be within the structure. The structure must be explicitly defined using the RANGE addition if it is not recognizable statically.
    2. For this variant, the system also checks at runtime whether n1 and the addressed values are within the structure.
    3. Loops
    Loops with the VARY or VARYING addition are also problematic in Unicode, since a type-a access to memory contents cannot be ensured and memory can be overwritten inadvertently.
    DO ... VARYING f FROM f1 NEXT f2.
    For this statement, the fields f, f1, and f2 must be type-compatible with each other. To prevent memory contents being overwritten, a RANGE for valid accesses is introduced implicitly or explicitly for the following statements:
    DO ... TIMES VARYING f FROM f1 NEXT f2 [ RANGE f3 ].
    WHILE ... VARY f FROM f1 NEXT f2 [ RANGE f3 ].
    A syntax or runtime error is caused if f1 or f2 are not included in f3. If the RANGE addition is missing, it is defined implicitly from FROM f1 NEXT f2 as follows:
    1. If both f1 and f2 are statically recognizable components of the same structure, the valid RANGE area is defined from the smallest structure that comprises f1 and f2.
    2. A syntax error is triggered if it is recognizable statically that f1 and f2 are not part of the same structure.
    3. A valid area must be defined explicitly using the RANGE addition if the connection between f1 and f2 is not recognizable statically.
    If you specify a deep structure as the RANGE addition, the system checks for every loop pass that there are no field references, object references, tables, or strings in the area read.
    4. Creating Subroutines
    When automatically generating subroutines using the statement GENERATE SUBROUTINE POOL itab NAME name, the generated program inherits the content of the Unicode flag of the generating program.
    5. Saving Programs
    When automatically generating programs using the statement INSERT REPORT prog FROM itab, default values are set for the TRDIR entry as before. Amongst other things, this statement has the new addition UNICODE ENABLING uc, with which the Unicode flag of the inserted report receives the value of uc. If this addition is missing, the following applies:
    1. A Unicode program creates a Unicode program.
    2. A non-Unicode program in turn creates a non-Unicode program.
    3. A non-Unicode program becomes a Unicode program if it is overwritten by a Unicode program.
    4. A Unicode program remains a Unicode program if it is overwritten by a non-Unicode program.
    6. Assigning Types for GET/SET PARAMETER
    For the statements GET PARAMETER ID pid FIELD f and GET PARAMETER ID pid FIELD f, f must be character-type. You can use the EXPORT and IMPORT statements for storing non-character-type fields and structures.
    7. Unreachable Statements
    In Unicode programs, unreachable statements cause a syntax error. In non-Unicode programs, there was previously only a syntax warning.
    8. Function Modules with Incorrect Parameter Names
    In Unicode programs, calling a function module, whose parameter names are specified statically as a literal or constant, causes an exception that can be handled if an incorrect parameter name was specified. This only applies to function modules that are not called via Remote Function Call. In non-Unicode programs, an incorrect name was previously ignored.
    http://service.sap.com/instguides
    --> SAP Business Suite Applications
    --> SAP ERP
    --> mySAP ERP 2005
    --> Upgrade
    --> Upgrade Documentation - mySAP ERP 2005 SR2
    There choose your database and operating system.
    If you're looking for functional details check
    http://service.sap.com/releasenotes

  • Error in ECC 6.0 Plz help

    Hello experts,
    Im trying to install ECC 6.0 SAP NW 2004s SR1, O/s Win Server 2003 R2 EE, 2GB RAM, 320 GB HDD.
    But in the IMPORT ABAP phase the below error occured and the installation stopped
    ERROR 2009-12-07 00:28:13
    FCO-00011  The step runMigrationMonitor with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    please help me complete the installation.
    thanx

    Hi there,
    Thanx for ur reply. Well i dont know which logs u wanted to see i am not sure if these are the logs. If not these logs then plz tell me what kinda logs you wud llike to see as there are heaps of log files from the sapinst_instdir.
    As for the loopback adapter i had installed it, but i must say that i really forgot to set the virtual memory. I have 2 GB RAM what values shud i set in the Virtual Mem ?  is it ok to set the virtual memory at this point of time?? or do I have to begin all over again.
    IMPORT_MONITOR.JAVA.LOG                                                                               
    java version "1.4.2_16"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_16-b05)                       
    Java HotSpot(TM) Client VM (build 1.4.2_16-b05, mixed mode)
    Import Monitor jobs: running 1, waiting 4, completed 33, failed 0, total 38.
    Import Monitor jobs: running 2, waiting 3, completed 33, failed 0, total 38.
    Import Monitor jobs: running 3, waiting 2, completed 33, failed 0, total 38.
    Loading of 'SAPAPPL0_2' import package: ERROR
    Import Monitor jobs: running 2, waiting 2, completed 33, failed 1, total 38.
    Import Monitor jobs: running 3, waiting 1, completed 33, failed 1, total 38.
    Loading of 'SAPAPPL2_2' import package: OK
    Import Monitor jobs: running 2, waiting 1, completed 34, failed 1, total 38.
    Loading of 'SAPAPPL0_4' import package: ERROR
    Import Monitor jobs: running 1, waiting 1, completed 34, failed 2, total 38.
    Loading of 'SAPAPPL2_3' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 34, failed 3, total 38.
    Thnx again

  • Error 503 cannot download ATOT podcast plz help!!

    I can't download a state of trance episode 100.Plz help!
    I tried both from itunes and dorectly from my ipod.Am able to download other podcasts.

    After several more attempts, episode 100 is now downloading to my iTunes but fairly slowly. It's a special episode (and it's two hours long) so perhaps over-demand is causing the download to fail.
    As I'm typing, the remaining time to download is actually increasing and that makes me more certain that it's simply more people trying to download it than the host server can supply.
    Keep trying.
    Phil

  • PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC version

    Hi EXPERTS,
             I am working in ECC 6.0 version.
             PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC           version
             C_DEL     TYPE X VALUE '09' having solution --C_DEL TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB,
             If  C_DEL     TYPE X VALUE '20'   what was the solution in ECC version.
             Please let me know. I am awaiting for ur answers
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

    Hi
    welcome to SDN forum
    move that X field to a char field and use in concatenation
    CONCATENATE works only with CHAR fields
    Regards
    Anji

  • Obsolete statements in ECC with respect to 4.5b

    Hi Gurus,
    This is really very urgent.i need an information on Obsolete Statements in ECC 6.0 with respect to 4.5B R/3 Version.please help me..
    Full marks would be rewarded 100%
    regards
    Sahil

    Hi
    check the table PRGN_CORR2 which gives the list of transactions that were changed from different versions from 3.1G to 4.70 and also above versions
    Pls check this
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    Reward if useful
    Regards
    Raghav T

  • Qurey running for last 18 Hours plz help in this regard

    my server has 4 Gb Ram plz tell me something. what action should i take. This Query is running 18 hours plz by seeing this ADDM plz sugest what to do i'm highly thanksful to yoy
    ADDM Report for Task 'ADDM:1196827189_1_679'
    Analysis Period
    AWR snapshot range from 678 to 679.
    Time period starts at 25-NOV-08 09.01.03 AM
    Time period ends at 25-NOV-08 09.53.05 AM
    Analysis Target
    Database 'ORCL' with DB ID 1196827189.
    Database version 11.1.0.6.0.
    ADDM performed an analysis of instance orcl, numbered 1 and hosted at SRV01.
    Activity During the Analysis Period
    Total database time was 7940 seconds.
    The average number of active sessions was 2.54.
    Summary of Findings
    Description Active Sessions Recommendations
    Percent of Activity
    1 Virtual Memory Paging 2.54 | 100 1
    2 Top SQL by DB Time 2.47 | 97.18 1
    3 CPU Usage 2.47 | 97.09 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Findings and Recommendations
    Finding 1: Virtual Memory Paging
    Impact is 2.54 active sessions, 100% of total activity.
    Significant virtual memory paging was detected on the host operating system.
    Recommendation 1: Host Configuration
    Estimated benefit is 2.54 active sessions, 100% of total activity.
    Action
    Host operating system was experiencing significant paging but no
    particular root cause could be detected. Investigate processes that do
    not belong to this instance running on the host that are consuming
    significant amount of virtual memory. Also consider adding more physical
    memory to the host.
    Finding 2: Top SQL by DB Time
    Impact is 2.47 active sessions, 97.18% of total activity.
    SQL statements consuming significant database time were found.
    Recommendation 1: SQL Tuning
    Estimated benefit is 2.54 active sessions, 100% of total activity.
    Action
    Run SQL Tuning Advisor on the SQL statement with SQL_ID "9d65avvugb899".
    Related Object
    SQL statement with SQL_ID 9d65avvugb899 and PLAN_HASH 1187702671.
    UPDATE GN_FLAT_IN_TABLE SET DG0_ID=(SELECT JAG_N24_DG0.DG0_ID FROM
    JAG_N24_DG0 WHERE NVL ( JAG_N24_DG0.ITEM_DISC_AMT , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.ITEM_DISC_AMT , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_AMT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_AMT ,
    -1033 ) AND NVL ( JAG_N24_DG0.LINE_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_CODE , -1033 ) AND NVL ( JAG_N24_DG0.LINE_NAME
    , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_INTERNAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_INTERNAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_REC_SEQ , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_REC_SEQ , -1033 ) AND NVL (
    JAG_N24_DG0.PRIMARY_CARD , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.PRIMARY_CARD , -1033 ) AND NVL (
    JAG_N24_DG0.TXN_CAT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_CAT ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DATE , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DATE , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_TIME , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_TIME , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_ID , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_ID ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DURATION , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DURATION , -1033 ) AND NVL (
    JAG_N24_DG0.TILL_LOCAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TILL_LOCAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.STORE_CODE , -1033 ) = NVL ( GN_FLAT_IN_TABLE.STORE_CODE
    , -1033 ) AND NVL ( JAG_N24_DG0.STORE_NAME , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.STORE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.OPERATOR_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.OPERATOR_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_QTY , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_QTY ,
    -1033 ) AND NVL ( JAG_N24_DG0.CUSTOMER_STAFF_REF , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.CUSTOMER_STAFF_REF , -1033 ) AND
    NVL(GN_FLAT_IN_TABLE.OPERATIONAL_DATE, '14-AUG-1947'
    )=NVL(JAG_N24_DG0.OPERATIONAL_DATE, '14-AUG-1947' ))
    Action
    Investigate the SQL statement with SQL_ID "9d65avvugb899" for possible
    performance improvements.
    Related Object
    SQL statement with SQL_ID 9d65avvugb899 and PLAN_HASH 1187702671.
    UPDATE GN_FLAT_IN_TABLE SET DG0_ID=(SELECT JAG_N24_DG0.DG0_ID FROM
    JAG_N24_DG0 WHERE NVL ( JAG_N24_DG0.ITEM_DISC_AMT , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.ITEM_DISC_AMT , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_AMT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_AMT ,
    -1033 ) AND NVL ( JAG_N24_DG0.LINE_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_CODE , -1033 ) AND NVL ( JAG_N24_DG0.LINE_NAME
    , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_INTERNAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_INTERNAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_REC_SEQ , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_REC_SEQ , -1033 ) AND NVL (
    JAG_N24_DG0.PRIMARY_CARD , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.PRIMARY_CARD , -1033 ) AND NVL (
    JAG_N24_DG0.TXN_CAT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_CAT ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DATE , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DATE , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_TIME , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_TIME , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_ID , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_ID ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DURATION , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DURATION , -1033 ) AND NVL (
    JAG_N24_DG0.TILL_LOCAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TILL_LOCAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.STORE_CODE , -1033 ) = NVL ( GN_FLAT_IN_TABLE.STORE_CODE
    , -1033 ) AND NVL ( JAG_N24_DG0.STORE_NAME , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.STORE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.OPERATOR_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.OPERATOR_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_QTY , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_QTY ,
    -1033 ) AND NVL ( JAG_N24_DG0.CUSTOMER_STAFF_REF , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.CUSTOMER_STAFF_REF , -1033 ) AND
    NVL(GN_FLAT_IN_TABLE.OPERATIONAL_DATE, '14-AUG-1947'
    )=NVL(JAG_N24_DG0.OPERATIONAL_DATE, '14-AUG-1947' ))
    Finding 3: CPU Usage
    Impact is 2.47 active sessions, 97.09% of total activity.
    Time spent on the CPU by the instance was responsible for a substantial part
    of database time.
    Recommendation 1: SQL Tuning
    Estimated benefit is 2.54 active sessions, 100% of total activity.
    Action
    Run SQL Tuning Advisor on the SQL statement with SQL_ID "9d65avvugb899".
    Related Object
    SQL statement with SQL_ID 9d65avvugb899 and PLAN_HASH 1187702671.
    UPDATE GN_FLAT_IN_TABLE SET DG0_ID=(SELECT JAG_N24_DG0.DG0_ID FROM
    JAG_N24_DG0 WHERE NVL ( JAG_N24_DG0.ITEM_DISC_AMT , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.ITEM_DISC_AMT , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_AMT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_AMT ,
    -1033 ) AND NVL ( JAG_N24_DG0.LINE_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_CODE , -1033 ) AND NVL ( JAG_N24_DG0.LINE_NAME
    , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_INTERNAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_INTERNAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_REC_SEQ , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_REC_SEQ , -1033 ) AND NVL (
    JAG_N24_DG0.PRIMARY_CARD , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.PRIMARY_CARD , -1033 ) AND NVL (
    JAG_N24_DG0.TXN_CAT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_CAT ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DATE , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DATE , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_TIME , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_TIME , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_ID , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_ID ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DURATION , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DURATION , -1033 ) AND NVL (
    JAG_N24_DG0.TILL_LOCAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TILL_LOCAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.STORE_CODE , -1033 ) = NVL ( GN_FLAT_IN_TABLE.STORE_CODE
    , -1033 ) AND NVL ( JAG_N24_DG0.STORE_NAME , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.STORE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.OPERATOR_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.OPERATOR_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_QTY , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_QTY ,
    -1033 ) AND NVL ( JAG_N24_DG0.CUSTOMER_STAFF_REF , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.CUSTOMER_STAFF_REF , -1033 ) AND
    NVL(GN_FLAT_IN_TABLE.OPERATIONAL_DATE, '14-AUG-1947'
    )=NVL(JAG_N24_DG0.OPERATIONAL_DATE, '14-AUG-1947' ))
    Action
    Investigate the SQL statement with SQL_ID "9d65avvugb899" for possible
    performance improvements.
    Related Object
    SQL statement with SQL_ID 9d65avvugb899 and PLAN_HASH 1187702671.
    UPDATE GN_FLAT_IN_TABLE SET DG0_ID=(SELECT JAG_N24_DG0.DG0_ID FROM
    JAG_N24_DG0 WHERE NVL ( JAG_N24_DG0.ITEM_DISC_AMT , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.ITEM_DISC_AMT , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_AMT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_AMT ,
    -1033 ) AND NVL ( JAG_N24_DG0.LINE_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_CODE , -1033 ) AND NVL ( JAG_N24_DG0.LINE_NAME
    , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_INTERNAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_INTERNAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_REC_SEQ , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.LINE_REC_SEQ , -1033 ) AND NVL (
    JAG_N24_DG0.PRIMARY_CARD , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.PRIMARY_CARD , -1033 ) AND NVL (
    JAG_N24_DG0.TXN_CAT , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_CAT ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DATE , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DATE , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_TIME , ' 14-AUG-1947' ) = NVL (
    GN_FLAT_IN_TABLE.TXN_TIME , ' 14-AUG-1947' ) AND NVL (
    JAG_N24_DG0.TXN_ID , -1033 ) = NVL ( GN_FLAT_IN_TABLE.TXN_ID ,
    -1033 ) AND NVL ( JAG_N24_DG0.TXN_DURATION , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TXN_DURATION , -1033 ) AND NVL (
    JAG_N24_DG0.TILL_LOCAL_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.TILL_LOCAL_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.STORE_CODE , -1033 ) = NVL ( GN_FLAT_IN_TABLE.STORE_CODE
    , -1033 ) AND NVL ( JAG_N24_DG0.STORE_NAME , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.STORE_NAME , -1033 ) AND NVL (
    JAG_N24_DG0.OPERATOR_CODE , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.OPERATOR_CODE , -1033 ) AND NVL (
    JAG_N24_DG0.LINE_QTY , -1033 ) = NVL ( GN_FLAT_IN_TABLE.LINE_QTY ,
    -1033 ) AND NVL ( JAG_N24_DG0.CUSTOMER_STAFF_REF , -1033 ) = NVL (
    GN_FLAT_IN_TABLE.CUSTOMER_STAFF_REF , -1033 ) AND
    NVL(GN_FLAT_IN_TABLE.OPERATIONAL_DATE, '14-AUG-1947'
    )=NVL(JAG_N24_DG0.OPERATIONAL_DATE, '14-AUG-1947' ))
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Additional Information
    Miscellaneous Information
    Wait class "Application" was not consuming significant database time.
    Wait class "Commit" was not consuming significant database time.
    Wait class "Concurrency" was not consuming significant database time.
    Wait class "Configuration" was not consuming significant database time.
    Wait class "Network" was not consuming significant database time.
    Wait class "User I/O" was not consuming significant database time.
    Session connect and disconnect calls were not consuming significant database
    time.
    Hard parsing of SQL statements was not consuming significant database time.

    JACK DBA wrote:
    my server has 4 Gb Ram plz tell me something. what action should i take. This Query is running 18 hours plz by seeing this ADDM plz sugest what to do i'm highly thanksful to yoy As already mentioned here in the thread you need to check the execution plan of the UPDATE statement. If you're unlucky then the scalar subquery querying JAG_N24_DG0 is potentially executed for each row of GN_FLAT_IN_TABLE. Depending on the execution plan of the subquery this approach might be quite inefficient.
    Generic instructions how to generate a meaningful plan output and how to use the {noformat}{{noformat}code{noformat}}{noformat} tag to get it formatted in mono-space font here follow below:
    Could you please post an properly formatted explain plan output using DBMS_XPLAN.DISPLAY including the "Predicate Information" section below the plan to provide more details regarding your statement. Please use the {noformat}[{noformat}code{noformat}]{noformat} tag before and {noformat}[{noformat}/code{noformat}]{noformat} tag after or the {noformat}{{noformat}code{noformat}}{noformat} tag before and after to enhance readability of the output provided:
    In SQL*Plus:
    SET LINESIZE 130
    EXPLAIN PLAN FOR <your statement>;
    SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY);Note that the package DBMS_XPLAN.DISPLAY is only available from 9i on.
    In 9i and above, if the "Predicate Information" section is missing from the DBMS_XPLAN.DISPLAY output but you get instead the message "Plan table is old version" then you need to re-create your plan table using the server side script "$ORACLE_HOME/rdbms/admin/utlxplan.sql".
    In previous versions you could run the following in SQL*Plus (on the server) instead:
    @?/rdbms/admin/utlxplsA different approach in SQL*Plus:
    SET AUTOTRACE ON EXPLAIN
    <run your statement>;will also show the execution plan.
    In order to get a better understanding where your statement spends the time you might want to turn on SQL trace as described here:
    When your query takes too long ...
    and post the "tkprof" output here, too.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Regarding case statement and decode function

    Hi Experts,
    I have question.....regarding case statement and decode statement....
    Can you please explain me that which one will be efficient,to place in insert statement...
    insert statement(
    (case when ........then
                         case when ....then
                         else
                         end)
      else
    end)
    or
    insert statement(
    case when.....then
    decode(....)
    else
    end)
    Can you people explain me which one is more efficient method?
    Thanks in advance.......

    The are major differences to talk about in case of CASE vs DECODE, but performance wise both are pretty much the same.
    Have a look at Tom's thread
    Ask Tom &amp;quot;better performance - case or decode&amp;quot;
    I would suggest to use CASE whenever possible. Don't worry about the performance part.

  • Plz help.  How disable caching SQLJ statement  on WebLogic server 10.3?

    Plz help.
    How disable caching statement by SQLJ on WebLogic server?
    what the actual problem:
    1. create or replace view vtest as select object_name from dba_objects where rownum<200
    2. test.sqlj
      #sql dx testIterator = {
         select object_name from vtest
       int cnt=0;
       while( testIterator.next() ){
         cnt++;
       System.out.println("Count: "+cnt);
    3. Restart WebLogic and deploy project
    4. Run test on server, in log file
    "*Count: 199*"
    5. create or replace view vtest as select object_name from dba_objects where rownum<10
    6. Run test on server, in log file
    "*Count: 199*"
    7. Restart WebLogic
    8. Run test on server, in log file
    "*Count: 9*"

    Hi bud,
    Have you tried using WLST for what you are trying to achieve?
    Please take a look at the following links:
    http://docs.oracle.com/cd/E11035_01/wls100/config_scripting/domains.html
    http://docs.oracle.com/cd/E13222_01/wls/docs91/config_scripting/domains.html
    http://docs.oracle.com/cd/E13179_01/common/docs21/interm/config.html
    Hope this helps.
    Thanks,
    Cris

  • Regarding time statement in ESS

    hi gurus,
    i have developed time statement in PE51 name ZF03,BUT IN ess the time statement is coming from
    tc-hrforms,which is totally different from ZF03,what i want that my form-ZF03 will display in ESS for this what sud i do how will i configure zf03 instead of form from "HRFORMS".
    PLZ help me as i already searched alot in th forum but didnt get my answer.

    You can't show a PE51 form. SAP has provided standard HR forms which you need to copy to your requirement.
    You can do this without much abap knowlege as HRFORMS transaction is a logical nested loop of condition. Go to the layout of the copied form and customize as you want.

  • Plz help to solve this error in out.println statement

    Hi All,
    I am pretty new to weblogic8.1.I am Getting a error if i try to concatenate a object to the string in out.println
    statement.
    For your kind reference progam and error pattern is enclosed.
    public class Test extends HttpServlet
    PrintWriter out;
    public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
    out=res.getWriter();
    String aaa="Google";
    out.println("Hai"+aaa);
    ERROR IS:
    Error 500--Internal Server Error
    java.lang.NoClassDefFoundError: java/lang/StringBuilder
         at Test.doGet(Test.java:15)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    If i use the statement like;
    out.println("Hai");
    out.println(aaa); ...It works fine
    Plz, help me out there.Thanks All.
    Prith

    My guess is this is a classpath issue. Read weblogic's documentation on how to install the software thoroghly, then re-install it. Double check that JAVA_HOME is set properly, and that you are using a fairly recent Sun Java VM, versus an old MS Java VM...

  • My friend has an Iphone 5s which states 'Assembled in Korea' at the back? Is it genuine? Plz help ! thanks

    My friend has an Iphone 5s which states 'Assembled in Korea' at the back? Is it genuine? Plz help ! thanks

    Thanks Razmee209 for your reply. He bought it in India. I was wondering does apple make devices which are Assembled or Made in Korea?

  • Regarding selection statement

    hi experts,
    In my report i have selecttion screen, in selection screen 10 text box. like company code, first name , last name.... etc. what i want user enter company code in first text box and press execute after that company code related data automatically fill in all other text box. like first name = xxxx, last name = yyyy.
    so which query i use for this statement.
    plz help me how will i use the  query

    Try the below code :
    REPORT ZDESKDLC NO STANDARD PAGE HEADING LINE-SIZE 255.
    DATA DECLARATION
    TABLES : ZDESKDLC.
    data: itab_zdeskdlc like zdeskdlc occurs 0 with header line.
    DATA wa TYPE zdeskdlc.
    data wa_zdeskdlc like zdeskdlc.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: CCOD LIKE ZDESKDLC-CCODE MODIF ID ABC.
    PARAMETERS: DESKCODE LIKE ZDESKDLC-DESK_CODE MODIF ID ABC.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION SCREEN WITH RADIO BUTTON
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-001.
    PARAMETERS: DELETE RADIOBUTTON GROUP G1 USER-COMMAND R DEFAULT 'X'.
    PARAMETERS: UPDATE RADIOBUTTON GROUP G1.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-001.
    PARAMETERS: CCOD1 LIKE ZDESKDLC-CCODE MODIF ID DEF,
    DESKCD LIKE ZDESKDLC-DESK_CODE MODIF ID DEF,
    SR_MANAG LIKE ZDESKDLC-SR_MANAGEMENT MODIF ID DEF,
    LASTNAME LIKE ZDESKDLC-LAST_NAME MODIF ID DEF,
    FIRSTNM LIKE ZDESKDLC-FIRST_NAME MODIF ID DEF,
    DEPART LIKE ZDESKDLC-DEPARTMENT MODIF ID DEF,
    ADM_SYS LIKE ZDESKDLC-ADMIN_SYSTEM MODIF ID DEF,
    RACF_ID LIKE ZDESKDLC-RACF_ID MODIF ID DEF,
    OPEN_DT LIKE ZDESKDLC-OPEN_DATE MODIF ID DEF,
    CLOSE_DT LIKE ZDESKDLC-CLOSE_DATE MODIF ID DEF,
    SAPUSRID LIKE ZDESKDLC-SAP_USER_ID MODIF ID DEF.
    SELECTION-SCREEN END OF BLOCK B3.
    <b>AT SELECTION-SCREEN.
    if not CCOD1 is initial.
    clear : wa_zdeskdlc.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = CCOD1
    IMPORTING
       OUTPUT        = CCOD1
    select single * from zdeskdlc into wa_zdeskdlc
                             where CCODE = CCOD1.
    if sy-subrc eq 0.
    DESKCD = wa_zdeskdlc-DESK_CODE.
    SR_MANAG = wa_zdeskdlc-SR_MANAGEMENT.
    LASTNAME =  wa_zdeskdlc-LAST_NAME.
    FIRSTNM =  wa_zdeskdlc-FIRST_NAME .
    DEPART =  wa_zdeskdlc-DEPARTMENT.
    ADM_SYS =  wa_zdeskdlc-ADMIN_SYSTEM.
    RACF_ID =  wa_zdeskdlc-RACF_ID.
    OPEN_DT =  wa_zdeskdlc-OPEN_DATE.
    CLOSE_DT =  wa_zdeskdlc-CLOSE_DATE.
    SAPUSRID =  wa_zdeskdlc-SAP_USER_ID.
    endif.
    endif.</b>
    AT SELECTION-SCREEN.
    AT SELECTION-SCREEN OUTPUT.
    IF DELETE = 'X'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'DEF'.
    SCREEN-ACTIVE = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.
    IF UPDATE = 'X'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'ABC'.
    SCREEN-ACTIVE = '0'.
    screen-invisible = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.
    START-OF-SELECTION
    start-of-selection.
    DELETE QUERY
    IF DELETE = 'X'.
    DELETE from zdeskdlc where
    CCODE = CCOD AND
    DESK_CODE = DESKCODE.
    IF SY-SUBRC = 0.
    MESSAGE s001(zjig) WITH 'data delete successfully'.
    ELSE.
    MESSAGE s001(zjig) WITH 'NO RECORD FOUND'.
    ENDIF.
    ENDIF.
    UPDATE QUERY
    IF UPDATE = 'X'.
    **Read table ZDESKDLC with key CCOD = ZDESKDLC-CCODE.,
    **if sy-subrc = 0.
    **"data is already inserted".
    ZDESKDLC-CCODE = CCOD1.
    ZDESKDLC-DESK_CODE = DESKCD.
    ZDESKDLC-SR_MANAGEMENT = SR_MANAG.
    ZDESKDLC-LAST_NAME = LASTNAME.
    ZDESKDLC-FIRST_NAME = FIRSTNM.
    ZDESKDLC-DEPARTMENT = DEPART.
    ZDESKDLC-ADMIN_SYSTEM = ADM_SYS.
    ZDESKDLC-RACF_ID = RACF_ID.
    ZDESKDLC-OPEN_DATE = OPEN_DT.
    ZDESKDLC-CLOSE_DATE = CLOSE_DT.
    ZDESKDLC-SAP_USER_ID = SAPUSRID.
    *select single *
    **ccode desk_code sr_management last_name first_name department admin_system racf_id open_date close_date sap_user_id
    **(itab_zdeskdlc-ccode, itab_zdeskdlc-desk_code, itab_zdeskdlc-sr_management, itab_zdeskdlc-last_name, itab_zdeskdlc-first_name, itab_zdeskdlc-department,
    **itab_zdeskdlc-admin_system, itab_zdeskdlc-racf_id, itab_zdeskdlc-open_date,itab_zdeskdlc-close_date itab_zdeskdlc-sap_user_id)
    *from zdeskdlc where CCODE = ccod1 and desk_code = deskcd.
    ***write:
    **endselect.
    **select * from zdeskdlc into wa where CCODE = ccod1 and desk_code = deskcd.
    **endselect.
    *write:/ wa-ccode = ccod1.
    **if sy-subrc ne 0.
    MESSAGE s001(zjig) WITH 'data modify successfully'.
    **endif.
    MODIFY ZDESKDLC.
    IF SY-SUBRC = 0.
    MESSAGE s001(zjig) WITH 'data modify successfully'.
    MESSAGE s001(zjig) WITH 'DATA IS ALREADY INSERTED'.
    ENDIF.
    ENDIF.
    see the below program ,which i tested
    REPORT ZTEST_91 .
    tables : marc.
    data wa_marc like marc.
    parameters : p_matnr like marc-matnr,
                 p_werks like marc-werks.
    at selection-screen.
    if not  p_matnr is initial.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = p_matnr
    IMPORTING
       OUTPUT        = p_matnr
    select single * from marc into wa_marc
                    where matnr = p_matnr.
    if sy-subrc eq 0.
    p_werks = wa_marc-werks.
    endif.
    endif.
    Thanks
    Seshu

  • Plz help regarding CALENDAR

    hi friends
    i have insalled damo and they are running as well plz tell me how i can copy CALENDAR from there to my forms
    plz help me in detail coz i dont know about it at all
    thank you

    thank you Pamela for recordgroup's help its working
    and
    thank you Frank for reconfirming her regarding calendar :)
    but i still have a problem that is i am using form 6i and i am unable to find that file about which Pamela is asking if u have that file then send it at [email protected]
    so that i can as u further questions regarding calendar :)
    thank you very much for every thing
    take care
    Bye

  • Plz Help me regarding oracle  event alerts..... Its urgent !!

    Hi all,
    How to create oracle event alert when particular column is update. plz help me.... Acutually i need email alert when ever list price for an item column in pricing table get updated+... plz. Its urgent.

    In that thread,... gareth.roberts say to modify the trigger definition to the column. Actually i am new to oracle >alert. How do i get that trigger definition and from where i have to get. and how to modify the trigger definition . >
    plz...Need not to say like that, I am just trying to help you. I believe if you are new try to read and understand the documents and process. Please start with Oracle Alert User's Guide to create a alert and send notification.
    I do not have any ready made scenario, I can refer you the documents to do the same,
    [How to Create a Basic Trigger|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=119667.1]
    [RDBPROD: How to Create an Update Trigger Which Depends on Any Other Field|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68037.1]
    To view the Trigger Information you can use TOAD and modify the same as per your need.
    Thanks,
    Anchorage :)

Maybe you are looking for

  • Chat with an agent doesn't work

    I have been trying for the last hour to get into the chat with an agent feature, does this feature work? Has anyone else used it?

  • Adapter Engine for XI

    Hi, we are using XI 3.0 and try to test services /sap/bc/bsp/sap/spi_monitor and getting some error messages, i am sure in sxmb_adm logging_sync parameter is set to 1, when I goto RWB and select "Component Monitoring" Adapter Engine is yellow I am se

  • 0ORGUNIT Hierarchy load failure in BW, Source system : CRM

    Hi Experts, From last 3 days 0ORGUNIT hierarchy load was failing.Iam getting below messages. Node 25047465 already exists Node 25034957 already exists Node ID 00006105,Char.Value 25081567,exists several times under node id 00003508 Node ID 00005752,

  • ConcurrentModificationException in RequestContextImpl class

    Am currently getting a ConcurrentModificationException thrown by the notifyRequestCompletionListeners method of the RequestContextImpl class. The context is: A JSP includes two JSP fragments, containing tiled views bound to primary models and surroun

  • URGENT: Is it possible to upload multiple files using STRUTS

    Hi, Is it possible to upload multiple files using STRUTS. I am able to upload a single file. But how do i upload multiple files ?? upload.jsp <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> <%@ taglib uri="/WEB-INF/struts-template.tld" p