How can we find the exit being implemented in a project.

Hello,
Very Good morning!
How to find the impelementd exit for a given transaction
How can we find the exit being implemented in a project and to find it's source code?
Any Suggestions would be appreciated...
Regards,
Kittu

Hi,
Ways to find the exit triggering in the source code:
1)first way
1) If you hav that FM exit that was listed r used.
2) go to se37 and type that FM
3) In the source code of that FM double click the type of Message or
exit result which has the Z<include>.
4)IN order to disable the exit->
utilities->system->sattus->program->attributes->package
find this package
5) in SMOD->Prject->F4help->giuve package name-give the found ones
But here we cant see the implementation.
2) second way
1)goto SE37
2)Give FM name
3)/h(Debugging on)
4) Display
5) Break points->statements->(messages if used in exit)->execute
Click on f5 until that Exit is triggered
6) go and find out for each type of exit message shown ie til that exit functionality is
actually triggered
7)once u find that exit ur looking for->
8)GOTO->SOURCECODE->give the include name that is found in debugging when exit is encountered
9)copy this include name(ZX..)->keep a comment forthat exit in this include(ZX..) inorder not to process.
10) se38->Zincludename(ZX..) and comment the code.
11)save check n activate
->SE37->
FM->name
we can now view FM.
3) third way
1)FM->Name
2)/H
3)Break point at CALL CUSTOMER-FUNCTION statement
4) It will stop at this exit.
Reward if helpful.
Best Wishes,
Chandralekha

Similar Messages

  • How can we find the list of user exits for a transaction

    hi all
    iam new in user exits please send the basic details
    how can we find the list of user exit for a perticular transaction and how can we determine that a particulr user exit is used for a field
    regards
    jagadish

    hi,
    check the below links for userexits
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    FAQ's
    http://http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    1. what is the defference between enhancement and user-exits?
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Re: difference between user exits & customer exits
    Some Questions ! Plz help...
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1190924_tax299358,00.html?bucket=ETA
    2. Difference between CMOD and SMOD?
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236095
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236107
    check these links..
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    passing selet-option variable to subrouine...
    Finding the user-exits of a SAP transaction code
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    Written by : SAP Basis, ABAP Programming and Other IMG Stuff
                 http://www.sap-img.com/*
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program
    if u want to find the function exit
    then check the below code
    REPORT ZV_FIND_EXIT NO STANDARD PAGE HEADING.
    TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
    TABLES : TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
    TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'SMOD'
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
    TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(95) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Exit Name',
    21 SY-VLINE ,
    22 'Description',
    95 SY-VLINE.
    WRITE:/(95) SY-ULINE.
    LOOP AT JTAB.
    SELECT SINGLE * FROM MODSAPT
    WHERE SPRSL = SY-LANGU AND
    NAME = JTAB-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 SY-VLINE,
    2 JTAB-OBJ_NAME HOTSPOT ON,
    21 SY-VLINE ,
    22 MODSAPT-MODTEXT,
    95 SY-VLINE.
    ENDLOOP.
    WRITE:/(95) SY-ULINE.
    DESCRIBE TABLE JTAB.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , SY-TFILL.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    or
    1. in se11, goto table MODSAP
    View table contents
    2. in Type field, enter 'E' (for function exit)
    3. For that tcode, u should know the program name.
    eg. SAPLLMOB
    4. then type SAPLLMOB and execute
    or
    REPORT z34331_user_exit .
    TABLES : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name = enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    Find SAP Modifactions
    SELECT * FROM tadir
    INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards,
    Naveen

  • How can I find the USer Exit...

    Hi,
    How can I find the USer Exit...
    I need to do changes for this User Exit :EXIT_SAPLKEII_002
    In which T-code I can open this Exit
    Ex: Go to some Transcation code and then give the name of the Exit ato access this Exit
    ...any sugesstions will be apprecaited!
    Thanks & Regards,
    Kittu

    Hi,
        the EXIT : EXIT_SAPLKEII_002 is the exit,in this SAPLKEII is the standard Program.Copy this program and go to transactio SE38 and press Enter and then go for the option Where used list and check the check box Transaction. It displays the possible Transactions that the Exit triggers
    Regards,
    Vijaya Lakshmi.T

  • How can i find the installed forms version in 6i...?

    Dear all,
    How can i find the installed forms version in 6i, the situation is we have given a solution which will work in only forms6i latest version, before implementing the same we need to check whether the forms latest version has been installed or not
    Is there any way to find out without opening the forms builder..?
    Even if we un install the forms from a machine, the forms60_path variable will remain in regedit, so we cannot go based on that and aslo i dont know whether regedit will have the version details and all.
    It would be greatly appreciated if any one can give a solution.
    Thanks in Advance.
    Thangaraj.

    you query the registry, the registry has the version number saved, but I cannot remember exactly where and I don't have 6i Installed on my machine.
    You just open the Forms Builder and click on Help/About.
    But Jan's method is the best.

  • HT201240 how can I find the su - root password on my mac?

    how can I find the su - root password on my mac?

    Chances are you could have also done
    sudo su -
    which would now make you 'root' until you exit.  You could do all your setup running as root.
    Very few if anything actually needs the root password to use root privileges, and having a system where root cannot be directly logged into, is a safer system.

  • How can I find the all path available for a MPLS VPN in SP network

    How can I find the all path available for a MPLS VPN in SP network between PE to PE and CE to CE?

    Hi There
    If we need to find all the available paths for a remote CE from a local PE it will depend upon whether its a RR or non-RR design. If the MP-iBGP deisgn is non-RR  the below vrf specific command
    sh ip bgp vpnv4 vrf "vrf_name"  will show us the MP-iBGP RT for that particular VPN. It will show us the next hop. Checking the route for same in the Global RT will show us the path(s) available for same ( load-balancing considered) .Then we can do a trace using the Local PE MP-iBGP loopback as source to remote PE's MP-iBGP loopback to get the physical Hops involved.
    However if the design is RR-based there might be complications involved when the RR is in the forwarding path ie we have NHS being set to RR-MP-iBGP loopback and the  trace using the Local PE MP-iBGP loopback as source to remote PE's MP-iBGP loopback will get us the physical Hops involved.
    If we have redundant RRs being used with NHS being set then the output of sh ip bgp vpnv4 vrf "vrf_name" will show us two different available paths for the remote CE destination but just one being used.
    RR-based design with no NHS being used will always to cater to single path for the remote CE detsination.
    So in any case the actual path used for the remote CE connectivity would be a single unless we are using load-balancing.
    Hope this helps you a bit on your requirement
    Thanks & Regards
    Vaibhava Varma

  • How can i find the adobe form translations

    Hi Friends,
    how can i find the adobe form translations?
    i mean i want to know in how many languages my adobe form has been translated?
    is their any report or is their any technique to find the translations........................
    Thanks,
    Harish.K

    Hello Harish,
    To find the translation of Adobe form is nothing but to find the labels or texts used in this adobe form in various languages. This will give you an idea on how many languages your adobe form has been translated.
    So to find the translations in different languages, you have to go to Context node of the Adobe form. Then go through the text nodes which are used as labels. These will be normally stored as Standard texts in SO10.
    For example. Take the text name of any one text node.
    1) Go to SE38.
    2) Type program RSTXTRAN.
    3) Let the Text key - object be TEXT.
    4) Then enter this text name in the field Text key - name. I have put the sample standard text ZTEST_ADOBE as shown below.
    5) Let the Text key - ID be ST.
    6) In Text key - language, Enter *  (i.e enter the Asterisk) because you want to find out all the languages.
    The screen parameters will be as shown below.
    7) Now Execute this report.
    8) It will show all the various languages in which this particular standard text is used which is nothing but the Adobe form is being used in these many languages. For example, the standard text ZTEST_ADOBE is used in 3 languages, English, German and Spanish as shown below. It will look as shown below.
    Note: This will give you the more or less the overall idea of the form that has been used in these many languages. But also make sure the standard text with particular language is also linked with the Transport Request. Because there are chances that the text was created in a particular language but was never used.

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • How can I find the reason for frequent system crashes?

    Hi all,
    since a couple if weeks my iMac (late 2009) has a system crash at least once per day; I don't know the reason or what software causes that. How can I find the source of this crashes?
    Thanks and regards
    Chris

    Thanks for your answer.
    Here the result:
    EtreCheck version: 1.9.15 (52)
    Report generated 27. September 2014 11:26:51 GMT+8
    Hardware Information: ?
      iMac (21.5-inch, Late 2009) (Verified)
      iMac - model: iMac10,1
      1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
      8 GB RAM
    Video Information: ?
      ATI Radeon HD 4670 - VRAM: 256 MB
      iMac 1920 x 1080
    System Software: ?
      OS X 10.9.5 (13F34) - Uptime: 0 days 3:9:21
    Disk Information: ?
      ST31000528AS disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209,7 MB
      Macintosh HD (disk0s2) / [Startup]: 999,35 GB (636,04 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      OPTIARC DVD RW AD-5680H 
    USB Information: ?
      StoreJet Transcend StoreJet Transcend 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted>: 209,7 MB
      Transcend (disk1s2) /Volumes/Transcend: 2 TB (1,53 TB free)
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple, Inc. Keyboard Hub
      Apple Inc. iPhone
      Apple Inc. Apple Keyboard
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [loaded] com.Cycling74.driver.Soundflower (1.5.2) Support
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Support
      [loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Support
      [not loaded] com.paceap.kext.pacesupport.leopard (5.9 - SDK 10.4) Support
      [not loaded] com.paceap.kext.pacesupport.master (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.panther (5.9 - SDK 10.3) Support
      [loaded] com.paceap.kext.pacesupport.snowleopard (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.tiger (5.9 - SDK 10.4) Support
      [loaded] foo.tap (1.0) Support
      [loaded] foo.tun (1.0) Support
    Startup Items: ?
      KP_IPFW: Path: /System/Library/StartupItems/KP_IPFW
      Sudochmod: Path: /Library/StartupItems/Sudochmod
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.avast.init.plist Support
      [loaded] com.avast.uninstall.plist Support
      [loaded] com.avast.update.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.machangout.glims.loader.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [loaded] org.tcpdump.chmod_bpf.plist Support
      [loaded] PACESupport.plist Support
      [running] vyprvpnservice.plist Support
    Launch Agents: ?
      [loaded] com.avast.userinit.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.hp.messagecenter.launcher.plist Support
      [running] com.machangout.glims.agent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [failed] com.akamai.single-user-client.plist Support
      [loaded] com.avast.home.userinit.plist Support
      [running] com.google.Chrome.framework.plist Support
      [loaded] com.macpaw.CleanMyMac.helperTool.plist Support
      [loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac.volumeWatcher.plist Support
      [not loaded] Verbindungsassistent
    User Login Items: ?
      Show Desktop
      Skype
      Air Media Server
      TuneupMyMac
      VyprVPN
    Internet Plug-ins: ?
      NPClientBinding: Version: 1.0.0.5 - SDK 10.6
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 2.3.8.1 Support
      NPCleanHistory: Version: 1.0 - SDK 10.6
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: Unknown
      NPSafeInput: Version: 1.0 - SDK 10.6
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0
      NPSafeSubmit: Version: 1.0 - SDK 10.6
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 10.1.12 Support
      GarminGpsControl: Version: 4.0.2.6 Beta - SDK 10.6 Support
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    Safari Extensions: ?
      AdBlock
      wrc (Disabled)
      Download Shuttle
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins ?
      Picasa: Version: 1.0 Support
      WebEx64: Version: 1.0 - SDK 10.5 Support
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Java  Support
      MacFUSE (Tuxera)  Support
    Time Machine: ?
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 930.71 GB Disk used: 338.35 GB
      Destinations:
      Transcend [Local] (Last used)
      Total size: 2 TB
      Total number of backups: 23
      Oldest backup: 2014-09-12 08:28:44 +0000
      Last backup: 2014-09-27 03:10:24 +0000
      Size of backup disk: Adequate
      Backup size 2 TB > (Disk used 338.35 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          2% WindowServer
          0% Microsoft Word
          0% VyprVPN
          0% Skype
          0% hidd
    Top Processes by Memory: ?
      377 MB iTunes
      369 MB Safari
      254 MB mds_stores
      180 MB com.apple.IconServicesAgent
      131 MB com.avast.daemon
    Virtual Memory Information: ?
      2.37 GB Free RAM
      3.25 GB Active RAM
      1.60 GB Inactive RAM
      793 MB Wired RAM
      1.52 GB Page-ins
      0 B Page-outs

  • Two MaxDB crashes in the last 5 days, how can I find the reason ?

    Hello,
    My MaxDB-Server crashed two times in the last 5 days and I have no idea why. Can you help me to find the reason for the crashes ? My MaxDB 7.6.05 is running on a Linux server and I never had such problems before.
    Here are some lines from the knldiag.err file:
    First crash:
    2009-01-09 15:02:05     0 ERR 11330 COREHAND ABORTING due to signal 11
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    > Emergency Stack Back Trace <----
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    > Register Dump <----
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   ds   es   0x6409007b 0x0000007b
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   fs   gs   0xc0100000 0x00000033
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   trap err  0x0000000e 0x00000014
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   efl  ss   0x00010216 0x0000007b
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   edi  esi  0xb7bbe3e0 0x50042938
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   eax  ebx  0x00000001
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   ecx  edx  0xb7bbe3e0
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   esp  uesp 0x6421defc 0x6421defc
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   ebp  eip  0x0121df84 0x00000000
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   cs   cr2  0x00000073 0x00000000
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   cw - sw - tag   0xffff037f 0xffff0020 0xffffffff
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   ipoff - cssel   0xb7e1a284 0x077d0073
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   dataoff-datasel 0x6421dd7c 0x0000007b
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f00      [0x3c00 0x5821 0xf70a 0x91c1 - 0x4008]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f01      [0x3c00 0x5821 0xf70a 0x9201 - 0x4008]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f02      [0x0000 0x0000 0x0000 0xb600 - 0x4006]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f03      [0x435e 0x0d79 0x35e5 0xd794 - 0x3ff9]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f04      [0x435e 0x0d79 0x35e5 0xd794 - 0x3ff9]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f05      [0x0000 0x0000 0x0000 0x8000 - 0x3fff]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f06      [0x0000 0x0000 0x0000 0xdcc0 - 0xc028]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   f07      [0x0000 0x5720 0x77d2 0xc691 - 0x401e]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    > Module List <----
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   |.text Start |.text End   | Module File Name
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0x08048000 | 0x08e62000 | /opt/sdb/7603/pgm/kernel
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0x5aa91000 | 0x5acbc000 | /opt/sdb/7603/lib/liboms.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7267000 | 0xb726f000 | /lib/libnss_nis-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7271000 | 0xb7284000 | /lib/libnsl-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7288000 | 0xb728e000 | /lib/libnss_compat-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7b93000 | 0xb7b9b000 | /lib/libnss_files-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7ce2000 | 0xb7e0f000 | /lib/libc-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7e0f000 | 0xb7e10000 | /lib/libc-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7e16000 | 0xb7e20000 | /lib/libgcc_s.so.1
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7e22000 | 0xb7e45000 | /lib/libm-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7e47000 | 0xb7eff000 | /usr/lib/libstdc++.so.5.0.7
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7f09000 | 0xb7f10000 | /lib/librt-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7f12000 | 0xb7f14000 | /lib/libdl-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7f16000 | 0xb7f29000 | /lib/libpthread-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xb7f39000 | 0xb7f53000 | /lib/ld-2.6.1.so
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   | 0xffffe000 | 0xfffff000 | [vdso]
    2009-01-09 15:02:05     0 ERR 11599 BTRACE  
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    > Symbolic Stack Back Trace <----
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   -
    > End of Stack Back Trace <----
    2009-01-09 15:02:05     0 ERR 11330 COREHAND dump of siginfo content:
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  signal     11 (SIGSEGV)
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  code       1 (ILL_ILLOPC:illegal opcode)
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  errno      0
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  value(int) 4640
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  value(ptr) @1220
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  pid        0
    2009-01-09 15:02:05     0 ERR 11330 COREHAND  addr       @0
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   analysing LVCMem_Allocator_001
    2009-01-09 15:02:05     0 ERR 11599 BTRACE  
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   no problems detected in LVCMem_Allocator_001
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   analysing LVCMem_Allocator_002
    2009-01-09 15:02:05     0 ERR 11599 BTRACE  
    2009-01-09 15:02:05     0 ERR 11599 BTRACE   no problems detected in LVCMem_Allocator_002
    2009-01-09 15:02:06     0 ERR 12006 DBCRASH  Kernel exited without core and exit status 0x2f00
    2009-01-09 15:02:06     0 ERR 12008 DBCRASH  Kernel exited due to reentered signal handler
    2009-01-09 15:02:06                          ___ Stopping GMT 2009-01-09 14:02:06           7.6.05   Build 009-121-191-997
    Second crash:
    2009-01-13 11:03:22     0 ERR 11330 COREHAND ABORTING due to signal 11
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    > Emergency Stack Back Trace <----
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    > Register Dump <----
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   ds   es   0x6413007b 0x0000007b
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   fs   gs   0xc0100000 0x00000033
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   trap err  0x0000000e 0x00000014
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   efl  ss   0x00010216 0x0000007b
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   edi  esi  0xb7c61400 0x5003fad0
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   eax  ebx  0x00000001
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   ecx  edx  0xb7c61400
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   esp  uesp 0x63e3eefc 0x63e3eefc
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   ebp  eip  0x01e3ef84 0x00000000
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   cs   cr2  0x00000073 0x00000000
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   cw - sw - tag   0xffff037f 0xffff0020 0xffffffff
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   ipoff - cssel   0xb7ebb284 0x077d0073
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   dataoff-datasel 0x63e3ed7c 0x0000007b
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f00      [0x8800 0xc349 0x8885 0x91ff - 0x4008]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f01      [0x8800 0xc349 0x8885 0x923f - 0x4008]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f02      [0x0000 0x0000 0x0000 0xf300 - 0x4007]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f03      [0xb7b6 0xdb6d 0x6db6 0xf25b - 0x4007]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f04      [0x0000 0x0000 0x0000 0x9800 - 0x4002]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f05      [0x0000 0x0000 0x0000 0xfbd3 - 0x400e]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f06      [0x0000 0x0000 0x0000 0xa000 - 0xc023]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   f07      [0x0000 0x10ec 0x76ec 0xc1c0 - 0x401d]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    > Module List <----
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   |.text Start |.text End   | Module File Name
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0x08048000 | 0x08e62000 | /opt/sdb/7603/pgm/kernel
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0x5a756000 | 0x5a981000 | /opt/sdb/7603/lib/liboms.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7308000 | 0xb7310000 | /lib/libnss_nis-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7312000 | 0xb7325000 | /lib/libnsl-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7329000 | 0xb732f000 | /lib/libnss_compat-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7c34000 | 0xb7c3c000 | /lib/libnss_files-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7d83000 | 0xb7eb0000 | /lib/libc-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7eb0000 | 0xb7eb1000 | /lib/libc-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7eb7000 | 0xb7ec1000 | /lib/libgcc_s.so.1
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7ec3000 | 0xb7ee6000 | /lib/libm-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7ee8000 | 0xb7fa0000 | /usr/lib/libstdc++.so.5.0.7
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7faa000 | 0xb7fb1000 | /lib/librt-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7fb3000 | 0xb7fb5000 | /lib/libdl-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7fb7000 | 0xb7fca000 | /lib/libpthread-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xb7fda000 | 0xb7ff4000 | /lib/ld-2.6.1.so
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   | 0xffffe000 | 0xfffff000 | [vdso]
    2009-01-13 11:03:22     0 ERR 11599 BTRACE  
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    > Symbolic Stack Back Trace <----
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   -
    > End of Stack Back Trace <----
    2009-01-13 11:03:22     0 ERR 11330 COREHAND dump of siginfo content:
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  signal     11 (SIGSEGV)
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  code       1 (ILL_ILLOPC:illegal opcode)
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  errno      0
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  value(int) 4640
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  value(ptr) @1220
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  pid        0
    2009-01-13 11:03:22     0 ERR 11330 COREHAND  addr       @0
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   analysing LVCMem_Allocator_001
    2009-01-13 11:03:22     0 ERR 11599 BTRACE  
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   no problems detected in LVCMem_Allocator_001
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   analysing LVCMem_Allocator_002
    2009-01-13 11:03:22     0 ERR 11599 BTRACE  
    2009-01-13 11:03:22     0 ERR 11599 BTRACE   no problems detected in LVCMem_Allocator_002
    2009-01-13 11:03:23     0 ERR 12006 DBCRASH  Kernel exited without core and exit status 0x2f00
    2009-01-13 11:03:23     0 ERR 12008 DBCRASH  Kernel exited due to reentered signal handler
    2009-01-13 11:03:23                          ___ Stopping GMT 2009-01-13 10:03:23           7.6.05   Build 009-121-191-997
    How can I find the reason for the crash and prevent them in the future ? Or can you explain to me where the problem is ?
    Bye
    Claus

    Hello,
    I made the suggested settings.
    The operating system of the MaxDB server is SuSE Linux 10.3 with kernel version 2.6.22.5-31-bigsmp
    Here is the output for "param_directgetall"
    KERNELVERSION                         KERNEL    7.6.05   BUILD 009-121-191-997
    INSTANCE_TYPE                         OLTP
    MCOD                                  NO
    SERVERDBFOR_SAP                     YES
    _UNICODE                              NO
    DEFAULT_CODE                          ASCII
    DATE_TIME_FORMAT                      INTERNAL
    CONTROLUSERID                         <username>
    CONTROLPASSWORD                       
    MAXLOGVOLUMES                         2
    MAXDATAVOLUMES                        16
    LOG_VOLUME_NAME_001                   LOG_001
    LOG_VOLUME_TYPE_001                   F
    LOG_VOLUME_SIZE_001                   64000
    DATA_VOLUME_NAME_0003                 DAT_0003
    DATA_VOLUME_NAME_0002                 DAT_0002
    DATA_VOLUME_NAME_0001                 DAT_0001
    DATA_VOLUME_TYPE_0003                 F
    DATA_VOLUME_TYPE_0002                 F
    DATA_VOLUME_TYPE_0001                 F
    DATA_VOLUME_SIZE_0003                 13107200
    DATA_VOLUME_SIZE_0002                 13107200
    DATA_VOLUME_SIZE_0001                 13107200
    DATA_VOLUME_MODE_0003                 NORMAL
    DATA_VOLUME_MODE_0002                 NORMAL
    DATA_VOLUME_MODE_0001                 NORMAL
    DATA_VOLUME_GROUPS                    1
    LOG_BACKUP_TO_PIPE                    NO
    MAXBACKUPDEVS                         2
    LOG_MIRRORED                          NO
    MAXVOLUMES                            19
    LOG_IO_BLOCK_COUNT                    8
    DATA_IO_BLOCK_COUNT                   64
    BACKUP_BLOCK_CNT                      64
    DELAYLOGWRITER                      0
    LOG_IO_QUEUE                          50
    RESTARTTIME                         600
    MAXCPU                                2
    LOCAL_REDO_LOG_BUFFER_SIZE            0
    MAX_LOG_QUEUE_COUNT                   0
    USED_MAX_LOG_QUEUE_COUNT              2
    LOG_QUEUE_COUNT                       1
    MAXUSERTASKS                          75
    TRANSRGNS                           8
    TABRGNS                             8
    OMSREGIONS                          0
    OMSRGNS                             7
    LOCKMANAGERENABLED                  NO
    LMLOCK_REGIONS                      0
    LMREQUEST_REGIONS                   0
    LMTRANS_REGIONS                     0
    OMS_HEAP_LIMIT                        0
    OMS_HEAP_COUNT                        2
    OMS_HEAP_BLOCKSIZE                    10000
    OMS_HEAP_THRESHOLD                    100
    OMS_VERS_THRESHOLD                    2097152
    HEAP_CHECK_LEVEL                      0
    ROWRGNS                             8
    RESERVEDSERVERTASKS                   21
    MINSERVERTASKS                        38
    MAXSERVERTASKS                        38
    MAXGARBAGECOLL                      1
    _MAXTRANS                             604
    MAXLOCKS                              6080
    LOCKSUPPLY_BLOCK                    100
    DEADLOCK_DETECTION                    4
    DEADLOCK_DUMP_FILENAME                
    SESSION_TIMEOUT                       900
    OMS_STREAM_TIMEOUT                    30
    REQUEST_TIMEOUT                       5000
    IOPROCSPER_DEV                      2
    IOPROCSFOR_PRIO                     0
    IOPROCSFOR_READER                   0
    USEIOPROCS_ONLY                     NO
    IOPROCSSWITCH                       2
    LRU_FOR_SCAN                          NO
    PAGESIZE                            8192
    PACKETSIZE                          131072
    MINREPLYSIZE                        4096
    MBLOCKDATA_SIZE                     32768
    MBLOCKQUAL_SIZE                     32768
    MBLOCKSTACK_SIZE                    32768
    MBLOCKSTRAT_SIZE                    16384
    WORKSTACKSIZE                       8192
    WORKDATASIZE                        8192
    CATCACHE_MINSIZE                    262144
    CAT_CACHE_SUPPLY                      4864
    INIT_ALLOCATORSIZE                    262144
    ALLOW_MULTIPLE_SERVERTASK_UKTS        NO
    TASKCLUSTER01                       tw;al;ut;2000sv,100bup;10ev,10gc;
    TASKCLUSTER02                       ti,100dw;38us;
    TASKCLUSTER03                       equalize
    DYNTASK_STACK                       NO
    MPRGN_QUEUE                         YES
    MPRGN_DIRTY_READ                    DEFAULT
    MPRGN_BUSY_WAIT                     DEFAULT
    MPDISP_LOOPS                        2
    MPDISP_PRIO                         DEFAULT
    MP_RGN_LOOP                           -1
    MPRGN_PRIO                          DEFAULT
    MAXRGN_REQUEST                        -1
    PRIOBASE_U2U                        100
    PRIOBASE_IOC                        80
    PRIOBASE_RAV                        80
    PRIOBASE_REX                        40
    PRIOBASE_COM                        10
    PRIOFACTOR                          80
    DELAYCOMMIT                         NO
    MAXTASKSTACK                        1024
    MAX_SERVERTASK_STACK                  500
    MAX_SPECIALTASK_STACK                 500
    DWIO_AREA_SIZE                      50
    DWIO_AREA_FLUSH                     50
    FBM_VOLUME_COMPRESSION                50
    FBM_VOLUME_BALANCE                    10
    FBMLOW_IO_RATE                      10
    CACHE_SIZE                            150000
    DWLRU_TAIL_FLUSH                    25
    XP_DATA_CACHE_RGNS                    0
    DATACACHE_RGNS                      48
    XP_CONVERTER_REGIONS                  0
    CONVERTER_REGIONS                     48
    XP_MAXPAGER                           0
    MAXPAGER                              48
    SEQUENCE_CACHE                        1
    IDXFILELIST_SIZE                    2048
    VOLUMENO_BIT_COUNT                    8
    OPTIM_MAX_MERGE                       500
    OPTIM_INV_ONLY                        YES
    OPTIM_CACHE                           NO
    OPTIM_JOIN_FETCH                      0
    JOIN_SEARCH_LEVEL                     0
    JOIN_MAXTAB_LEVEL4                    16
    JOIN_MAXTAB_LEVEL9                    5
    READAHEADBLOBS                      32
    READAHEAD_TABLE_THRESHOLD             0
    CLUSTER_WRITE_THRESHOLD               80
    CLUSTERED_LOBS                        NO
    CLUSTERCOMPRESSIONTHRESHOLD           1000
    CLUSTERCOMPRESSIONFILLTHRESHOLD       10
    RUNDIRECTORY                          /var/opt/sdb/data/wrk/<dbname>
    OPMSG1                                /dev/console
    OPMSG2                                /dev/null
    _KERNELDIAGFILE                       knldiag
    KERNELDIAGSIZE                        800
    _EVENTFILE                            knldiag.evt
    _EVENTSIZE                            0
    _MAXEVENTTASKS                        2
    _MAXEVENTS                            100
    _KERNELTRACEFILE                      knltrace
    TRACE_PAGES_TI                        2
    TRACE_PAGES_GC                        20
    TRACE_PAGES_LW                        5
    TRACE_PAGES_PG                        3
    TRACE_PAGES_US                        10
    TRACE_PAGES_UT                        5
    TRACE_PAGES_SV                        5
    TRACE_PAGES_EV                        2
    TRACE_PAGES_BUP                       0
    KERNELTRACESIZE                       1121
    EXTERNAL_DUMP_REQUEST                 NO
    AKDUMP_ALLOWED                      YES
    _KERNELDUMPFILE                       knldump
    _RTEDUMPFILE                          rtedump
    UTILITYPROTFILE                     dbm.utl
    UTILITY_PROTSIZE                      100
    BACKUPHISTFILE                      dbm.knl
    BACKUPMED_DEF                       dbm.mdf
    MAXMESSAGE_FILES                    0
    _SHMKERNEL                            9640
    __PARAM_CHANGED___                    0
    __PARAM_VERIFIED__                    2009-01-18 20:09:54
    DIAG_HISTORY_NUM                      2
    DIAG_HISTORY_PATH                     /var/opt/sdb/data/wrk/<dbname>/DIAGHISTORY
    DIAGSEM                             1
    SHOW_MAX_STACK_USE                    NO
    SHOW_MAX_KB_STACK_USE                 NO
    LOG_SEGMENT_SIZE                      21333
    _COMMENT                              
    SUPPRESS_CORE                         NO
    FORMATTING_MODE                       PARALLEL
    FORMAT_DATAVOLUME                     YES
    OFFICIAL_NODE                         
    UKT_CPU_RELATIONSHIP                  NONE
    HIRES_TIMER_TYPE                      CPU
    LOAD_BALANCING_CHK                    0
    LOAD_BALANCING_DIF                    10
    LOAD_BALANCING_EQ                     5
    HS_STORAGE_DLL                        libhsscopy
    HS_SYNC_INTERVAL                      50
    USE_OPEN_DIRECT                       YES
    USE_OPEN_DIRECT_FOR_BACKUP            NO
    SYMBOL_DEMANGLING                     NO
    EXPAND_COM_TRACE                      NO
    JOIN_TABLEBUFFER                      128
    SET_VOLUME_LOCK                       YES
    SHAREDSQL                             YES
    SHAREDSQL_CLEANUPTHRESHOLD            25
    SHAREDSQL_COMMANDCACHESIZE            262144
    MEMORY_ALLOCATION_LIMIT               0
    USE_SYSTEM_PAGE_CACHE                 YES
    USE_COROUTINES                        YES
    FORBID_LOAD_BALANCING                 YES
    MIN_RETENTION_TIME                    60
    MAX_RETENTION_TIME                    480
    MAX_SINGLE_HASHTABLE_SIZE             512
    MAX_HASHTABLE_MEMORY                  5120
    ENABLE_CHECK_INSTANCE                 YES
    RTE_TEST_REGIONS                      0
    HASHED_RESULTSET                      YES
    HASHED_RESULTSET_CACHESIZE            262144
    CHECK_HASHED_RESULTSET                0
    AUTO_RECREATE_BAD_INDEXES             NO
    AUTHENTICATION_ALLOW                  
    AUTHENTICATION_DENY                   
    TRACE_AK                              NO
    TRACE_DEFAULT                         NO
    TRACE_DELETE                          NO
    TRACE_INDEX                           NO
    TRACE_INSERT                          NO
    TRACE_LOCK                            NO
    TRACE_LONG                            NO
    TRACE_OBJECT                          NO
    TRACE_OBJECT_ADD                      NO
    TRACE_OBJECT_ALTER                    NO
    TRACE_OBJECT_FREE                     NO
    TRACE_OBJECT_GET                      NO
    TRACE_OPTIMIZE                        NO
    TRACE_ORDER                           NO
    TRACE_ORDER_STANDARD                  NO
    TRACE_PAGES                           NO
    TRACE_PRIMARY_TREE                    NO
    TRACE_SELECT                          NO
    TRACE_TIME                            NO
    TRACE_UPDATE                          NO
    TRACE_STOP_ERRORCODE                  0
    TRACE_ALLOCATOR                       0
    TRACE_CATALOG                         0
    TRACE_CLIENTKERNELCOM                 0
    TRACE_COMMON                          0
    TRACE_COMMUNICATION                   0
    TRACE_CONVERTER                       0
    TRACE_DATACHAIN                       0
    TRACE_DATACACHE                       0
    TRACE_DATAPAM                         0
    TRACE_DATATREE                        0
    TRACE_DATAINDEX                       0
    TRACE_DBPROC                          0
    TRACE_FBM                             0
    TRACE_FILEDIR                         0
    TRACE_FRAMECTRL                       0
    TRACE_IOMAN                           0
    TRACE_IPC                             0
    TRACE_JOIN                            0
    TRACE_KSQL                            0
    TRACE_LOGACTION                       0
    TRACE_LOCKMANAGER                     0
    TRACE_LOGHISTORY                      0
    TRACE_LOGPAGE                         0
    TRACE_LOGTRANS                        0
    TRACE_LOGVOLUME                       0
    TRACE_MEMORY                          0
    TRACE_MESSAGES                        0
    TRACE_OBJECTCONTAINER                 0
    TRACE_OMS_CONTAINERDIR                0
    TRACE_OMS_CONTEXT                     0
    TRACE_OMS_ERROR                       0
    TRACE_OMS_FLUSHCACHE                  0
    TRACE_OMS_INTERFACE                   0
    TRACE_OMS_KEY                         0
    TRACE_OMS_KEYRANGE                    0
    TRACE_OMS_LOCK                        0
    TRACE_OMS_MEMORY                      0
    TRACE_OMS_NEWOBJ                      0
    TRACE_OMS_SESSION                     0
    TRACE_OMS_STREAM                      0
    TRACE_OMS_VAROBJECT                   0
    TRACE_OMS_VERSION                     0
    TRACE_PAGER                           0
    TRACE_RUNTIME                         0
    TRACE_SHAREDSQL                       0
    TRACE_SQLMANAGER                      0
    TRACE_SRVTASKS                        0
    TRACE_SYNCHRONISATION                 0
    TRACE_SYSVIEW                         0
    TRACE_TABLE                           0
    TRACE_VOLUME                          0
    CHECK_BACKUP                          NO
    CHECK_DATACACHE                       NO
    CHECK_KB_REGIONS                      NO
    CHECK_LOCK                            NO
    CHECK_LOCK_SUPPLY                     NO
    CHECK_REGIONS                         NO
    CHECK_TASK_SPECIFIC_CATALOGCACHE      NO
    CHECK_TRANSLIST                       NO
    CHECK_TREE                            NO
    CHECK_TREE_LOCKS                      NO
    CHECK_COMMON                          0
    CHECK_CONVERTER                       0
    CHECK_DATAPAGELOG                     0
    CHECK_DATAINDEX                       0
    CHECK_FBM                             0
    CHECK_IOMAN                           0
    CHECK_LOGHISTORY                      0
    CHECK_LOGPAGE                         0
    CHECK_LOGTRANS                        0
    CHECK_LOGVOLUME                       0
    CHECK_SRVTASKS                        0
    OPTIMIZE_AGGREGATION                  YES
    OPTIMIZE_FETCH_REVERSE                YES
    OPTIMIZE_STAR_JOIN                    YES
    OPTIMIZE_JOIN_ONEPHASE                YES
    OPTIMIZE_JOIN_OUTER                   YES
    OPTIMIZE_MIN_MAX                      YES
    OPTIMIZE_FIRST_ROWS                   YES
    OPTIMIZE_OPERATOR_JOIN                YES
    OPTIMIZE_JOIN_HASHTABLE               YES
    OPTIMIZE_JOIN_HASH_MINIMAL_RATIO      1
    OPTIMIZE_OPERATOR_JOIN_COSTFUNC       YES
    OPTIMIZE_JOIN_PARALLEL_MINSIZE        1000000
    OPTIMIZE_JOIN_PARALLEL_SERVERS        0
    OPTIMIZE_JOIN_OPERATOR_SORT           YES
    OPTIMIZE_QUAL_ON_INDEX                YES
    DDLTRIGGER                            YES
    SUBTREE_LOCKS                         NO
    MONITOR_READ                          2147483647
    MONITOR_TIME                          2147483647
    MONITOR_SELECTIVITY                   0
    MONITOR_ROWNO                         0
    CALLSTACKLEVEL                        0
    OMS_RUN_IN_UDE_SERVER                 NO
    OPTIMIZE_QUERYREWRITE                 OPERATOR
    TRACE_QUERYREWRITE                    0
    CHECK_QUERYREWRITE                    0
    PROTECT_DATACACHE_MEMORY              NO
    FILEDIR_SPINLOCKPOOL_SIZE             10
    TRANS_HISTORY_SIZE                    0
    TRANS_THRESHOLD_VALUE                 60
    ENABLE_SYSTEM_TRIGGERS                YES
    DBFILLINGABOVELIMIT                   70L80M85M90H95H96H97H98H99H
    DBFILLINGBELOWLIMIT                   70L80L85L90L95L
    LOGABOVELIMIT                         50L75L90M95M96H97H98H99H
    AUTOSAVE                              1
    BACKUPRESULT                          1
    CHECKDATA                             1
    EVENT                                 1
    ADMIN                                 1
    ONLINE                                1
    UPDSTATWANTED                         1
    OUTOFSESSIONS                         3
    ERROR                                 3
    SYSTEMERROR                           3
    DATABASEFULL                          1
    LOGFULL                               1
    LOGSEGMENTFULL                        1
    STANDBY                               1
    USESELECTFETCH                        YES
    USEVARIABLEINPUT                      NO
    UPDATESTAT_PARALLEL_SERVERS           0
    UPDATESTAT_SAMPLE_ALGO                1
    SIMULATE_VECTORIO                     IF_OPEN_DIRECT_OR_RAW_DEVICE
    COLUMNCOMPRESSION                     YES
    TIME_MEASUREMENT                      NO
    CHECK_TABLE_WIDTH                     NO
    MAX_MESSAGE_LIST_LENGTH               100
    SYMBOL_RESOLUTION                     YES
    PREALLOCATE_IOWORKER                  NO
    CACHE_IN_SHARED_MEMORY                NO
    INDEX_LEAF_CACHING                    2
    NO_SYNC_TO_DISK_WANTED                NO
    SPINLOCK_LOOP_COUNT                   30000
    SPINLOCK_BACKOFF_BASE                 1
    SPINLOCK_BACKOFF_FACTOR               2
    SPINLOCK_BACKOFF_MAXIMUM              64
    ROW_LOCKS_PER_TRANSACTION             50
    USEUNICODECOLUMNCOMPRESSION           NO
    FBM_CLUSTER_MODE                      MIXED
    I found a file called "comseg.dump" in the "DIAGHISTORY" directory. Here are the first lines from the file:
    ====================================================
    Big Communication segment dump for UKT007 (due to Task T097)
    big_comseg_header DUMP (size 4983832)-----
        bc_size           4983832
        bc_version        1
        bc_comseg_cnt     38
        bc_packet_cnt     38
        bc_comseg_size    72
        bc_packet_size    131072
        bc_comseg_offset  48
        bc_list_offset    2784
        bc_packet_offset  3088
        bc_kp_running     0
        bc_common_flag    1
    big_comseg content DUMP-----
    0x00000 180B4B00 01000000 26000000 26000000 ..L.....&...&...
    0x00010 48000000 00000200 30000000 D0000000 H.......0.......
    0x00020 100B0000 00000000 01000000 00000000 ................
    0x00030 00000000 01000000 01000000 00000200 ................
    0x00040 D0000000 00000000 70230000 00000000 ........z#......
    0x00050 01000000 00000000 00000000 00000000 ................
    0x00060 02000000 00000000 04800200 12000404 ................
    0x00070 00000000 00000000 00000000 01000000 ................
    0x00080 01000000 00000200 D8000000 00000000 ................
    0x00090 78230000 00000000 01000000 00000000 x#..............
    0x000A0 00000000 00000000 02000000 00000000 ................
    0x000B0 04800200 12800304 00000000 00000000 ................
    0x000C0 00000000 01000000 01000000 00000200 ................
    0x000D0 F0000000 00000000 7B230000 00000000 ........|#......
    0x000E0 01000000 00000000 00000000 00000000 ................
    0x000F0 02000000 00000000 04800200 12800404 ................
    0x00100 00000000 00000000 00000000 01000000 ................
    0x00110 01000000 00000200 F8000000 00000000 ................
    0x00120 34230000 00000000 01000000 00000000 4#..............
    0x00130 00000000 00000000 02000000 00000000 ................
    0x00140 04800200 1200F503 00000000 00000000 ................
    0x00150 00000000 01000000 01000000 00000200 ................
    0x00160 000A0000 00000000 86230000 00000000 .........#......
    0x00170 01000000 00000000 00000000 00000000 ................
    0x00180 02000000 00000000 04800200 12000704 ................
    0x00190 00000000 00000000 00000000 01000000 ................
    0x001A0 01000000 00000200 080A0000 00000000 ................
    0x001B0 7D230000 00000000 01000000 00000000 ~#..............
    0x001C0 00000000 00000000 02000000 00000000 ................
    0x001D0 04800200 12000504 00000000 00000000 ................
    0x001E0 00000000 01000000 01000000 00000200 ................
    0x001F0 100A0000 00000000 80230000 00000000 .........#......
    0x00200 01000000 00000000 00000000 00000000 ................
    0x00210 02000000 00000000 04800200 12800504 ................
    0x00220 00000000 00000000 00000000 01000000 ................
    0x00230 01000000 00000200 180A0000 00000000 ................
    0x00240 84230000 00000000 01000000 00000000 .#..............
    0x00250 00000000 00000000 02000000 00000000 ................
    0x00260 04800200 12800604 00000000 00000000 ................
    0x00270 00000000 01000000 01000000 00000200 ................
    0x00280 200A0000 00000000 88230000 00000000  ........#......
    0x00290 01000000 00000000 00000000 00000000 ................
    0x002A0 02000000 00000000 04800200 12800704 ................
    0x002B0 00000000 00000000 00000000 01000000 ................
    0x002C0 01000000 00000200 280A0000 00000000 ........(.......
    0x002D0 4F230000 00000000 01000000 00000000 O#..............
    0x002E0 00000000 00000000 02000000 00000000 ................
    0x002F0 04800200 1280F003 00000000 00000000 ................
    0x00300 00000000 01000000 01000000 00000200 ................
    0x00310 300A0000 00000000 38230000 00000000 0.......8#......
    0x00320 01000000 00000000 00000000 00000000 ................
    0x00330 02000000 00000000 04800200 1200F603 ................
    0x00340 00000000 00000000 00000000 01000000 ................
    0x00350 01000000 00000200 380A0000 00000000 ........8.......
    0x00360 30230000 00000000 01000000 00000000 :#..............
    0x00370 00000000 00000000 02000000 00000000 ................
    0x00380 04800200 1280F603 00000000 00000000 ................
    0x00390 00000000 01000000 01000000 00000200 ................
    0x003A0 400A0000 00000000 3B230000 00000000 @.......<#......
    0x003B0 01000000 00000000 00000000 00000000 ................
    0x003C0 02000000 00000000 04800200 1200F703 ................
    0x003D0 00000000 00000000 00000000 01000000 ................
    0x003E0 01000000 00000200 480A0000 00000000 ........H.......
    0x003F0 43230000 00000000 01000000 00000000 C#..............
    0x00400 00000000 00000000 02000000 00000000 ................
    0x00410 04800200 1280F703 00000000 00000000 ................
    0x00420 00000000 01000000 01000000 00000200 ................
    0x00430 500A0000 00000000 45230000 00000000 P.......E#......
    0x00440 01000000 00000000 00000000 00000000 ................
    0x00450 02000000 00000000 04800200 1200F803 ................
    0x00460 00000000 00000000 00000000 01000000 ................
    0x00470 01000000 00000200 580A0000 00000000 ........X.......
    0x00480 49230000 00000000 01000000 00000000 I#..............
    0x00490 00000000 00000000 02000000 00000000 ................
    0x004A0 04800200 1200F903 00000000 00000000 ................
    0x004B0 00000000 01000000 01000000 00000200 ................
    0x004C0 600A0000 00000000 6D230000 00000000 `.......n#......
    0x004D0 01000000 00000000 00000000 00000000 ................
    0x004E0 02000000 00000000 04800200 12000104 ................
    0x004F0 00000000 00000000 00000000 01000000 ................
    0x00500 01000000 00000200 680A0000 00000000 ........h.......
    0x00510 6B230000 00000000 01000000 00000000 l#..............
    0x00520 00000000 00000000 02000000 00000000 ................
    0x00530 04800200 12800004 00000000 00000000 ................
    0x00540 00000000 01000000 01000000 00000200 ................
    0x00550 700A0000 00000000 47230000 00000000 p.......G#......
    0x00560 01000000 00000000 00000000 00000000 ................
    0x00570 02000000 00000000 04800200 1280F803 ................
    0x00580 00000000 00000000 00000000 01000000 ................
    0x00590 01000000 00000200 780A0000 00000000 ........x.......
    0x005A0 4C230000 00000000 01000000 00000000 M#..............
    0x005B0 00000000 00000000 02000000 00000000 ................
    0x005C0 04800200 1200F003 00000000 00000000 ................
    0x005D0 00000000 01000000 01000000 00000200 ................
    0x005E0 800A0000 00000000 4A230000 00000000 ........K#......
    0x005F0 01000000 00000000 00000000 00000000 ................
    0x00600 02000000 00000000 04800200 1280F903 ................
    0x00610 00000000 00000000 00000000 01000000 ................
    0x00620 01000000 00000200 880A0000 00000000 ................
    0x00630 53230000 00000000 01000000 00000000 S#..............
    0x00640 00000000 00000000 02000000 00000000 ................
    0x00650 04800200 1280FA03 00000000 00000000 ................
    0x00660 00000000 01000000 01000000 00000200 ................
    0x00670 900A0000 00000000 51230000 00000000 ........Q#......
    0x00680 01000000 00000000 00000000 00000000 ................
    0x00690 02000000 00000000 04800200 1200FA03 ................
    0x006A0 00000000 00000000 00000000 01000000 ................
    0x006B0 01000000 00000200 980A0000 00000000 ................
    0x006C0 55230000 00000000 01000000 00000000 U#..............
    0x006D0 00000000 00000000 02000000 00000000 ................
    0x006E0 04800200 1200FB03 00000000 00000000 ................
    0x006F0 00000000 01000000 01000000 00000200 ................
    0x00700 000A0000 00000000 57230000 00000000 ........W#......
    0x00710 01000000 00000000 00000000 00000000 ................
    0x00720 02000000 00000000 04800200 1280FB03 ................
    0x00730 00000000 00000000 00000000 01000000 ................
    0x00740 01000000 00000200 080A0000 00000000 ................
    0x00750 59230000 00000000 01000000 00000000 Y#..............
    0x00760 00000000 00000000 02000000 00000000 ................
    0x00770 04800200 1200FC03 00000000 00000000 ................
    0x00780 00000000 01000000 01000000 00000200 ................
    0x00790 A00A0000 00000000 5A230000 00000000 ........[#......
    0x007A0 01000000 00000000 00000000 00000000 ................
    0x007B0 02000000 00000000 04800200 1280FC03 ................
    0x007C0 00000000 00000000 00000000 01000000 ................
    0x007D0 01000000 00000200 A80A0000 00000000 ................
    0x007E0 62230000 00000000 01000000 00000000 b#..............
    0x007F0 00000000 00000000 02000000 00000000 ................
    0x00800 04800200 1200FD03 00000000 00000000 ................
    0x00810 00000000 01000000 01000000 00000200 ................
    0x00820 B00A0000 00000000 64230000 00000000 ........d#......
    0x00830 01000000 00000000 00000000 00000000 ................
    0x00840 02000000 00000000 04800200 1280FD03 ................
    0x00850 00000000 00000000 00000000 01000000 ................
    0x00860 01000000 00000200 B80A0000 00000000 ................
    0x00870 66230000 00000000 01000000 00000000 f#..............
    0x00880 00000000 00000000 02000000 00000000 ................
    0x00890 04800200 1200FF03 00000000 00000000 ................
    0x008A0 00000000 01000000 01000000 00000200 ................
    0x008B0 C00A0000 00000000 68230000 00000000 ........h#......
    0x008C0 01000000 00000000 00000000 00000000 ................
    0x008D0 02000000 00000000 04800200 1280FF03 ................
    0x008E0 00000000 00000000 00000000 01000000 ................
    0x008F0 01000000 00000200 C80A0000 00000000 ................
    0x00900 60230000 00000000 01000000 00000000 j#..............
    0x00910 00000000 00000000 02000000 00000000 ................
    0x00920 04800200 12000004 00000000 00000000 ................
    0x00930 00000000 01000000 01000000 00000200 ................
    0x00940 D00A0000 00000000 36230000 00000000 ........6#......
    0x00950 01000000 00000000 00000000 00000000 ................
    0x00960 02000000 00000000 04800200 1280F503 ................
    0x00970 00000000 00000000 00000000 01000000 ................
    0x00980 01000000 00000200 D80A0000 00000000 ................
    0x00990 82230000 00000000 01000000 00000000 .#..............
    0x009A0 00000000 00000000 02000000 00000000 ................
    0x009B0 04800200 12000604 00000000 00000000 ................
    0x009C0 00000000 01000000 01000000 00000200 ................
    0x009D0 F00A0000 00000000 70230000 00000000 ........p#......
    0x009E0 01000000 00000000 00000000 00000000 ................
    0x009F0 02000000 00000000 04800200 12800104 ................
    0x00A00 00000000 00000000 00000000 01000000 ................
    0x00A10 01000000 00000200 F80A0000 00000000 ................
    0x00A20 72230000 00000000 01000000 00000000 r#..............
    0x00A30 00000000 00000000 02000000 00000000 ................
    0x00A40 04800200 12000204 00000000 00000000 ................
    0x00A50 00000000 01000000 01000000 00000200 ................
    0x00A60 000B0000 00000000 76230000 00000000 ........v#......
    0x00A70 01000000 00000000 00000000 00000000 ................
    0x00A80 02000000 00000000 04800200 12000304 ................
    0x00A90 00000000 00000000 00000000 01000000 ................
    0x00AA0 01000000 00000200 080B0000 00000000 ................
    0x00AB0 74230000 00000000 01000000 00000000 t#..............
    0x00AC0 00000000 00000000 02000000 00000000 ................
    0x00AD0 04800200 12800204 00000000 00000000 ................
    0x00AE0 100B0000 00000000 100B0200 00000000 ................
    0x00AF0 100B0400 00000000 100B0600 00000000 ................
    0x00B00 100B0800 00000000 100B0000 00000000 ................
    0x00B10 100B0B00 00000000 100B0D00 00000000 ................
    0x00B20 100B1000 00000000 100B1200 00000000 ................
    0x00B30 100B1400 00000000 100B1600 00000000 ................
    0x00B40 100B1800 00000000 100B1000 00000000 ................
    0x00B50 100B1B00 00000000 100B1D00 00000000 ................
    0x00B60 100B2000 00000000 100B2200 00000000 .. .......".....
    0x00B70 100B2400 00000000 100B2600 00000000 ..$.......&.....
    0x00B80 100B2800 00000000 100B2000 00000000 ..(.......*.....
    0x00B90 100B2B00 00000000 100B2D00 00000000 ..,.............
    0x00BA0 100B3000 00000000 100B3200 00000000 ..0.......2.....
    0x00BB0 100B3400 00000000 100B3600 00000000 ..4.......6.....
    0x00BC0 100B3800 00000000 100B3000 00000000 ..8.......:.....
    0x00BD0 100B3B00 00000000 100B3D00 00000000 ..<.......>.....
    0x00BE0 100B4000 00000000 100B4200 00000000 [email protected].....
    0x00BF0 100B4400 00000000 100B4600 00000000 ..D.......F.....
    0x00C00 100B4800 00000000 100B4000 00000000 ..H.......J.....
    0x00C10 60000000 00400000 5D000000 01000000 `....@..^.......
    0x00C20 00000400 60000000 00020000 37303630 ....`.......7060
    0x00C30 354F4442 60FF0100 28000000 00000100 5ODB`...(.......
    0x00C40 00000000 00000000 28000000 00000000 ........(.......
    0x00C50 00000100 02303030 30300000 00000000 .....00000......
    0x00C60 00000000 F2000000 00000000 00000000 ................
    0x00C70 03000100 00000000 15000000 28FF0100 ............(...
    0x00C80 524F4B4B 4241434A 20574F52 4A205245 ROLLBACK WORK RE
    0x00C90 4B454153 45FFFFFF 0B000000 08FF0100 LEASE...........
    0x00CA0 000FBF5F 00003001 54002B00 FFFFFFFF ..._..:.T.,.....
    0x00CB0 0B000100 00000000 07000000 D8FD0100 ................
    0x00CC0 FF303839 336532FF 36376630 35323532 .0893e2.67f05252
    0x00CD0 36636335 31646139 31323032 32313030 6cc51da912022100
    0x00CE0 30302720 4F524445 52204259 20636DFF 00' ORDER BY cn.
    0x00CF0 00000000 B4178400 000000B4 17850000 ................
    0x00D00 0000B417 86000000 00B41787 00000000 ................
    0x00D10 B4178800 000000B4 17890000 0000B418 ................
    0x00D20 98000000 FFFFFFFF 0A000100 00000000 ................
    0x00D30 0B000000 70FD0100 000FBF5F 00003001 ....p......_..:.
    0x00D40 54002B00 FFFFFFFF 20202020 20202020 T.,.....       
    0x00D50 20202020 20202020 20202020 20202020                
    0x00D60 - 0x00D8F identical
    0x00D90 20202020 20202020 20206465 20202020           de   
    0x00DA0 20202020 20202020 20202020 20202020                
    0x00DB0 - 0x0118F identical
    0x01190 20202020 20202020 2020FFFF FFFFFFFF           ......
    0x011A0 0A000100 00000000 0B000000 F8F90100 ................
    0x011B0 000FBF5F 00003101 54002B00 FFFFFFFF ..._..1.T.,.....
    0x011C0 20202020 20202020 08005375 6D646179         ..Sunday
    0x011D0 20202020 20202020 20202020 20202020                
    0x011E0 20200600 5065726F 20202020 20202020   ..Zero       
    0x011F0 04005065 726F6574 68202020 20200700 ..Zeroeth     ..
    0x01200 4F6D6520 20202020 20202020 03004669 One         ..Fi
    0x01210 72737420 20202020 20200500 54776F20 rst       ..Two
    0x01220 20202020 20202020 03005365 636F6D64         ..Second
    0x01230 20202020 20200600 54687265 65202020       ..Three  
    0x01240 20202020 05005468 69726420 20202020     ..Third    
    0x01250 20200500 466F7572 20202020 20202020   ..Four       
    0x01260 0400466F 75727468 20202020 20200600 ..Fourth      ..
    0x01270 46697665 20202020 20202020 04004669 Five        ..Fi
    0x01280 66746820 20202020 20200500 53697820 fth       ..Six
    0x01290 20202020 20202020 03005369 78746820         ..Sixth
    0x012A0 20202020 20200500 53657665 6D202020       ..Seven  
    0x012B0 20202020 05005365 76656D74 68202020     ..Seventh  
    0x012C0 20200700 45696768 74202020 20202020   ..Eight      
    0x012D0 05004569 67687468 20202020 20200600 ..Eighth      ..
    0x012E0 4D696D65 20202020 20202020 04004D69 Nine        ..Ni
    0x012F0 6D746820 20202020 20200500 54656D20 nth       ..Ten
    0x01300 20202020 20202020 03005465 6D746820         ..Tenth
    0x01310 20202020 20200500 456B6576 656D2020       ..Eleven 
    0x01320 20202020 0600456B 6576656D 74682020     ..Eleventh 
    0x01330 20200800 5477656B 76652020 20202020   ..Twelve     
    0x01340 06005477 656B6674 68202020 20200700 ..Twelfth     ..
    0x01350 54686972 7465656D 20202020 08005468 Thirteen    ..Th
    0x01360 69727465 656D7468 20200000 466F7572 irteenth  ..Four
    0x01370 7465656D 20202020 0800466F 75727465 teen    ..Fourte
    0x01380 656D7468 20200000 46696674 65656D20 enth  ..Fifteen
    0x01390 20202020 07004669 66746565 6D746820     ..Fifteenth
    0x013A0 20200900 53697874 65656D20 20202020   ..Sixteen    
    0x013B0 07005369 78746565 6D746820 20200900 ..Sixteenth   ..
    0x013C0 53657665 6D746565 6D202020 09005365 Seventeen   ..Se
    0x013D0 76656D74 65656D74 68200A00 45696768 venteenth ..Eigh
    0x013E0 7465656D 20202020 08004569 67687465 teen    ..Eighte
    0x013F0 656D7468 20200000 4D696D65 7465656D enth  ..Nineteen
    0x01400 20202020 08004D69 6D657465 656D7468     ..Nineteenth
    0x01410 20200000 5477656D 74792020 20202020   ..Twenty     
    0x01420 06005477 656D7469 65746820 20200900 ..Twentieth   ..
    0x01430 54686972 74792020 20202020 06005468 Thirty      ..Th
    0x01440 69727469 65746820 20200900 466F7572 irtieth   ..Four
    0x01450 74792020 20202020 0600466F 75727469 ty      ..Fourti
    0x01460 65746820 20200900 46696674 79202020 eth   ..Fifty  
    0x01470 20202020 05004669 66746965 74682020     ..Fiftieth 
    0x01480 20200800 53697874 79202020 20202020   ..Sixty      
    0x01490 05005369 78746965 74682020 20200800 ..Sixtieth    ..
    0x014A0 53657665 6D747920 20202020 07005365 Seventy     ..Se
    0x014B0 76656D74 69657468 20200000 45696768 ventieth  ..Eigh
    0x014C0 74792020 20202020 06004569 67687469 ty      ..Eighti
    0x014D0 65746820 20200900 4D696D65 74792020 eth   ..Ninety 
    0x014E0 20202020 06004D69 6D657469 65746820     ..Ninetieth
    0x014F0 20200900 00000000 00000000 00000000   ..............
    .... <much more>
    It seems to contain some sql queries and other informations. Can I convert the file to a more readable format ? Is the content helpful ?
    The company I am working for is a SAP customer.
    Bye
    Claus

  • How can i find the printing program?

    hi
    i have sap script how can i find the printing program ?
    ami

    ami bardogo wrote:
    hi
    what is the different between the commands 'break' and 'break-point'
    thanks,
    ami
      h2 Breakpoints  h2
    Apart from being able to execute an ABAP program in the Debugger, you can also start the Debugger call by the choosing a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For more information, refer to the chapter Watchpoints.
    Breakpoint Variants
    The Debugger contains different breakpoint variants:
    Static
    A user-specific breakpoint is inserted in the source code as an ABAP statement using the keyword BREAK-POINT. A non user-specific breakpoint is set in the ABAP Editor using the BREAK user name statement.
    Directly set
    dynamic breakpoints
    Can be set in the ABAP Editor or the Debugger by double-clicking a line, for example. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    Breakpoints
    at statements
    The Debugger stops the program immediately before the specified statement is executed.
    Breakpoints
    at subroutines
    The Debugger stops the program immediately before the specified subroutine is called.
    Breakpoints at function modules
    The Debugger stops the program immediately before the specified function module is called.
    Breakpoints at methods
    The Debugger stops the program immediately before the specified method is called.
    Breakpoints at exceptions and system exceptions
    The Debugger stops the program immediately after a system exception, that is, after a runtime error has been intercepted.
    Static Breakpoints
    Static breakpoints are always user-independent if there is no specification of a user name. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application when program execution is always to be interrupted at the same place. For more information, refer to the chapter Static Breakpoints.
    In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.
    Dynamic Breakpoints
    Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints because you can deactivate or delete them at runtime. They have the following advantages:
    ·        You do not have to change the program code.
    ·        You can set them even when the program is locked by another programmer.
    ·        You can define a counter that only activates the breakpoint after it has been reached.
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For more information, refer to the chapter Dynamic Breakpoints.
    In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.
    Lifetime and Transfer of Breakpoints
    A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they remain in effect during the entire user session if they are saved by choosing the menu path Breakpoints ® Save in the ABAP Debugger. For more details on the subject of user sessions and modes, refer to Modularization Techniques in the ABAP keyword documentation.
    If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.
    If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging  under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.
    For further information on special breakpoints, refer to:
    Breakpoints at Statements
    Breakpoints at Subroutines
    Breakpoints at Function Module Calls
    Breakpoints at Methods
    Breakpoints at System Exceptions
    h2 page  break h2
    WINDOW TYPES
    When defining a layout set window, you must select a window type for the window. You can choose between three types:
    • Constant windows (CONST)
    • Variable windows (VAR)
    • Main windows (MAIN)
    CONSTANT WINDOW
    A window of type CONST has the same contents and size on all layout set pages, on which a corresponding page window is defined. This allows the processing of the window contents to be optimized internally.
    Page windows whose allocated window is of type CONST must have the same size throughout the layout set. If a window of type CONST is full, all remaining text the application program wants to output in this window, is lost. Constant windows do not trigger a page break. In other words: all text exceeding the window size is simply truncated.
    VARIABLE WINDOW
    The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different layout set pages.
    As far as the processing of the window contents is concerned, the system currently treats constant and variable windows alike. The only difference is that constant windows have the same size throughout the layout set.
    MAIN WINDOW
    Each layout set must have one window of type MAIN. Such a window is called the main window of the layout set. For SAPscript layout sets, the main window has a central meaning:
    • It controls the page break.
    • It contains the text body that may cover several pages.
    • It allows to fix text elements at the upper and lower margins of the allocated page window (for example, for column headings).
    As soon as a window of type MAIN is full, SAPscript automatically triggers a page break and continues to output the remaining text in the main window of the subsequent page. Page windows of type MAIN have the same width throughout the layout set. The SAPscript composer thus avoids reformatting of the text after each page break.
    If a page does not have a main window, the system implicitly processes all other windows of the page and continues with the subsequent page. This page must not call itself as subsequent page (recursive call), since this would produce an endless loop. In such a case, SAPscript terminates the output after three subsequent pages.
    HOW THE COMPOSER WORKS
    The composer or layout set processor is the central formatting module for the print output. It prepares the texts for the different output devices by using the allocated styles or layout sets.
    Processing a layout set happens in a certain order. You must know some facts concerning the different window types, the setting of subsequent pages, or the dynamic control from within the print program.
    Page control in layout sets
    Define subsequent page statically
    Define subsequent page dynamically
    Format a layout set page
    PAGE CONTROL IN LAYOUT SETS
    SAPscript automatically triggers a page break as soon as the main window of one page is full. To be able to execute the page break, the system must know on which subsequent page to continue outputting the text. You can specify the subsequent page either statically when defining the layout set, or you can set the subsequent page dynamically during layout set output.
    If the subsequent page is not specified, SAPscript automatically terminates printing, thereby ignoring any other output statements of the application program.
    DEFINE SUBSEQUENT PAGE STATICALLY
    You define the subsequent page statically with the layout set maintenance transaction. First, specify the start page in the layout set header. The system automatically calls this page whenever the layout set is started. With this page, or, more correctly, with the page window of this page, the text output starts. For each page, specify the subsequent page in the page definition. After a page break, the system continues text output on the subsequent page defined for the last page. By specifying start page and subsequent pages, you can define a page sequence.
    DEFINE SUBSEQUENT PAGE DYNAMICALLY
    The page sequence set in the layout set definition can be changed by the application program dynamically at runtime. If you want the layout set to start with a page other than the one defined in the layout set header, specify the desired start page using the parameter STARTPAGE when you call the function module START_FORM. However, this new start page is valid only for the current call of the function module.
    If you want to break to a subsequent page other than the one specified in the page definition, use the control statement NEW-PAGE to set the name of the new page.
    NEW-PAGE .
    NEW-PAGE ends the output on the current page. The new subsequent page is only valid for the current call of the control statement. You can either include the control statement explicitly into the text of a text element or pass it to the layout set output using the function module CONTROL_FORM.
    FORMAT LAYOUT SET PAGE
    The process of formatting the output is controlled by the text contents in the BODY area of the main window. If the main window is completely filled, or if the control statement NEW-PAGE appears in the main window, the system executes a page break. Only at this point in time the system formats the contents of the windows of the other types and replaces the variables with the current values.
    For each other window, the system first outputs the default text element, if it exists. Then it processes and formats the list of the active text elements of this window, which you set using the function module WRITE_FORM with the parameter FUNCTION (SET, APPEND, DELETE). Any text that does not fit into the page window is truncated.
    As a consequence to this processing order of the composer, the reservation of space for the TOP and BOTTOM areas must be made beforehand. If the BODY area of the main window already contains text, a new text output to the TOP area does not appear on the current page but on the subsequent page in the TOP area. The same applies for the BOTTOM area. If the BODY area is filled to such an extend that the new BOTTOM text no longer fits into the current main window, this text appears on the subsequent page in the BOTTOM area.
    A frequent error in application programs is that for the subsequent page (for example, NEXT) of a layout set no main window is defined. If the formatted text of the previous page did not fit into the corresponding main window , the composer searches the subsequent pages for a main window to output the text remainder. However, if the subsequent page of NEXT is NEXT again, the composer encounters an endless loop.
    To be able to create correct page breaks in longer text, you should define a main window on each layout set page.
    LAYOUT SET CONTROL
    To output SAPscript layout sets, in the print program you must always start the output with OPEN_FORM and end it with CLOSE_FORM. The function module OPEN_FORM initializes the SAPscript composer and opens the specified layout set for subsequent output. The system combines all output for this layout set up to the CLOSE_FORM to one print request. If CLOSE_FORM is missing, nothing will be printed.
    To output data in a layout set, you must use the SAPscript function modules WRITE_FORM, WRITE_FORM_LINES, and CONTROL_FORM. You can use these function modules any number of times in any order between opening and closing a layout set.
    You cannot use the ABAP/4 statement WRITE to write output to a SAPscript layout set.
    Several print requests
    Start a layout set again
    Switch layout sets
    Find layout sets
    SEVERAL PRINT REQUESTS
    Within one transaction, you can open and close several layout sets using OPEN_FORM and CLOSE_FORM, however not simultaneously. You can use parameters in the OPEN_FORM to control whether the output is stored in the same print request. But also the SAP spool decides, depending on several plausibility checks, whether new output is appended to an existing print request or whether to create a new print request anyway.
    CALL FUNCTION 'OPEN_FORM'
    CALL FUNCTION 'CLOSE_FORM'
    CALL FUNCTION 'OPEN_FORM'
    CALL FUNCTION 'CLOSE_FORM'
    You cannot combine ABAP/4 list output and SAPscript output in one print request.
    START A LAYOUT SET AGAIN
    Usually a print program does not print only one urging letter or one account statement, but several layout sets for different customers. To have the output for each customer begin with the start page of the layout set, you must start the current layout set again and again.
    To start a layout set again, you must first end the current layout set and then open the layout set again. Within one print request, first call the function module END_FORM. It executes the final processing for the current layout set. Then start the layout set again using START_FORM. Output then begins again on the start page of the desired layout set.
    CALL FUNCTION 'OPEN_FORM'
    CALL FUNCTION 'START_FORM'
    CALL FUNCTION 'END_FORM'
    CALL FUNCTION 'START_FORM'
    CALL FUNCTION 'END_FORM'
    CALL FUNCTION CLOSE_FORM
    If you use START_FORM and END_FORM, you must not specify a layout set for OPEN_FORM. However, in this case you can use the SAPscript output functions only after opening a layout set with START_FORM.

  • How can we find the most usage and lowest usage of table in Sql Server by T-SQL

    how can we find the most usage and lowest usage of table in Sql Server by T-SQL
    The table has time stamp column
    StartedOn datetime
    EndedOn datetime

    The Below query has been used , but the textdata column doesnot include the name of the table ServiceLog.
    SELECT
    FROM
    databasename,
    duration
    fn_trace_gettable('F:\Program
    Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\log_148.trc',
    default)
    WHERE
    DATABASENAME='ZTCFUTURE'
    AND TEXTDATA
    IS
    NOT
    NULL
    --AND TEXTDATA LIKE 'SERVICE%'
    order
    by cpu
    desc; 

  • I am trying to download xfinity tv go app. I can not find it in my App Store and can not download it from the comcast website. All I get is a blank screen in the App Store. My Apple ID is associated with a Canadian address. How can I find the app?

    I am trying to download xfinity tv go app. I can not find it in my App Store and can not download it from the comcast website. All I get is a blank screen in the App Store. My Apple ID is associated with a Canadian address. How can I find the app?

    Its possible the App is not available in the Canadian store if the link doesn't work for you.
    https://itunes.apple.com/us/app/xfinity-connect/id320788270?mt=8

  • How can I find the URL for an iCal calendar in iCloud so I can make a link to it on a web page.

    I have a single iCal calendar that I want people to access through my webpage.  How can I find the URL so that they can view the calendar without having to subscribe to it.  I converted to iCloud from .Mac and I can see that changes to this calendar are not showing up.

    Mmmh.. i see... I don't know wether it is possible for people just check calendars without subscribing to them... I have been sharing some calendars in my website (maybe you can have a look at it in order to check wether it could be a possible solution for you)
      http://web.me.com/andreabruschi/englishplanet/English_Courses.html
    Cheers
    Andrea

  • How can I find the location of an app on my iPad 2?

    How can I find the location of an app on my iPad 2? The app comes up with a search, but that seems to be the only way to find it. I just installed the app today, but I can't figure out where it is. It has a pretty distinctive icon, and I've looked through all of my apps and even in folders (even though I don't know how it would have gotten there). I want to put it in an appropriate folder under the right subject, but I can't find it to do this. I can use the app, since I can find it through a search though. I have a lot of apps, but I looked very carefully and can't find it. Is there a way to ask my iPad to locate it for me? It's a $25 app and one I plan to use regularly, so I want it located in the folder of my choice.This problem makes we wonder if I have other "missing" apps, apps that I could  find if I happened to think to search for them, but that don't appear to be on my iPad (even though they actually  are).

    You were right about the homescreens. I had turned my iPad off for the night with less than three full homescreens of loose apps, those not in folders. When I turned the iPad on this morning to try your suggestions, I had five full pages of loose apps. They just appeared when I restarted, and there was the app I was looking for, easy to find. Last night I was deleting apps I decided I wouldn't use, organizing useful apps into folders, and making sure I had as few pages as needed by making sure the gaps made by the moved/deleted apps were closed. The missing apps didn't show up at that point; I was just left with fewer than 11 pages. The apps only showed up when I restarted this morning. There were almost three extra pages of apps that weren't there last night. I know there must be other things missing, since all of the pages are full. So I tried your suggestion in iTunes. I connected my iPad, found an app in the alphabetical list on the left, and double clicked it. This brought me to the app's homescreen (and its home folder when applicable), the place where it was located. In order to identify which page that was, I had to scroll through the screen shots of the homescreens that was below the homescreen that was showing until I found the homescreen whose number was in white. Then I could count the pages on my iPad until I got to that page. I'll have to delete more apps and organize more into folders to see what else might show up. There are just too many apps available for special education, and I'm in the process of figuring out which are the best for my needs. Thanks so much!

Maybe you are looking for

  • Problem with brush definitions

    Hello: I have just started using Illustrator but I do have some experience with PS. My OS: Windows 7 64bit So, I have been learning my way around and was playing with the Brush tool but when I went to reset the brush to Basic under Brush Definitions

  • IDOC reprocessing with new conversion rules

    Hi All, we've created IDOCs and after the creation the conversion rules are changed. Now we want to reprocess the IDOC's and in the reprocessing we want to use the new conversion rules. I've tried just reprocessing, I also tried WE19, but with these

  • Java Web Service/Eclipse/Tomcat v5.5/Axis v1.4

    I am developing a Java web service in Eclipse for deployment on Tomcat v5.5 and Axis v1.4 . When I run a web service client I've developed to test the web service I get the following error: Jan 23, 2009 10:27:55 AM org.apache.axis.InternalException <

  • CP6 Powerpoint Hi Fidelity Some Graphics Missing!

    Hi, I am so frustrated.....Have been using CP a lot since cp4 and am very experienced. I have a PPTX with animations. I imported into CP6 not usin HiF and everything worked fine but the HTML5 output was missing the graphics altogether. So I switched

  • Speeding up youtube video sound distortion

    when i go to speed up youtube videos cause i have so many subscriptions speeding them up saves time and most of them i can without losing anything but lately the sound at 2x gets choppy and above that is impossible to watch i know it seems an odd com