Table Containing Details of Program Names that have errors

hi,
As we can get the Dump analysis in ST22, i want to get the names of the programs that are shown up here. i.e, which table holds the data that contains the names of the programs that have errors or exceptions.

Hi Harsha,
just check the tables DD02L and DD03L 
HOPE IT WILL HELP YOU
Regards
Rahul sharma

Similar Messages

  • Which table contains function module program name

    Hi,
    Which table contains function module program name.
    Regards,
    raj

    Hi,
    We have one function module called 'FUNCTION_INCLUDE_INFO'.
    Where u ll get the program name to which it belongs to, function group and the include number. (e.g if the function group program name contains 9 function modules and ur function module  is in 3rd include then it will return the include name to which it belongs )

  • Query for retreiving table names that have the same data

    Hi,
    Does anybody know how to retreive all the table names that have the same data in their respective tables but i dont know the table names or its fields. Is there any possible query to perform this action???
    Thanks in Advance,
    Balaji.

    What about...
    WITH manager_list AS
    SELECT name,
            LTRIM(MAX(SYS_CONNECT_BY_PATH(id,','))
            KEEP (DENSE_RANK LAST ORDER BY curr),',') AS employees
    FROM   (SELECT m.name,
                    e.id,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) AS curr,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) -1 AS prev
             FROM   manager m,
                    join_table jt,
                    employee e
      WHERE m.id           = jt.manager_id
      AND   jt.employee_id = e.id
      AND   m.name = :P_MANAGER)
      GROUP BY name
      CONNECT BY prev = PRIOR curr AND name = PRIOR name
      START WITH curr = 1
    ), all_list AS
    SELECT name,
            LTRIM(MAX(SYS_CONNECT_BY_PATH(id,','))
            KEEP (DENSE_RANK LAST ORDER BY curr),',') AS employees
    FROM   (SELECT m.name,
                    e.id,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) AS curr,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) -1 AS prev
             FROM   manager m,
                    join_table jt,
                    employee e
      WHERE m.id           = jt.manager_id
      AND   jt.employee_id = e.id)
      GROUP BY name
      CONNECT BY prev = PRIOR curr AND name = PRIOR name
      START WITH curr = 1
    SELECT a.*
    FROM   manager_list m,
           all_list a
    WHERE  m.employees = a.employeesWould be easier in 11g, but I don't have an installation here so this is based on 10g.
    Cheers
    Ben

  • Which HR table has details of subordinates names under a particular person?

    Which HR table has details of subordinates names who are under a particular person?
    That is>>I need to know 'I have to display all the employes working under a particular person' how can I do it??
    Regards,
    Shashank.

    Look at infotype 1001, where objects are linked
    <b>About the Relationship Infotype (1001)</b>
    <b>Definition</b>
    Infotype, which defines the Relationships between different objects.
    <b>Use</b>
    You indicate that a employee or user holds a position by creating a relationship infotype record between the position and the employee or user. Relationships between various organizational units form the organizational structure in your enterprise. You identify the tasks that the holder of a position must perform by creating relationship infotype records between individual tasks and a position.
    Creating and editing relationship infotype records is an essential part of setting up information in the Organizational Management component. Without relationships, all you have are isolated pieces of information.
    Look also at <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/HRINF/HRINF.pdf">HR Infotypes</a> for a detailed list of infotypes.
    Regards

  • Cannot load programs they either have error or you open the app and it returns to main menu

    Cannot load programs they either have error 606 or you open the app and it closes and goes to main screen

    Best to do a soft restart, <Hold down the "off" key on top and the "home" button at the bottom until it resets and you see the apple logo. It usually helps with those issues.

  • Table containing variants and programs associated

    Which table contains variants (visualization) and its program associated ?

    you will find  variants and program names in TVARV and TVARC. Here u will not get the data for variants.
    If you want data for particular variant go for FM:
    RS_VARIANT_VALUES_TECH_DATA
    REPORT = your programe name
    VARIANT = variant name
    In TECHN_DATA u will get the data for that variant.
    hope this is helpful.
    Reward suitably if helpful
    regs,
    ags..

  • Want name of table which stores all program names

    Hi all,
    I want to find all the custom programs (all Z programs)in the system.
    Can any one tell me which table stores all the programs, t.code and stuff like that so that i can search for all the Z programs in it.
    i tried TSTC and TSTCT, however I dont get as many entries I get when i do an F4 help search in SE11.
    Thanks
    CMV

    Hi,
    Just wrote this code. This will get all the Y/Z programs .
    [code]
    REPORT  zztest_prd                              .
    TABLES : trdir.
    DATA : BEGIN OF it_prg OCCURS 0,
           progname LIKE trdir-name,
           subc     LIKE trdir-subc,
           END OF it_prg.
    DATA: genflag TYPE genflag.
    SELECTION-SCREEN BEGIN OF BLOCK abc WITH FRAME TITLE test.
    SELECT-OPTIONS : scnam FOR trdir-cnam.  "Author name
    PARAMETERS     : notemp AS CHECKBOX.    "No temporary objects
    SELECTION-SCREEN END OF BLOCK abc.
    INITIALIZATION.
      test = 'Download Z/Y Programs'.
    START-OF-SELECTION.
      SELECT progname subc FROM reposrc INTO TABLE it_prg
                      WHERE   (  progname LIKE 'Z%' OR progname LIKE 'Y%' )          "User name space
                        AND   ( subc = '1'          OR subc = 'M' OR subc = 'I' )    "Executable(1),Module(M),Include(I)
                        AND  cnam IN  scnam.                                         "Author
      IF notemp IS NOT INITIAL.
        LOOP AT it_prg.
          SELECT SINGLE genflag FROM tadiv
                        INTO genflag
                        WHERE pgmid = 'R3TR'
                          AND object = 'PROG'
                          AND obj_name = it_prg-progname
                          AND devclass = '$TMP'.
          IF sy-subrc = 0.
            DELETE it_prg.
          ENDIF.
        ENDLOOP.
      ENDIF.
      LOOP AT it_prg.
        IF sy-tabix EQ 1.
          FORMAT COLOR COL_HEADING ON INTENSIFIED ON.
          WRITE : /2(40) 'ABAP program name',
                  45(10) 'Program type'.
          FORMAT COLOR COL_HEADING OFF INTENSIFIED OFF.
          SKIP 1.
        ENDIF.
        FORMAT COLOR COL_NORMAL ON INTENSIFIED OFF.
        WRITE : /2(40)  it_prg-progname,
                 45(10) it_prg-subc.
      ENDLOOP.
    [/code]
    Hope this helps you.
    Regards,
    Arun Sambargi.

  • What Oracle Table contains Partition Key Field Name?

    What Oracle table/view maintains the partition key field name?
    All_Tab_Partitions does not appear to maintain such information.
    When I use Toad -> Schema -> Tables -> Partitions, it lists the partition key field name that the partition is based.
    Thank You

    all_part_key_columns
    or
    USER_part_key_columns
    Edited by: OrionNet on Dec 5, 2008 3:56 PM

  • Why do I have program folders that have a slash through them?

    I have folders with programs in them with slash that says that the programs can't be run on Mac Book Pro. .....Mountain Lion
    Do I delete them?
    Crazy....this laptop is 1 month old and I had apple transfer from my old laptop.

    Too many conflicting details, so we have to get the facts straight before solving any problems:
    So the only program that has the slash across it that you need to work is The Print Shop?  You have no need for any other non-functioning older programs...
    Under the Apple menu of both computers, go to About This Mac... then More Info... then System Report and tell us the Model Name, Model Identifier and Processor Name for BOTH computers:
                                  [click on image to enlarge]
    What do you mean by "reset old one to factory settings?"
    MadisonsMom wrote:
    Do you think it is still running on my new Mac Book Pro because it started in Leopard and was data transfered over from an APPLE tech?
    This new MAC BOOK is only 3 weeks old and has Mountain Lion....
    Which Mac had Leopard running on it: the old one or the new one?  A brand new MacBook will not run Leopard...
    What is the reference to Tiger 10.4.7 (which predates Leopard 10.5) in your profile?
    Do you have The Print Shop manual?  Do you know the version number?  Since it runs, check in the Menus to find a HELP or ABOUT menu and get the version number for us.
    So, if I understand you now, it works on your Mt. Lion MacBook but not on your Lion MacBook and your desire is to have it work on both.  Explaining the mystery of why it works in Mt. Lion and not in Lion will cost you extra!

  • Installing JDev on a Mac with volume names that have spaces

    I'm stuck on trying to install JDev on a mac. I have two volumes (factory installed) - Macintosh HD and Macintosh HD 2.
    I created a symbolic link and can use that in the initial screen where I set the Middleware Home Directory and get past that fine. However, after I select the jdk, I get to the 'Choose Product Installation Directories' screen and it shows the full path (not using the symbolic link). These fields are greyed out, so I can't change the paths to use my symlink here. When I click 'Next' I get the 'The directory path must not contain spaces' error.
    Any help would be greatly appreciated!!

    "though jdev is the first application I've run into after developing for a couple years on a mac that I ran into this problem"
    In reality JDev isn't a native Mac OSX application, it's a linux Java application in disguise, so it's not a smart ".app" install like used elsewhere on the Mac. Thus why it uses the full volume paths I suspect.
    In thinking about this issue this morning I guess another option is to rename the hard drives. This isn't ideal if you've already installed a lot of software, usually something (like JDev) has hardcoded the volume path. Also be warned a quick Google shows that some people have trouble booting their Mac after such a change (though it appears to be repairable with some sleuthing).
    CM.

  • Why when i finish to create apple id done after that i go to install some program on app store i cant do that have error cloud not sign ..how to fix this problem and what happen

    how to fix this problem i cant install program from app store ,,,show error in cloud not sing in  what this mean

    Leigh...
    but cannot do this because I cannot access Mac App Store
    If you can't access the App Store from the Apple menu, Dock, or Applications folder installing the Mac OS X 10.6.8 Update Combo will reinstall the App Store for you.
    It's ok to do this even you are already running v10.6.8.
    Plants vs. Zombies, and that is all for additional software on here
    FYI:  Some third party software can cause issues with the App Store >   Mac App Store: Sign in sheet does not appear, or does not accept typed text
    Apple is not responsible for incompatibility isssues with third party software.

  • I have downloads that have errors in them but the music is not in the cloud

    I downloaded an album in Itunes but the download was interrupted. Much of the album is missing but the download status is complete, It does not have the "Cload" icon attached to it yet, so I can't download it from the cload. What can I do to fix this?

    Hello there dmedara,
    I believe I have the perfect article for you. Named iTunes: How to resume interrupted iTunes Store downloads it can be found here http://support.apple.com/kb/ht1725?viewlocale=ko_kr.
    Resuming downloads from a computer
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    Click the "Check Downloads" button.
    Click the Resume or Resume All button, or the resume arrow to resume the download.
    If you believe that the item downloaded completely but it is not appearing in the Purchased playlist, click Library on the left side of iTunes to see if the item appears there.
    You can also check your purchases to download it from there as well.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    Sterling

  • Rows that have errors in a batch

    How does one determine which insert/update/delete statement in a batch
    has a sql error? I am using the Oracle model of batching which is working fine but
    when I get an error I don't know which row
    had the error.

    Hello there dmedara,
    I believe I have the perfect article for you. Named iTunes: How to resume interrupted iTunes Store downloads it can be found here http://support.apple.com/kb/ht1725?viewlocale=ko_kr.
    Resuming downloads from a computer
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    Click the "Check Downloads" button.
    Click the Resume or Resume All button, or the resume arrow to resume the download.
    If you believe that the item downloaded completely but it is not appearing in the Purchased playlist, click Library on the left side of iTunes to see if the item appears there.
    You can also check your purchases to download it from there as well.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    Sterling

  • What is feature about programing on 10g that have been deprecated on 11g?

    Hi All
         I knew just about new feature and enhancement on 11g but I don't know about programming feature that have been deprecated or obsoleted on 11g.
         Because my client concerned If they will upgrade to 11g, What have source codes been impacted or need to be rewritten?
         Updated : I opened SR for this question already if I got any information, I will share to you all ASAP.
    Thank you for advance.
    Hiko

    Well, I know at least one 10g behavior that changed in 11g (and it is documented). In 10g XML extract method automatically applied pretty-print:
    SQL> select  *
      2    from  v$version
      3  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    SQL> set long 1000
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  value(x).extract('/parameters') res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters>
      <parameter name="result">
        <value>success</value>
      </parameter>
      <parameter name="showBirthday">
        <value>false</value>
      </parameter>
      <parameter name="_wrCommand">
        <value>clearCacheBefore</value>
      </parameter>
    </parameters>
    RES
    SQL>
    And on 11g XML method will not pretty-print. Using XMLSERIALIZE, will:
    SQL> select  *
      2    from  v$version
      3  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> set long 1000
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  value(x).extract('/parameters') res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters><parameter name="result"><value>success</value></parameter><paramete
    r name="showBirthday"><value>false</value></parameter><parameter name="_wrComman
    d"><value>clearCacheBefore</value></parameter></parameters>
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  xmlserialize(document extract(value(x),'/parameters') indent size = 2) res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters>
      <parameter name="result">
        <value>success</value>
      </parameter>
      <parameter name="showBirthday">
        <value>false</value>
      </parameter>
      <parameter name="_wrCommand">
        <value>clearCacheBefore</value>
      </parameter>
    </parameters>
    RES
    SQL>
    SY.

  • Extraction from table that have currency ref

    Hi gurus,
    I’m trying to extract data from the table XX where the table contain field “Expenses” This field is referencing to Accounting Document Header (BKPF) table. This prevents me from creating a standard extractor to extract directly from the table XX. Can anyone please help me to solve this issue? Is there any work around for this issue?
    Thanks in advance

    Hi Saravanan,
    2 options to overcome this problem:
    1. Create the datasource on the table excluding all the amount fields that have reference to other tables. Once you create the DS, append these fields and also append a currency field to the extract structure. Provide the curreyncy field in the extract structure as the reference to these amount fields. You will need to write code in User exit to populate these amount and currency fields which should not be tough.
    2. Create a structure and create a FM DS. This way, you can select all the data at once and the control is in your hands.
    The only problem with the second method is that delta is to be handled by the developer. Hope this helps.
    Thanks and Regards
    Subray Hegde

Maybe you are looking for

  • Firefox freezes when there are pop up boxes or any box you have to click on to type in information e.g Facebook comments, Firefox About window

    I have both the latest Firefox 3.6.12 and Adobe Flash. Firefox will freeze up for no apparent reason. It's most commonly happened when there's a box that needs text information adding into it (like the comments box on Facebook pages) or when a smalle

  • Add column in FBL3N (report)

    How do i insert a new field in transcation report FBL3N (G/L Account Line Item Display), that column is a sales order value.? Regards Carlos Orden

  • Acrobat Pro 9.0- Edits don't stick

    I often need to make adjustments to a PDF created by an automatic accounting process, and then email it to someone else outside my organization. Typically, it involves placing a solid white block (locked) over existing text, and typewriting over that

  • SFTP Adapter Stops picking files intermittently

    We are having issues with sftp. In the BPEL process we are polling for files from a sftp location. When we deploy this process, it picks the files perfectly but after some time(couple of hours to few days) it stops polling. We have seen in the logs t

  • Several Iweb and godaddy questions.

    Hello Folks: Just to give you an idea of my proficiency with web design, I'm the equivalent of a student pilot who just soloed. Just enough knowledge to be dangerous and a threat to mankind. Here are my questions: 1. How do I use text editor or word