Regarding the events..

Hi Experts--
I would like to know abt the events triggered or not..
I mean the status of the events...can i see the status of the events whether it has been triggerd or not... in SM62 i could not see ...
where can i see this..
Suggestions plz
Regards,
Vishwa.

Hi Vishwa
Similar question was raised for m also a long back .But i didnt get the answer any
the following are some of the ways to know..
1) if the event is triggering any jobs .then we can check the staus in Sm37
by mentioning that particular event name in the  job start condition after event
field..
This is jus an advice ...
If any ideas please let us know..
Regards
R M K
***Assigning points is the only way of saying thanx in SDN ***

Similar Messages

  • Regarding the event AT SELECTION-SCREEN ON FIELD ..

    Hi experts,
    Can u plz tell the real advantage of the event AT SELECTION-SCREEN ON FIELD than
    AT SELECTION-SCREEN ..
    in which type of situations  AT SELECTION-SCREEN ON FIELD is needed??
    Thanks & Regards,
    sathish.

    Hi,
    when we are going to do two are more field validations at a time
    we can use AT SELECTION-SCREEN ON <fieldname>.
    if it is there single field we can use AT SELECTION-SCREEN.
    have a look.
    select-options: s_vbeln like vbak-vbeln,
                          s_vkorg like vbak-vkorg,
                          s_vtweg like vbak-vtweg,
                          s_matnr like vbap-matnr.
    AT SELECTION-SCREEN ON s_vbeln.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_vkorg.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_vtweg.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_matnr.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    Regards.
    sriram.

  • Regarding the event for expand/collapse of navigation panel

    Hi All,
    Is it possible to have an event for the exapnd/collapse for the navigation panel of the portal.
    If yes, how to achieve it..
    Can we add the event for this or not.
    If yes, I want to fire this event from the webdynpro ABAP to collapse or expand the navigation panel of the portal based on some condition.
    Is this possible....
    Thanks Much.
    Regards,
    Lekha.

    Hi,
    See my thread: Hide Detailed Navigation on how to edit the relevant par file.
    I guess you can add  EPCM event (subscribe) and raise it from your ABAP code.
    Hope it helps,
    Omri

  • Querry regarding the event fire

    Hi All,
    I am coming across the problem that my code is able to fire lost focus event only once. Next time when I try to do the same thing then the lost focus event does not work. For this I have to run the program again and again. Why it is so? Pl explain me.
    Thank you

    Hi All
    Thank  you for your reply.
    Pl don't worry. Today the problem get solved. I have tested my code with debugging and got it what was actually happening. Now I have done the code and problem get solved.
    Thank  you.

  • Regarding the focusGained and iteratorBindingChange events

    Dear Jdev/JClient team,
    I'm trying to build up a self-style API based upon the
    JClient classes to emulate more or less the mechanisms
    of the Developer tool. My first efforts were to match
    next concepts:
    JUApplication <---> Application (Frame)
    JPanelBinding <---> Form
    JUIteratorBinding <---> Block
    Moreover, I'm using my own toolbar that I want it to
    act at application level. This toolbar uses the
    JUActionBinding dynamically because it's able to target
    the current panel binding "in focus". I'm also intercepting
    the focusGained events to perform the typical navigation
    triggers in Developer: WHEN-NEW-ITEM-INSTANCE,
    WHEN-NEW-RECORD-INSTANCE, WHEN-NEW-BLOCK-INSTANCE and
    WHEN-NEW-FORM-INSTANCE.
    In this context, I have some major concerns:
    1) I've reading about the next 9.0.3 version, and I'm very
    interested, and quite worried, about possible changes
    in the way the focusGained and iteratorBindingChange
    events will be delivered. I mean, these events will be
    delivered in the same situations in the next version??
    Knowledge about this is vital due to the fact that my
    API relies in the JClient current behavior.
    2) Regarding the structure of bindings, I've read and
    I've seen that the JPanelBinding really don't act
    at "Form" level. That is, you can associate all your
    panels to only one JPanelBinding. However, I prefer
    to use one JPanelBinding for each "Form". In this
    context, I have the next particular problem. I have
    two or more JUPanelBinding and I have a class that
    implements the JUNavigationBarInterface to track
    the current JUIteratorBinding by registering itself to
    all these JUPanelBinding, and one of these JUPanelBinding
    has only one JUIteratorBinding. In this case, when
    I navigate to this last JUPanelBinding from another one
    I don't receive the iteratorBindingChange event.
    Browsing the source code this is "normal" because a
    JUPanelBinding with only one JUIteratorBinding is
    expected to delivered this event once. However, this
    mechanism seems very restrictive (or maybe a bug). The
    problem seems to be that the standard toolbar are
    expected to receive these events and track the iterator
    binding, and this standard toolbar only acts at
    JUIteratorBinding or JUPanelBinding level. Nevertheless,
    I want a toolbar that can share all the panel bindings!!
    Is this something you plan to change in 9.0.3? is this
    a bug? a non-supported functionality? What can I do?
    I'm thinking in ignoring the iteratorBindingChange
    events and generating them by myself upon receiving
    the focusGained events which act at JUApplication level.
    Is this a good idea? Will this be compatible with 9.0.3?
    The next piece of code is part of the current implementation
    of the JUPanelBinding. You can see that the mNavBarInit
    variable make the class to only deliver the iteratorBindingChange
    event once if we have only one JUIteratorBinding. This is
    issue I'm referring to.
    public void focusGained(...)
    if (mNavigationBarList != null)
    JUIteratorBinding currentIter = null;
    ArrayList al = getIterBindingList();
    if (al.size() > 1)
    //this could be optimized by keeping track of current iterator.
    currentIter = iterBinding;
    else if (!mNavBarInit)
    mNavBarInit = true;
    currentIter = (JUIteratorBinding)al.get(0);
    if (currentIter != null)
    al = mNavigationBarList;
    for (int i = 0; i < al.size(); i++)
    ((JUNavigationBarInterface)al.get(i)).iteratorBindingChanged(currentIter);
    I would appreciate any comments, advice or information you
    can address to me.
    Thanks in advance.
    Jaume Espriu
    Software engineer
    [email protected]
    SAME S.I. S.A.

    1) I've reading about the next 9.0.3 version, and I'm very
    interested, and quite worried, about possible changes
    in the way the focusGained and iteratorBindingChange
    events will be delivered. I mean, these events will be
    delivered in the same situations in the next version??
    Knowledge about this is vital due to the fact that my
    API relies in the JClient current behavior. I'm not sure where you get the "impression" that raising of focusGained and iteratorBindingChanged events will be changed?
    - focusGained is generated by Swing and should stay the same. JClient does not raise/block raising of this event.
    - iteratorBindingChanged event is generated by JClient when the RowSetIterator for an iteratorBinding is changed
    No bugs were fixed/resolved for this area of the code.
    2) Regarding the structure of bindings, I've read and
    I've seen that the JPanelBinding really don't act
    at "Form" level. That is, you can associate all your
    panels to only one JPanelBinding. However, I prefer
    to use one JPanelBinding for each "Form". In this
    context, I have the next particular problem. I have
    two or more JUPanelBinding and I have a class that
    implements the JUNavigationBarInterface to track
    the current JUIteratorBinding by registering itself to
    all these JUPanelBinding, and one of these JUPanelBinding
    has only one JUIteratorBinding. In this case, when
    I navigate to this last JUPanelBinding from another one
    I don't receive the iteratorBindingChange event.
    Browsing the source code this is "normal" because a
    JUPanelBinding with only one JUIteratorBinding is
    expected to delivered this event once. However, this
    mechanism seems very restrictive (or maybe a bug). The
    problem seems to be that the standard toolbar are
    expected to receive these events and track the iterator
    binding, and this standard toolbar only acts at
    JUIteratorBinding or JUPanelBinding level. Nevertheless,
    I want a toolbar that can share all the panel bindings!!
    Is this something you plan to change in 9.0.3?No.
    is this
    a bug? a non-supported functionality? What can I do?You may want to implement some kind of focus changed mechanism where you "common" toolbar is notified of the current panel in focus so that it can then update it's iterator binding to current panel's iterator binding.
    Default raising of the event iteratorBindingChanged(), is only within the context of one JUPanelBinding instance.
    I'm thinking in ignoring the iteratorBindingChange
    events and generating them by myself upon receiving
    the focusGained events which act at JUApplication level.
    Is this a good idea? Will this be compatible with 9.0.3?I believe so.
    The next piece of code is part of the current implementation
    of the JUPanelBinding. You can see that the mNavBarInit
    variable make the class to only deliver the iteratorBindingChange
    event once if we have only one JUIteratorBinding. This is
    issue I'm referring to.
    public void focusGained(...)
    if (mNavigationBarList != null)
    JUIteratorBinding currentIter = null;
    ArrayList al = getIterBindingList();
    if (al.size() > 1)
    //this could be optimized by keeping track of current iterator.
    currentIter = iterBinding;
    else if (!mNavBarInit)
    mNavBarInit = true;
    currentIter = (JUIteratorBinding)al.get(0);
    if (currentIter != null)
    al = mNavigationBarList;
    for (int i = 0; i < al.size(); i++)
    ((JUNavigationBarInterface)al.get(i)).iteratorBindingChanged(currentIter);
    I would appreciate any comments, advice or information you
    can address to me.
    Thanks in advance.
    Jaume Espriu
    Software engineer
    [email protected]
    SAME S.I. S.A.

  • When I open up iphoto and click on the events tab then double click on an event, it used to show minis of all the photos in that event.  Now it shows only one photo at a time.  How do I get it back? Can you help?

    When I open up iphoto and click on the events tab then double click on an event, it used to show minis of all the photos in that event.  Now it shows only one photo at a time.  How do I get it back? Can you help?

    On the bottom bar of the window (on the left iPhoto 11, on the right in other versions) note the slider. Drag it left.
    Regards
    TD

  • How to capture the event on changing focus from a JTextField?

    Hi All,
    I have got a problem...
    I want to do something (say some sort of validations/calculations) when I change the focus by pressing tab from a JTextField. But I am not able to do that.
    I tried with DocumentListener (jtf01.getDocument().addDocumentListener(this);). But in that case, it's calling the event everytime I ke-in something in the text field. But that's not what I want. I want to call that event only once, after the value is changed (user can paste a value, or even can key-in).
    Is there any way for this? Is there any method (like onChange() in javascript) that can do this.
    Please Help me...
    Regards,
    Ujjal

    Hi Michael,
    I am attaching my code. Actual code is very large containing 'n' number of components and ActionListeners. I am attaching only the relevant part.
    //more codes
    public class PaintSplitDisplay extends JApplet implements ActionListener
         JFrame jf01;
         JPanel jp01;
         JTextField jtf01, jtf02;
         //more codes
         public void start()
              //more codes
             jtf01 = new JTextField();
              jtf01.setPreferredSize(longField);
              jtf01.setFont(new Font("Courier new",0,12));
              jtf01.setInputVerifier(new InputVerifier(){public boolean verify(JComponent input)
                   //more codes
                   System.out.print("updating");
                   jtf02.setText("updated value");
                   System.out.print("updated");
                   return true;
              //more codes
              jtf02 = new JTextField();
              jtf02.setPreferredSize(mediumField);
              jtf02.setEditable(false);
              jp01.add(jtf02, gbc);
              //more codes
              jf01.add(jp01);
              jf01.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              jf01.setVisible(true);
              //more codes
         public static void main(String args[])
              PaintSplitDisplay psp = new PaintSplitDisplay();
              psp.start();
         public void actionPerformed(ActionEvent ae)
              //more codes
    }As you can see I want to update the second JTextField based on some calculations. That should happen when I change the focus from my frist JTextField. I have called jtf02.setText() method inside InputVerifier. But it's giving error...
    Please suggest...
    Ujjal

  • I can see the pics but when I click on the event itself a HUGE exclamation mark pops up and not my pic.

    OK..this forum help me locate my iPhoto so HOPEFULLY ya'll can help me w/ 1 another issue. When I open an event in iPhoto...I can see the pics but when I click on the event itself a HUGE exclamation mark pops up and not my pic. Its really weird that I can see the pic but cant open it. Hopefully we can correct this issue. Also, if anyone has the energy....pls tell me how I can export from my iphoto-I want to place all my pics on CDs or my external hard drive and when I try to export it says.."unable to export.." I dunno!
    Help PLZZZZZ!
    Lost again,
    Amanda 

    The two problems are related.
    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    And that's why you can't export as well.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • How to improve the event log read performance under intensive event writing

    We are collecting etw events from customer machines. In our perf test, the event read rate can reach 5000/sec when there is no heavy event writing. However, the customer machine has very intensive event writing and our read rate dropped a lot (to 300/sec).
    I understand there is IO bound since event write and read will race for the log file, which is also confirmed by the fact that whenever there is a burst of event write, a dip of event read happens at the same time. Therefore, the event read cannot catch up
    the event write and the customer gets lagging behind logs.
    Note that most of the events are security events generated by windows (instead of customers).
    Is there a way to improve the event read performance under intensive event write? I know it is a hard question given the theory blocker just mentioned. But we will lose customers if there is no solution. Appreciate any clue very much!

    Hi Leonjl,
    Thank you for posting on MSDN forum.
    I am trying to invite someone who familiar with this to come into this thread.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to handle the event "GROUPLEVEL_CHANGE" in ALV?

    Hi,
    I have done a BLOCL ALV report. In i am sorting the first field and not displaying it. But for every change in the first field page break should happen and the particular field is to be printed at every page break at the top. I am handling the page break by passing the IT_SORT-GROUP = '*'. there fore the page breaking is happening well. now i need to have a control such that i print the first field at every page break.
    Please help on this...........
    I think the event GROUPLEVEL_CHANGE is to used please tell me the parameters to be passed for this subroutine
    (Defenitely point will be given)

    Hi,
    Check the below thread...
    Re: Adding row after subtotal in ALV
    Regards,
    Maha

  • How to schedule a background job using the Event concept..?

    Hi Folks,
    I have a requirement that, I need a schedule a background job.
    Once after the previous job successful only, new job should get triggered. How to go ahead with this..?
    For Eg, I am scheduling a job called ZTEST periodically for 1 minute. If the job is not get completing with in 1 minute, I dont want to start my new job. Only after the success of my old job, I want my new job to run.
    Waiting for ur replies.
    Regards,
    Savi.

    Hi,
    You can use events that have already been defined, or you can create new events for scheduling background jobs.
    If you wish to use new events, do the following to implement the event scheduling:
    Define and transport the event as a user event with transaction SM62.
    You must define only event IDs; event arguments are not defined in the R/3 System. Instead, you specify event arguments when you schedule a job to wait for an event and when you trigger the event.
    If you define a new event, you must also transport it to your production systems. The event transaction does not have a connection to the transport system. Instead, you must create a transport request for the event yourself.
    Do this to transport an event:
    Create a transport request.
    Start the editor in the transport request and enter the following:
    R3TR TABU <table name> where table name is BTCSEV for a system event ID, BTCUEV for a user event ID.
    Press F2 with the cursor on the table name to call up the screen for specifying the table entries to transport. In this screen, enter the event ID’s that you have created.
    Save and release the transport request. Ensure that it is imported into your production system(s).
    To trigger an event, add:
    – the function module BP_EVENT_RAISE to your ABAP program, or
    – the program SAPEVT to your external script, batch file, or program.
    When your programs execute these keywords, an event will be triggered in the R/3 background processing system. The event-based scheduler is started immediately. It in turn starts all jobs that were waiting upon the event, subject to normal background processing restrictions, such as the requirement that the job has been released to start.
    Schedule the jobs that are to run when your events are triggered.
    You can schedule jobs for one-time start or to be started whenever an event is triggered.
    Regards,
    Raj.

  • How to add a new button in IC tool bar and handle the event for the button?

    Hi,
        I am working on CRM 2007 Interaction center. To add a new button to IC toolbar, customizing is available to define a new button and then assign in to the profile.
    In SPRO->CRM->IC webclient->Customer Specifc System Modifications->Define Toolbar Buttons, I defined one new button with ID ZSTART.
    Now in SPRO->CRM->IC webclient->Basic Functions->Communication Channels->Define Toolbar Profiles , I selected Default profileid and in Generic Layout Buttons Tab, I added the new button ZSTART in Position 3.
         So after completing the customizing when the user logs in using role IC_AGENT,  the button (with ID:ZSTART) gets displayed in the IC toolbar too.
          Now on click of this button, I need to create an object.
    To do so, I have to catch the event which is raised by this new button.
           Please let me how to implement the event handler for this new button. What will be the event name for this button click event and how I can subscribe for it ?
         Please let me know if anyone of you have already worked on similar requirements.
    Regards,
    Manas.
    Edited by: manas sahoo on Jul 22, 2008 7:49 PM

    Hello Manas,
    There are a couple of threads in the community that might help you out (if you haven't already found them):
    Re: IC Web Client Toolbar
    /message/3621917#3621917 [original link is broken]
    Regards,
    Renee Wilhelm
    Edited by: Renee Wilhelm on Nov 6, 2008 7:46 PM

  • Can I hide the set time in the event boxes in Week View?

    Can I hide the set time in the event boxes in the Week View?

    David
    No way around this that I can find. That toolbar pops up if you pause the show.
    The nearest I could figure is to use the settings button for a long slide - 'Play each slide for 120 seconds' then tapping the arrows will move the slides along without showing the toolbar. And the 120 second slide is almost as good as a pause.
    iPhoto menu -> Provide iPhoto Feedback
    Regards
    TD

  • How to assign the events in a specific method in class builder(se24)

    i have declared one event in event part.i want to asign the event to one method .can any one help me .i have to do it in se24.pls

    hi,
    create a class in se24.
    <b>click the <b>EVENTS</b> tab, define an event.</b>
    <b>click the <b>METHODS</b> tab, define a method to trigger/ raise the event</b>
    <b>define one more method as an event handler method for the event.</b>
    for a method to be an event handler, click on the detail view,
    select the check box <b>Event Handler for</b>  give the classname where the event is defined and the event name, click on Change button.
    <b>event can be in the same class or different from that of the event handler method.</b>
    don't forget to <b>register the event handler method in the program.</b>
    click the code button of ur trigger method(meth2 in my example) and write there,
    raise event evt1.
    now your class is ready.
    now in se38 program,
    declare a reference variable to ur class,
    create an object,set the handler for ur event,
    call the trigger method
    <b>data:oref type ref to zsowcl1.
    create object oref.
    set handler oref->meth1 for oref.  handler method
    call method oref->meth2.           raise evnt method</b>
    hope it gives  you clear idea,
    Regards,
    Message was edited by:
            sowjanya s

  • Month view- I lose part of the event...

    When I am in month view, many events only show part of the event in the particular day. Such as "Soccer with Alex" will show in the day as " 10:00 AM Soccer with". Now, if you click on the event, you can see all of the details in the pane to the right, but this isn't really that convenient. I have the main window as large as it will go. Sometimes, if I add additional stuff to the event, such as "Soccer with Alex at the playground," it will show up fine. Anyone with any ideas?

    Jared,
    Unfortunately, what you are observing is a typical complaint regarding the iCal display.
    I recommend that you Provide iCal Feedback.
    ;~)

Maybe you are looking for

  • Manage Items in Simple Finder

    I have a three year old who likes watching BBC iPlayer. I have created a managed account and invoked Simple Finder to limit the potential damage he could cause to the computer from random mouse clicks etc. This works great for the most part but the d

  • How to block goods exit regarding a reservation?

    When I reserve all the goods in stock, somebody else still could consume the quantity in stock even though it is reserved by me. Is there a possible way to block the amount of stock which is reserved? I mean the system should not allow 201 movement w

  • Display BLOB from remote database

    Context: We are offloading documents (pdf) from our OLTP database to a dedicated 'output database.' These documents must be displayed from the application on our OLTP database using a database link. Various posts show that querying a BLOB from a remo

  • FB11 Posting Held Doc - prompting to press return every 100 lines when post

    We have a spreadsheet upload program to upload multi line item documents using F-02 and FB11. If there are more than 100 lines, when the final posting of the 'Held' document takes place using FB11, the following prompt is displayed every 100 lines; M

  • Photoshop cc trail download

    where can I download photoshop cc trial?