How to verify that an event is triggered

Hi Experts,
I am running a BW job that is based on an event (or basically a group of events using event collector). Some times, I need to debug it to find out why the job is not triggered and it is very difficult to find out which event was not there.
Here is my quesiton:
Is it possible to see, some where in the system, if an event is waiting for a job? or in other words, if an event has been fired?
Also there is one other question, if an event is fired and this event is being collected by an event collector, can we see, some where, if event collector already got one event and only 2 more are left (suppose event collector need 3 events to fire the next level event that triggers a job).
Thank you,
Praveen

Hi Sidhartha, Dinesh and Ravi,
SM37 can give me only those jobs that have either finished, cancelled or waiting for an event. The question was to see those events that are not trigger from event collector, because one of the source event is not there.
Here is one example EV3 is triggered by Event collector only if EV1 and EV2 are there. Suppose EV2 did not come, how do I know, if EV1 is there without executing any job?
Thank you,
Praveen
Toronto

Similar Messages

  • Event Viewer cannot open the event Log or Custom view. Verify that the Event log service is running or query is too long. The instance name passed was not recognized as valid by a WMI data provider(4201).

    "Event Viewer cannot open the event Log or Custom view. Verify that the Event log service is running or query is too long. The instance name passed was not recognized as valid by a WMI data provider(4201)"
    This error keeps cropping up now and again on most of our domain controllers (OS-2008 AND 2008R2)...Usually a restart fixes the issue however the issue repeats and security logs don't generate.
    Any advice on how to fix this issue permanently would be greatly appreciated.

    Please see this: https://social.technet.microsoft.com/Forums/windows/en-US/95987ca3-a1b2-4da6-95b7-d825d06cdac7/error-code-4201-the-instance-name-passed-was-not-recognized-as-valid-by-a-wmi-data-provider?forum=w7itprosecurity
    You can also try rebuilding the WMI repository: http://blogs.technet.com/b/askperf/archive/2009/04/13/wmi-rebuilding-the-wmi-repository.aspx
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • What is Veritas HA, and How to verify that Veritas HA system is "lights on"

    Hi, Friends:
    I have two questions,
    1.What is Veritas HA?
    2.How to verify that Veritas HA system is "lights on"?
    thank you very much,
    Jerry

    Veritas HA = Veritas High Availability.
    http://www.google.com/search?q=veritas+HA&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

  • How to verify that oracle service is up

    How to verify that Oracle server is up?
    how to verify that Oracle db is up (or online??)
    thx

    Hi,
    This Sun ksh command will show the Oracle processes for your instance:
    ps -ef|grep $ORACLE_SID|grep -v grep
    Here the Sun script that I use to check if your database is running:
    check_stat=`ps -ef|grep ${ORACLE_SID}|grep pmon|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -lt 1 ]
    then
    exit 0
    fi
    # Test to see if Oracle is accepting connections
    $ORACLE_HOME/bin/sqlplus -s /<<! > /tmp/check_$ORACLE_SID.ora
    select * from v\$database;
    exit
    # If not, exit and e-mail . . .
    check_stat=`cat /tmp/check_$ORACLE_SID.ora|grep -i error|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -ne 0 ]
    then
    mailx -s "$ORACLE_SID is down!" [email protected]
    exit 16
    fi
    If you are not familiar with UNIX scripting, there are many script collections that you can use:
    http://www.google.com/search?&q=oracle+script+collection
    To learn UNIX scripting, Jon Emmons (Life after Coffee blog) has a book of Oracle Linux/UNIX scripts:
    http://www.rampant-books.com/book_2005_1_linux_commands.htm

  • How to verify that your connected to wifi

    How to verify that your connected to wifi

    3 ways:
    1. The symbol at the top of the iPad on the left hand side. Will tell you if you are connected, and how strong the signal is:
    2. Going into Settings->Wifi will tell you what Wifi network you are connected to at the time if any,
    3. If the network has internet access, you should be able to open a website in Safari.

  • How to verify that the variable "does not contain" a value?

    Hi
    I am using CP 7.0.1.237.
    We want to use Text Area widget for a custom quiz and verify an answer. While we figured out how to verify the existence of certain keywords, we are not able to figure out how to verify that the content should NOT contain certain keywords. For example, we want to ensure that the text entered in this widget should not contain "Transformation" and "Non-compliant".
    Is this possible at all?
    Thanks
    Sreekanth

    Here's what the solution might look like in JavaScript.  This would be for SWF output and aimed at Cp 7.  For Cp 8, this would still work for SWF output, but you'd probably want to take advantage of the new unified JS API that gets and sets Cp variables for both SWF and HTML5 output.  You can read more about that here:  Common JS interface
    //Get the text area value from Captivate (SWF output Only)
    var cpTextAreaValue = document.Captivate.cpEIGetValue('m_VarHandle.v_TextArea);
    //convert the value to lower case to properly compare
    cpTextAreaValue = cpTextAreaValue.toLowerCase();
    //Check if text area value contains the words "transformation" or "non-compliant"
    if(cpTextAreaValue.indexof('organizational') > -1 && cpTextAreaValue.indexof('behavioral ') > -1 && cpTextAreaValue.indexof('managerial') > -1 && cpTextAreaValue.indexof('transformation') < 0 && cpTextAreaValue.indexof('non-compliant') < 0){
      //the text area has the correct answer so increment varScore
      //get the current score from Captivate
      var score = document.Captivate.cpEIGetValue('m_VarHandle.varScore');
      //increment score by 1
      score++;
      //set score in Captivate
      document.Captivate.cpEISetValue('m_VarHandle.varScore', score);
    } else {
      //the text area does not have the correct answer so show message to user inside of Captivate
      document.Captivate.cpEISetValue('m_VarHandle.v_message', 'Answer is not correct');
    This JS has not been tested.  Note that the "does not contain" operator is done using the "indexof" operator in JS. 
    Jim Leichliter

  • How to verify that embedded OC4J is loading Custom LoginModule?

    I've written a custom login module to authenticate against a custom datastore. I've added a system property
    java.security.auth.login.config=C:\javadev\...\jaas.configas recommended by Yvonne here: Re: Custom LoginModule used by BC4J
    I still get the following when I load a UIX page out of this module:
    msg=JBO-33021: Failed authenticate user nullThere are many debug System.out(...) statements in the code (including in the initialize() function) but none are showing up in the OC4J console. Does anyone know how to verify that the LoginModule is indeed getting loaded? Is it normal for these System.out() statements not to show in the OC4J console?
    I get the impression that the LoginModule is not being loaded but I'm not sure if those traces are enough...
    Thanks,
    /sfl

    Thanks much for the prompt reply and debugging tips Steve and Avi!
    I used both switches (-DApplicationServerDebug and -verbose:class) and still no sign of the class being loaded; none of the traces (I did trace in the construct, though I failed to mention in my original post) nor do any of the app server or jvm debug messages show any sign of the LoginModule being loaded. So now I'm fairly certain I'm going about the wrong way to get this module loaded. Should I also be posting this to the JDeveloper forum?
    My application module configuration is as follows:
    jbo.security.config=<blank> (is this right?)
    jbo.security.context=oracle.security.jazn
    jbo.security.enforce=Must
    jbo.security.loginmodule=customModuleThe command line to the JVM contains:
    -Djava.security.auth.login.config=C:\javadev\jdev9052\j2ee\home\config\jaas.config[yes Avi, I was unfortunately imposed an M$ env. by the powers that be : ( ]
    And, well I've been trying a lot of different things w/ the jaas.config file:
    customModule{
    myPack.controller.MyLoginModule required;
    myApp{
    myPack.controller.MyLoginModule required;
    myPack.LookupModuleLocal{
    myPack.controller.MyLoginModule required;
    myPack.LookupModule{
    myPack.controller.MyLoginModule required;
    Ws-MyProg-webapp{
    myPack.controller.MyLoginModule required;
    default{
    myPack.controller.MyLoginModule required;
    current-workspace-app{
    myPack.controller.MyLoginModule required;
    };Any idea where I'm going wrong? Do I need to do anything else to get this module loaded? At first I thought I needed to modify the jazn-data.xml file but I saw a note in another thread Custom LoginModule used by BC4J which says that it's not necessary to modify it when using a custom LoginModule. Is this right, or should I be modifying that file?
    Thanks,
    java.lang.Object - jobject ;- )

  • How to find out which event is triggered in SDK

    Hi all
    From SDK, I am would like to know which event is triggered when the user select navigation menu Follow up -> Create Lead (screen 1).
    I am guessing, it calls LeadCreateWithRef outport event but I don't see any absl code?? (screen 2)
    When I try to switch from Display to Edit, I got error "Component which you are trying to edit comes from a lower layer. Please use Extensibility Explore to Edit" (screen 3)
    Also in Extensibility Explorer, I can't open the button details (can't even see it in the buttongroup).
    Any advice is welcomed.
    Thanks
    Anthony

    Hi Meghna
    Thanks for the info. I am trying to do reverse engineering, to understand how to existing UI screen is built, how and what events get called when button is pressed and which screen will be opened.
    For example, in Ticket screen, when I select Follow up then Create Lead:
    I cannot drill down to see the button and its properties??
    nb. Also there is no left right scroll bar to see the rest of button group. Is it a bug?? I am using Windows 8.1.
    And in outport setting, I don't see which action/event triggered? and what screen to show?
    Thanks again,
    Anthony

  • How to verify that the SCCM data is importing in Service Manager properly

    Hi,
    we are using SCSM 2012 R2 with SCCM 2012 R2 connector.
    How could I verify that the configuration manager data is importing properly in Service Manager.
    Since many of the systems are not showing installed application in service manager that are showing in Configuration Manager, therefore, I have to verify that SCCM data is importing properly in Service Manager.
    Further, we I check the incidents, affected CIs are missing or blank.
    Please suggest.
    Regards, Syed Fahad Ali

    If you look at the history of the CI it will tell you everything that is being written to it. If some of your systems are not showing their installed software, you may want to check that the ConfigMgr connector is even syncing that particular machine.
    If you look at the CI history and don't see any entries from "System Center Configuration Manager", the machine may not be in the appropriate collection. If you take a look at the configuration of the connector, you will see the collections that
    are synced. In order for a machines information to be populated, it must be in one of the selected collections.  
    Matthew Dowst |
    Blog | Twitter

  • How to verify that my info is backedup?

    I need to reset my phone to factory setting.  How do I verify that all the info on the phone is actually backed up in the iCloud?

    Go to Settings>iCloud>Storage & Backup, scroll to the bottom and see the time/date at the very bottom (under Back Up Now).   Then as a precaution, make a second backup on your computer using iTunes by connecting your phone to your computer, opening iTunes and going to File>Devices>Back Up.  Then go to File>Devices>Transfer Purchased.  Then you'll have a second backup should anything go wrong with one of them.

  • How to verify that a host is having/running Exadata?

    Hi,
    How can I verify that a machine(unix/linux) has Exadata?
    Please help.
    Thanks

    It's the storage that's important. You can run a database on an Exadata DB servers that doesn't access Exadata storage, in which case Smart Scans etc... will be disabled. So you may want to check your asm diskgroups. They have an attribute that tells whether they reside on Exadata storage or not. You can use something like this query to show you that information.
    <pre>
    column exadata_storage for a20
    with b as (select group_number, value from v$asm_attribute where name = 'cell.smart_scan_capable')
    select a.name diskgroup, state, b.value Exadata_storage
    from v$asm_diskgroup a, b
    where a.group_number = b.group_number(+)
    and a.name like nvl('&diskgroup',a.name)
    order by 1
    SYS@SANDBOX> @exadata_diskgroups.sql
    Enter value for diskgroup:
    DISKGROUP STATE EXADATA_STORAGE
    DATA CONNECTED TRUE
    RECO CONNECTED TRUE
    SCRATCH MOUNTED TRUE
    SMITHERS DISMOUNTED
    STAGE MOUNTED TRUE
    SWING MOUNTED TRUE
    SYSTEM MOUNTED TRUE
    7 rows selected.
    </pre>

  • Newbie q: How to verify that encryption is working

    Hello,
    In a sharepoint environment, we have installed a certificate and force encryption=on, according to :
    http://social.technet.microsoft.com/Forums/en-US/bde679d9-ff83-4fa7-b402-42e336a97106/force-encryption-on-sql-server-not-working?forum=sqlsecurity 
    How can I verify that the encryption is actually working? I saw wireshark but I don't know to use it.
    Thank you
    Christos

    Basically if you encrypt all of DataBases of SharePoint, you can open one DataBase and use Select statement to verify if your can read the Data.
    Connection encryption is something quite different than database encryption.
    The most ideal way to verify connection encryption is to use a packet sniffer such as Wireshark.  Since that's no something you know how to use and are resistant to learning, I'd run the following on my SQL Server and look for connections which have
    an encrypt_option of false:
    select * from sys.dm_exec_connections
    Connections which are encrypted should have an encrypt_option of TRUE.

  • How to enable Chase Referral? After doing the same how to verify that part?

    Hi,
    Please guide me on enabling chase referral on my Active Directory server. Also after enabling the same how to verify it?
    Setup info:
    Forest1:
    root.com(PDC)
    child.root.com(Child)
    Forest2:
    test.com(PDC)
    ind.test.com(child1)
    us.test.com(child2)
    Both these forests has two way transitive trust enabled. 
    We have product where we can add LDAP settings so that AD users can be mapped to that server. I have added Forest1->PDC to that settings where I am able to retrive the objects during LDAP search. Chase Referral option is available, when I enable the option
    and try to search for a user present in Forest 1-> child domain no object is returned. 
    Is there any thing that needs to be done on AD servers. Please help.

    Hi Arun,
    I suggest you check this blog below to see if it helps:
    Referral Chasing
    http://blogs.technet.com/b/ad/archive/2009/07/06/referral-chasing.aspx
    Best Regards,
    Amy

  • How to verify that trust relationship has been set up successfully at client machine ?

    Hello,
    There is trust set up with domain group.Would you please let me know how can I verify that trust relationship has been set up correctly in such a way that i can see the users of trusted group on client machine ?
    Any idea?
    Note :I do not have access on Domain Controller.
    Thanks and Regards,
    Dipti
    Dipti Chhatrapati

    Hi
    As far as I know, trust certificates that have been exchanged between the SharePoint farm and external systems should be visible by going to  the Central Admin->Security->Manage Trusts page.
    Kind Regards
    Bjoern
    http://www.sharepointviking.com
    Twitter: Follow @bjoern_rapp

  • How to verify that the request has been moved to Quality System

    Hi friends,
    I a new abaper and i need ur help in solving this issue.
    I have developed an object and released( as per the suggestions given already in this forum). Its working well and i can see the request in released status in se09.
    No what i really want is , How can i verify that the request has been moved to Quality System by the basis people, assuming that i have only access to dev system.

    Yes, once u release the request, if it is successfullly released will make the request avaialble under released requests
    As an ABAP'er this is enof
    <b>wht abt me Sravanan :-(</b>
    Regards
    - Gopi
    Message was edited by: Gopi Narendra

Maybe you are looking for

  • Import NOT COMPATIBLE error

    The error I get when installing an import file from APEX to XE is: NOT COMPATIBLE (your export may contain calls which are not supported by your application) I have tried exporting from both my apex.oracle.com workspace and the version of apex I have

  • Latin 2 Cyrilic

    Hi, i need help. This is my problem. 1. I find text in cyrillic (my language is macedonian), on web or pdf document 2. I copy the text and i paste it to word or pages 3. the pasted text is in latin letters How can i change the text from latin letters

  • Issues with uploaded files and timestamps

    Hi All, I am building an app that will have 2 csv's uploaded daily, and compare results. The problem I have is that I can't seem to get the data into tables using the timestamp datatype. I fixed this by making the columns varchar2 rather than timesta

  • PE 10: Picture Slide Show

    The slide show starts with custom music and 4 slides in order, and then starts randomly selecting what was originally my custom order.  What is going on?

  • How do i change the password on my imac?

    Hi Guys, I just got an old Tangerine iMacrunning Panther and when I first turn it on, (I show it a scantily dressed psion) a password screen appears asking for name and password. i know what they are and can enter the details and it works fine but I'