Witch tables store information about targets and errors

Hello,
I want to create PL/SQL procedure that will insert strings in my own table statistics when Grid control sent alert via e-mail.
Example:When grid control send e-mail about istance down my procedure insert string like
DATE |TARGET_NAME|TARGET_TYPE|MESSAGE
What repository tables should i refer to get this values?
Or what tables grid control use to generate e-mail message body?

Take a look thru the docs .. its all there ...
an example of one of my queries
select *
from mgmt$alert_history
where alert_state != 'Clear'
and a.target_type = 'host'

Similar Messages

  • Which SNP table store information about LoadPlan and scenario within it.(parallel or serial)

    I've to query when I save my loadPlan for and scenario within it along with information how those scenario execute either parallel or serial.
    Fetch information even before they start.
    Also can Two scenario or LoadPlan have same name in single work repository.

    You can get the information from repository documentation on oracle support - https://support.oracle.com/epmos/faces/DocumentDisplay?id=1903225
    Names must be unique for load plans, same for scenarios although they can be versioned.

  • Where can I find information about exceptions and errors?

    I'm new to Java and sometimes run into errors that I don't understand. Is there a list of common errors somewhere that I could look at to at least get a general idea of what's causing my problem?
    for instance:
    I'm writing a little program where the user inputs a number and depending on their input a message is displayed. I'm using java.awt.*, java.awt.event.*, & javax.swing.* for my events, buttons, and other goodies. My program compiles & I can execute my main but when I click on the button that grabs the input I get the following errors.
    java.lang.NullPointerException
         at Horoscope$ButtonHandler.actionPerformed(Horoscope.java:44)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    I'm not asking for anyone to solve this for me. It's critical that I learn how to troubleshoot and figure out a solution. I was just wondering if there was a site or link on the web that generally discusses what these (and other) errors mean. Or if anybody could tell me what they mean?

    The Java API documentation is the first place to look. Each exception or error is a class. For instance, information on java.lang.NullPointerException is in the API for the java.lang package, toward the bottom.
    For more than that, just search the internet for the name of the exception/error.

  • PPOSE: tables store information about users assigend Purch. group

    I want to know all users belonging to a specific Purchase Group EBAN-EKGRP given in the Purchase Requisition. I want to find users belonging to that group. In which tables containing these assignments.
    Thanks for your help.
    CNU

    HRP1000 – Purchase group
    HRP1001 – User’s details

  • Document from file - how better store information about document?

    I have a text file that contains information about documents (content from groups than define the document - one row is one document). Every group content from fields (from 10 to 70 in every group). Document consist of 9 groups. In one documen can difference number of groups (> 1 group). E.g. one document can have 3 group1, 2 group6. In another document 2 group9, 1 group 6 and so on. I need to store document in DB and must edit document (by JFrame). To store document I use object MyDocument to store information about document.
    3 solutions:
    1. Store every group as list from hastables
    public class MyDocument {
       private ArrayList<Hashtable<String, String>> group1;
       private ArrayList<Hashtable<String, String>> group2;
       private ArrayList<Hashtable<String, String>> group3;
       private ArrayList<Hashtable<String, String>> group4;
       private ArrayList<Hashtable<String, String>> group5;
       private ArrayList<Hashtable<String, String>> group6;
       private ArrayList<Hashtable<String, String>> group7;
       private ArrayList<Hashtable<String, String>> group8;
       private ArrayList<Hashtable<String, String>> group9; 2. Store all groups as one list from hashtables
    public class MyDocument2 {
      private ArrayList<Hashtable<String, String>> allGroups;
    } 3. Store groups as lists consist from individual objects (MyDocumentGroup1, MyDocumentGroup2 and so on.)
    public class MyDocument3 {
       private ArrayList<MyDocumentGroup1> group1;
       private ArrayList<MyDocumentGroup2> group2;
       private ArrayList<MyDocumentGroup3> group3;
       private ArrayList<MyDocumentGroup4> group4;
       private ArrayList<MyDocumentGroup5> group5;
       private ArrayList<MyDocumentGroup6> group6;
       private ArrayList<MyDocumentGroup7> group7;
       private ArrayList<MyDocumentGroup8> group8;
       private ArrayList<MyDocumentGroup9> group9;
    public class MyDocumentGroup1 {
       private ArrayList<Hashtable<String, String>> group1;
    public class MyDocumentGroup9 {
       private ArrayList<Hashtable<String, String>> group9;
    }What solutions is better? Or maybe has another solution?

    Maybe better to store one document in ONE HashMap
    public class M2Document {
         private HashMap<String, String> data = null;in the next format:
    -------------key ---------value----------
    GroupID_FN | some value
    where, GroupID is ID of group, FN - field number
    example:
    -------------key ---------value----------
    Group1_1 | some value
    Group1_2 | some value
    Group2_1 | some value
    Group2_2 | some value
    Group3_1 | some value
    Group3_2 | some value

  • Comprehensive Information about User and Objects

    Hello,
    This is on 9i
    Which tables /views I can use to derive following information?
    1.Owner Name/User Name
    2.Objects owned by the user
    3.Privileges assigned
    4.Roles assgined
    5.Whether user has admin privileges
    6.whether user is grantor to other user
    7.whether user is grantee by other user
    8.tables privileged
    9.columns privileged
    10.whether user has ISDBA/ISOPER roles
    11.recent login attempts
    12.last password reset date
    Thanks,
    R

    This is kind of an odd forum post, especially given that you listed twelve general questions. It almost seems like a homework assignment :)
    With that in mind I'll give you the general instructions that you should follow before posting any other questions on the forum.
    Go to http://tahiti.oracle.com
    Then click on your version. This will bring you to all the documentation for the version you have chosen. In this case the following books may be a good place to start:
    Database References (this lists all the views in the database)
    Administrator's Guide (will have information about permissions and other administrative tasks)
    Security Guide
    HTH!

  • I need information about ESS and Training and Work Experience

    I need information about ESS and Training and Work Experience.
    Anyone know if  there is something inside of the component ESS about Training and Work Experience (infotypes 22 and 23)?
    I appreciate information.
    Thanks.

    Marciano,
    check this documentation
    http://help.sap.com/saphelp_erp2005/helpdata/en/4d/c19ce6ef2842258283afc35a54172a/frameset.htm
    Thanks
    Bala Duvvuri

  • Which table stores all development class and names of programs

    Hi All,
    can any one tell me which table stores all development classes and programs we made.

    thanks for the answer , i got info also.
    TADIR is also one table in which you can find out the prog names and dev class.
    check table for dev class is TDEVC.

  • Nation advanced search on my IMac, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of

    I just caught a thing called nation advanced search on my iMac computer, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of it? What does can it do to my data and is it really a spyware? I just found information in youtube, that it is a spyware, and that it has to be removed, but the information they give for the removal is just working for PCs not for Macs.
    Please help!

    Thank you all for the friendly assistance provided.
    I have found a solutiton to the problem I was having.  I hope that many more can benefit from the information I will provide.
    I started at Finder, then went to GO selected COMPUTER and then Machintosh HD, then Library, Scripting Additions folder and trashed all that was there. This is what worked for me, if you choose to not delete your content its up to you.  Happy Computing.
    God Bless!!
    This solved my question 

  • I know the ipad to download content. Ex: Facebook, asking me much information about me and where I live. I want also to know if the download I came to pay bills than download

    I know the ipad to download content. Ex: Facebook, asking me much information about me and where I live. I want also to know if the download I came to pay bills than download

    I'm sorry, I don't understand what you're asking.
    Facebook always wants to know too much, but you can ignore those prompts, or lie to it if you want. You'll notice that a lot of people work at 'noneofyourbusiness'.

  • What is the latest information about hardware and ...

    Hello everyone,
    Please tell me, What is the latest information about hardware and software upgrade...?

    That would be the Mac Pro 4,1 model released in 2009. I would add that if you are buying one, that model is superior to the previous 2008 model and allows much larger and cheaper memories.
    Mac Pro
    Date introduced
    Original Mac OS X included
    (see Tips 1 and 3)
    Later Mac OS X included
    (see Tip 1)
    Mac OS X Build(s)
    (see Tip 2)
    Mac Pro (Mid 2012)
    Jun 2012
    10.7.3
    10.8, 10.8.3
    11D2001, 12A269, 12D78
    Mac Pro (Mid 2010)
    Aug 2010
    10.6.4
    10.7, 10.7.2, 10.7.3
    10F2521, 10F2554, 11A511a, 11C74, 11D2001
    Mac Pro with Mac OS X Server (Mid 2010)
    Aug 2010
    10.6.4
    10.7, 10.7.2, 10.7.3 (Server)
    10F2522, 11A511a, 11C74, 11D2001 (Server)
    Mac Pro (Early 2009)
    Mar 2009
    10.5.6
    10.6
    9G3553, 10A432
    Mac Pro (Early 2008)
    Jan 2008
    10.5.1
    10.5.2, 10.5.4
    9B2117, 9C2031, 9E25
    Mac Pro
    Aug 2006
    10.4.7
    10.4.8, 10.4.9, 10.4.10, 10.5
    8K1079, 8N1430, 8N1250, 8K1124, 8P4037, 8R3032, 8R3041, 9A581, 9A3129

  • Information about Incoming and outgoing message in BizTalk MessageBox DB

    Hi,
    Can we have some query in sql by which we can get the information about incoming and outgoing  message in our message box DB ?
    Information like how many message we receive so far,how many messages get suspended,how many message is successfully send.
    Any kind of help would be appreciated .
    Prakash

    Hi Prakash,
    Rachit already provided the links which should help, also Admin console can be of help , where you can query using Group hub page .
    BizTalk Server: Tracking Data Using BizTalk Admin Console
    BizTalk Server: Checking Tracked Data Using Admin Console
    Maheshkumar
    S Tiwari|User
    Page|Blog|BizTalk
    Server: Multiple XML files to Single FlatFile Using File Adapter

  • Table that stores information about function module

    Hi All,
    I know that table TFDIR stores primary information about any function module.
    Could anyone tell me where the code of that function module gets stored in?
    Also.. If I want to write an ABAP code to read the function module code then what is the best possible solution?
    Thanks in advace and any answer will be appreciated.
    Regards
    Jignesh

    Hi All,
    Apologies for the same!
    The codes are not stored in any table, they are stored as cluster.
    To read the code, you can use READ REPORT.
    But there you must provide the Include Name For Example , If you want to read the code of READ_TEXT,
    READ REPORT 'LSTXDU01'.
    You can get this include name inside include LSTXDUXX
    Table TFDIR also stores the program name and include number.
    You need to truncate first 3 char 'SAP' and append UXX at the end and that will be your program name.
    Then we can use READ REPORT!!!
    Regards
    Jignesh

  • Which CRM table stores the release quantity and target quantity

    I found one table named CRMD_SCHEDLIN, one field is Quantity, is it the target quantity or not? If not, which CRM tables stores this info?
    Thanks!

    H Tracy,
    As far as i could find the table CRMD_SCHEDLIN is the only table which stores quantity. the sum quantities of each line item gives you the target quantity of the order i think.
    Please check the source code of function module CRM_SCHEDLIN_I_GET_ORD_QTY_OW you may get soem idea.
    Thanks,
    Rajini A.

  • Apc asset, information about payments and debts to a vendor

    Dear sap colleages
    I need to know these information about an ASSET:
    Purchased orders,
    Items from purchase orders,
    which of these items i've received, i've paid (also date), i've not paid ( amount of debt related to asset)
    payments in advanced (date),
    wich of these payments have been cleared (clearing date) and wich not,
    who is the vendor,
    other expenses (such as delivery)
    the amount of taxes,
    invoices related and NOT RELATED TO purchase order
    payments without invoice
    Which transactions do i need to follow?
    or
    Which document flow?
    or
    Which tables? Wich keys?
    or
    Is there a standard report that can give me such information?
    Any documentation and/or code will be appreciated.
    I need to program a report to integrate all these information.
    Thanks and Kind Regards

    Hi:
    Regarding payments to vendors,refer to FBL1N - Display/Change Line Items .
    Select the company code and then open items radio button and today date.It will show what are payments still to be paid to the vendor.If you select cleared items, it will show the payments paid to the vendor.If you select all items radio button, it will show all paid and unpaid payments to the vendor.
    Check this report whether it fills your requirment.
    When the user posts the business transaction, he has to input all the details, otherwise some of the information may be missing.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

Maybe you are looking for

  • No Applicable data in the report

    HI - I got no applicable data in the result area,.. So i searched for the previous posts... In that speacified ,.. if we remove the previous  Erroneous requests made in the infopack / DTP  ,..the problem solved.... No i would like to know where can i

  • Office web apps 2013 March update 2013....pdf preview

    the web application is configured as permissive. I did the following Remove-OfficeWebAppsMachine updated with the march 2013. restarted the office web apps 2013 server. New-OfficeWebAppsFarm -InternalUrl "https://owa.domain.com" -ExternalUrl "https:/

  • Stored procedure by a JDBC sender

    Hi, My scenario involves accessing an SQL server to XI to APO. I need to invoke a stored procedure residing on SQL server in order to get the data into XI. Can somebody suggest how i acheive this. It has to be done every month...so is there a way i c

  • How to change your displayed name

    How do you change your displayed name in iCloud?  I have tried changing the settings and I also update my Apple ID profile, but iCloud still displays my old name. The name displays in the upper right hand corner and is always displayed, even if you s

  • Preview slow down

    I am creating 200 page documents by collecting pages from various pdfs. The file size is 100MB. I upgraded my RAM to 16GB with no significant change. Preview stops my ability to scroll through the pages as I get to making the document larger. Any sug