Job execution depend on more than one event

Hi gurus,
Does anybody know if there is some way to execute a JOB dependent of more than one event raised?
I have a JOB that need to be executed only when two events are raised.
I have created those events using tCode SM62.
Thanks in advance,
Silvio Messias

These more complex dependencies cannot be realised in the SAP standard (as far as I know), I assume the events could come in any order, so I have a hard time thinking about a workaround.
You probably need external scheduling software (like TWS or Batchman), or program your own add-on solution.
Thomas

Similar Messages

  • Can I have a photo in more than one event?

    I understand that it is normally not possible to have one photo in more than one event at a time.
    I am quite careful about arranging my photos into events logically, but find in my library tere are several events called [Date] Photo Stream, which I've not delivberately created. It appears that in many cases the photos these Photo stream events contain are also in other events.
    Can anyone tell me what is going on here? Can I safely delete the Photostream events and their contents?

    To have a photo in more than one Event it must be duplicated and the duplicate added to the other Event.  A photo can be in multiple albums, books, slideshows without having to duplicate the photo as those use pointers to the original photo.
    At the beginning of each month new photos in the Shoto Stream are imported into an Event with the month and year as the Event name.  All photos taken that month are added to that Event.  That's because the iPhoto/Photo Stream preferences are set to auto import photos taken by your mobile devices:
    Events are basically buckets of photos based on the date taken and how you've setup iPhoto's preferences for importing photos:
    Merging Events can change the location in the resulting event among the other events due to the variety of dates of the photos.
    OT

  • How can i use the same front panel graph in more than one events in an event structure?

    i want to display the signals from my sensorDAQ in a graph.but i have more than one event in the event structure to acquire the signal and display it in the graph.the first event is to acquire the threshold signals and its displayed in the graph as a feedback.after the first event is executed, i will call the second event,where the further signals are acuired and compared with the threshold signals from the event 1.my question is how can i use the same front panel control in more than two events in the event structure?please answer me i'm stuck.
    Solved!
    Go to Solution.

    Hi,
    I have attached here an example of doing the same using shift registers and local variables. Take a look. Shift register is always a better option than local variables.
    Regards,
    Nitzz
    (Give kudos to good answers, Mark it as a solution if your problem is Solved) 
    Attachments:
    Graph and shift registers.vi ‏12 KB
    graph and local variables.vi ‏12 KB

  • Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File - Export - Album name with number).

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

  • Can a Method listen to more than one event in ABAP OO ?

    Hi,
    is it possible to prepare/register a handler method for e.g two events of two different classes ?
    Or can a method generally listen to only one event ?
    It seems that the syntax allows only one event ?
    methods event_handler for event my_event of my_class.
    Thanks for help in advance
    Olaf

    An event can refer to more than one object but you have to instantiate the objects
    for example   I have 2 grids and want to handle events depending on which grid
    the user is selecting / requesting actions on. (I've just posted the relevant bits coded here as data extraction etc you can code normally).
    FORM instantiate_grid
    * Create Grid container
    * Instantiate Grid class
    * Instantiate Event Handler class
    * Display the Grid
       USING  grid_container  TYPE REF TO cl_gui_custom_container
              class_object  TYPE REF TO cl_gui_alv_grid
              container_name TYPE scrfname.
    * create the container
      CREATE OBJECT grid_container
      EXPORTING container_name = container_name.
    * Create the ALV grid object using
    * container just created
      CREATE OBJECT  class_object
      EXPORTING
         i_parent = grid_container.
    *  Exclude the SUM function from the GRID toolbar
      ls_exclude = cl_gui_alv_grid=>mc_fc_sum.
      APPEND ls_exclude TO lt_exclude.
    * Instantiate our handler class
    * lcl_event_handler
      CALL METHOD class_object->register_edit_event
        EXPORTING
          i_event_id = cl_gui_alv_grid=>mc_evt_enter.
      CREATE OBJECT g_handler.
      SET HANDLER g_handler->handle_double_click FOR class_object.
      SET HANDLER g_handler->handle_hotspot_click FOR class_object.
      SET HANDLER g_handler->handle_toolbar FOR class_object.
      SET HANDLER g_handler->handle_user_command FOR class_object.
      SET HANDLER g_handler->handle_data_changed FOR class_object.
      SET HANDLER g_handler->handle_data_changed_finished FOR class_object.
    ENDFORM.                    "instantiate_grid
    MODULE status_0100 OUTPUT.
      IF grid_container IS INITIAL.
        PERFORM instantiate_grid
           USING grid_container
                 grid1
                 'CCONTAINER1'.
    * Grid title Primary Grid
        struct_grid_lset-grid_title = 'Delimit Old org Units - Selection'.
        struct_grid_lset-edit =  'X'.
        struct_grid_lset-sel_mode = 'D'.
        PERFORM display_grid
         USING
            grid1
             <dyn_table>
             it_fldcat.
      ENDIF.
      SET PF-STATUS '001'.
      SET TITLEBAR '000' WITH 'Delimit Old Org Units'.
    ENDMODULE.                    "status_0100 OUTPUT
    * PAI module
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANC'.
          LEAVE PROGRAM.
        WHEN 'RETURN'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    MODULE status_0200 OUTPUT.
      IF grid_container1 IS INITIAL.
        PERFORM instantiate_grid
           USING grid_container1
                 grid2
                 'CCONTAINER2'.
    * Grid title  secondary grid
        struct_grid_lset-grid_title = 'Delimited Objects'.
        struct_grid_lset-edit =  ' '.
        PERFORM display_grid
         USING
            grid2
             <dyn_table1>
             it_fldcat1.
      SET PF-STATUS '001'.
      SET TITLEBAR '000' WITH 'Org Units Delimited'.
    endif.
    ENDMODULE.                    "status_0200 OUTPUT
    In your local event handling class use the variable SENDER to  determine which grid / object triggered the event
    for example
    CLASS lcl_event_handler DEFINITION .
      PUBLIC SECTION .
        METHODS:
    **Hot spot Handler
        handle_hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
                          IMPORTING e_row_id e_column_id es_row_no,
    **Double Click Handler
        handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
                                        IMPORTING e_row e_column es_row_no
                                        sender,
    ** Toolbar handler.
    handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive
                sender,
    * button press
        handle_user_command
            FOR EVENT user_command OF cl_gui_alv_grid
                IMPORTING e_ucomm
                 sender,
    * data changed
    handle_data_changed
        FOR EVENT data_changed OF cl_gui_alv_grid
          IMPORTING er_data_changed,
    *data changed finished
    handle_data_changed_finished
         FOR EVENT data_changed OF cl_gui_alv_grid,
    download_to_excel.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    * Implementation methods for lcl_event_handler
    CLASS lcl_event_handler IMPLEMENTATION.
    *Handle Hotspot Click
    * When a "hotspotted"cell is double clicked
    * Hotspot indicatore needs to be set in
    * the field catalog.
    * Not required for this application.
      METHOD handle_hotspot_click .
        PERFORM mouse_click
          USING e_row_id
                e_column_id.
        CALL METHOD grid1->get_current_cell
          IMPORTING
            e_row     = ls_row
            e_value   = ls_value
            e_col     = ls_col
            es_row_id = ls_row_id
            es_col_id = ls_col_id
            es_row_no = es_row_no.
        CALL METHOD grid1->refresh_table_display.
        CALL METHOD grid1->set_current_cell_via_id
          EXPORTING
            is_column_id = e_column_id
            is_row_no    = es_row_no.
      ENDMETHOD.                    "lcl_event_handler
    *Handle Double Click
      METHOD  handle_double_click.
        CASE sender.
          WHEN grid1.
    * returns cell double clicked  FROM GRID 1
    * Ignore any event from GRID 2
            PERFORM double_click
               USING e_row
               e_column.
        ENDCASE.
      ENDMETHOD.                    "handle_double_click
    * Add our buttons to standard toolbar
      METHOD handle_toolbar.
        CASE sender.
    * Only add functionality to PRIMARY GRID (GRID 1)
          WHEN grid1.
    * append a separator to normal toolbar
            CLEAR ls_toolbar.
            MOVE 3 TO ls_toolbar-butn_type.
            APPEND ls_toolbar TO e_object->mt_toolbar.
    * Delimit Org
            CLEAR ls_toolbar.
            MOVE 'PROC' TO ls_toolbar-function.
            MOVE icon_railway TO ls_toolbar-icon.
            MOVE 'DELIMIT' TO ls_toolbar-quickinfo.
            MOVE 'DELIMIT ORG UNIT' TO ls_toolbar-text.
            MOVE ' ' TO ls_toolbar-disabled.
            APPEND ls_toolbar TO e_object->mt_toolbar.
    * Select All Rows
            MOVE 'SELE' TO ls_toolbar-function.
            MOVE icon_select_all TO ls_toolbar-icon.
            MOVE 'ALL CELLS' TO ls_toolbar-quickinfo.
            MOVE 'ALL CELLS' TO ls_toolbar-text.
            MOVE ' ' TO ls_toolbar-disabled.
            APPEND ls_toolbar TO e_object->mt_toolbar.
    * Deselect all Rows.
            MOVE 'DSEL' TO ls_toolbar-function.
            MOVE icon_deselect_all TO ls_toolbar-icon.
            MOVE 'DESELECT ALL' TO ls_toolbar-quickinfo.
            MOVE 'DESELECT ALL' TO ls_toolbar-text.
            MOVE ' ' TO ls_toolbar-disabled.
            APPEND ls_toolbar TO e_object->mt_toolbar.
            ENDCASE.
         move  0 to ls_toolbar-butn_type.
         move 'EXCEL' to ls_toolbar-function.
         move  space to ls_toolbar-disabled.
         move  icon_xxl to ls_toolbar-icon.
         move 'Excel' to ls_toolbar-quickinfo.
         move  'EXCEL' to ls_toolbar-text.
         append ls_toolbar to e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
      METHOD handle_user_command.
    * Entered when a user presses a Grid toolbar
    * standard toolbar functions processed
    * normally
       g_sender = sender.
        CASE e_ucomm.
          WHEN 'PROC'.    "Process selected data
            PERFORM get_selected_rows.
          WHEN 'SELE'.
            PERFORM select_all_rows.
          WHEN 'DSEL'.
            PERFORM deselect_all_rows.
          WHEN 'EXCEL'.
              call method me->download_to_excel.
            WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
      METHOD handle_data_changed.
    * only entered on data change  Not req for ths app.
        PERFORM data_changed USING er_data_changed.
      ENDMETHOD.                    "data_changed
      METHOD handle_data_changed_finished.
    * only entered on data change finished  Not req for ths app.
        PERFORM data_changed_finished.
      ENDMETHOD.                    "data_changed_finished
    * Interactive download to excel
      method download_to_excel.
      field-symbols:
       <qs0>   type standard table,
       <qs1>   type standard table.
      data: G_OUTTAB1 type ref to data,
            g_fldcat1 type ref to data,
            LS_LAYOUT type KKBLO_LAYOUT,
            LT_FIELDCAT type KKBLO_T_FIELDCAT,
            LT_FIELDCAT_WA type KKBLO_FIELDCAT,
            L_TABNAME type SLIS_TABNAME.
    case g_sender.
      when grid1.
         get reference of <dyn_table> into g_outtab1.
         get reference of it_fldcat into g_fldcat1.
       when grid2.
       get reference of <dyn_table1> into g_outtab1.
         get reference of it_fldcat1 into g_fldcat1.
    endcase.
       assign g_outtab1->* to <qs0>.
        assign g_fldcat1->* to <qs1>.
           call function  'LVC_TRANSFER_TO_KKBLO'
          exporting
            it_fieldcat_lvc   = <qs1>
    *     is_layout_lvc     = m_cl_variant->ms_layout
             is_tech_complete  = ' '
          importing
            es_layout_kkblo   = ls_layout
            et_fieldcat_kkblo = lt_fieldcat.
        loop at lt_fieldcat into lt_fieldcat_wa.
          clear lt_fieldcat_wa-tech_complete.
          if lt_fieldcat_wa-tabname is initial.
            lt_fieldcat_wa-tabname = '1'.
            modify lt_fieldcat from lt_fieldcat_wa.
          endif.
          l_tabname = lt_fieldcat_wa-tabname.
        endloop.
        call function 'ALV_XXL_CALL'
             exporting
                  i_tabname           = l_tabname
                  is_layout           = ls_layout
                  it_fieldcat         = lt_fieldcat
                  i_title             = sy-title
             tables
                  it_outtab           = <qs0>
             exceptions
                  fatal_error         = 1
                  no_display_possible = 2
                  others              = 3.
        if  sy-subrc <> 0.
          message id sy-msgid type 'S' number sy-msgno
                 with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
    endmethod.
    ENDCLASS.                    "lcl_event_handler IMPLEMENTATION
    The sender instance is a variable such as  g_sender type ref to cl_gui_alv_grid.       "Sender instance.
    The above example is for OO ALV grids but should work for other interactive cases where a User presses a key or does a mouse action.
    Cheers
    jimbo

  • Has anyone used more than one event for one project?

    Hi,
    I have an opinion about Final Cut Pro X that hasn't changed since my first few days with it.  I waited to see if I would get used to it.  But, after a fair amount of time, I still am not comfortable with 'Events' and 'Projects'.  The separation of the media and projects creates more problems than solutions with my workflow.
    The purpose of it was to add flexibility for both the professionals and consumers using it, but my first impressions are still the same.  The new Event and Project system adds complexity to organization and archiving.  I wouldn't write this if it wasn't enough of a hindrance for me, that I encounter constantly.  I think the new Final Cut Pro X is incredible, but this issue is definitely important to me.
    Has anyone out there used more than 1 Event for 1 Project?  Some of us create more than 1 Project for an Event, to make different version of a video, or for brainstorming, or to make a part 1 and part 2 of a video, but I've never had more than 1 Event for 1 Project.  I don't need to use the media from multiple Events for the same Project.  And I've never used it for a reason.  I don't think someone will want to use their Hawaii vacation footage for a Denver vacation project, and a Florida vacation project.  I think we should bring back the connection between Events and Projects in a meaningful way. 
    This is a throw back to the older days, but that's not always a bad thing.  Let us keep our projects, or timelines, in the Events folder.  Make an area above the JPG section, and PNG section, and MOV section, and call it the Projects section.  Then we can easily find our Projects and add a new Project every time we need it, and organize our files quickly - without having to keep track of more windows. Final Cut Pro X is all about being more simplified than other video programs, and I think this goes right along with that idea.
    Thanks,
    - David

    My original fear was that FCPX was just going to be iMovie Pro... It so is not!
    People use the interface in different ways. I think that's what most of us like about it, it's flexibiity to accommodate different types of workflows.  For me, I use the Events browser mostly like I'd be using the Finder. All the imported clips I use are referenced by the hard disks on which they reside. I know where to find them in the Event Browser and I know where to find them in the Finder.  I use a lot of stock footage and therefore *reuse* a lot of stock footage from project to project. I'm not going to re-import duplicates into different events because I don't find that the least bit convenient and I do find it a terrible waste of precious HD real estate.
    But that's me.
    Some people like to load up everything they're going to use in a single project in a single event... I get that. You can command click your way through a bunch of clips, type E and everything is automatically arranged on your storyline in the order you selected the clips. That is *awesome*!! Instant storyline (/timeline.) Furthermore, for those that need to share projects, it's easier to bundle up the events and projects if they're all together (albeit in two different folders) on one disk (— at least they are always at the top level of the drive and easy to find.)
    Keeping your Events media in a different location (satellite drives) and keeping your current project on your *fastest* drive is probably the fastest way to edit (particularly if your satellite drives are Firewire or Thunderbolt [peer-to-peer interfaces don't hog system resources].) There is little cross interference in disk accesses that way. So essentially, you can keep FCPX dealing with original clip data that doesn't need to be quite as fast, reading and writing to slower drives on your system, while letting it plow through the heavy work on your fastest access drive (usually your internal HD.)
    By no means is FCPX "more simplified". It has a huge amount of power. It has all the best parts of Color, Soundtrack Pro and Motion built in. It allows you to explore *ideas* in real time rather than having to plan for them a week in advance [layout, round-tripping plans to Color, STP and/or Motion for titling or effects.]  You can grab and move around elements anywhere on your "palette" with simple mouse moves and an occasional key press. The list goes on. Bottom line, it doesn't matter how you organize your events or your projects. It's all about the finished product. And for me, I can turn that around in about 1/5th the time (not claiming it's great — but I think better results in 20% of the time, on average, than it would have taken in Studio.) [Not a professional video editor -- I'm a graphic designer, and I develop Motion graphics for FCPX to make all "you guys" look better.]

  • Conditions for regions depending on more than one element

    Good morning,
    I've got an easy question: I want a region only to be shown, when elements (:P1_x, :P1_y, :P1_z) are null. this is no problem if showing region depends on only one element:
    "Der Wert des Elements in Ausdruck1 ist NOT NULL" --&gt; so Ausdruck1 is filled with: P1_x
    But how can I simplfy APEX, that showing region depends on more then only this one element . I tried with AND (P1_x and P1_y and P1_z) or with semikolon (P1_x; P1_y; P1_z), but it doesn't work.
    So how can I tell APEX more than only one condition for showing region?
    thank you...

    Bettina,
    Condition type of:
    PL/SQL Expression
    Expresion:
    :P1_ITEM1 IS NULL
    AND
    :P1_ITEM2 IS NULL
    AND
    :P1_ITEM3 IS NULL
    Does that solve your problem?
    Andy

  • Use Images in Reports in dependency of more than one criteria

    Hello,
    I would like to use Images in Reports as described in Tips & Tricks (green and red point image), but I don't know how to do this if I have more than on criteria. The point is, how to link it to the report. <br>
    I wrote this pl/sql-code, he would check the criterias:
    <br><br>
    BEGIN<br>
    DECLARE<br>
    CURSOR ss_alle IS <br>
    --Abfrage aller Datensätze<br>
    SELECT ID, sbb_site_id, code_swisscom, ok_sent_swisscom, ok_back_swisscom FROM acqueasy.ssvertrag;<br>
    BEGIN<br>
    --Eintrag für Eintrag abarbeiten<br>
         FOR ss_id IN ss_alle LOOP<br>
              --Auf Code prüfen<br>
              IF (ss_id.code_swisscom IS NOT NULL) THEN<br>
              --Zustimmung an Swissom gesendet<br>
              IF (ss_id.ok_sent_swisscom IS NULL) THEN<br>
                   --show red point<br>
              ELSE<br>
                   --show green point<br>
              END IF;<br>
              END IF;<br>
         END LOOP;<br>
    END;<br>
    END; <br>
    <br><br>
    Is it possible to set some variables from the current line of the report, where do I have to put this code and how do I have to replace the comment --show ..point (e.g. "<img "down.gif">")
    <br>
    Thanks for your help

    The solution is much easier: http://www.oracle.com/global/de/community/index_v9.html

  • Hierarchies dependent on more than one table

    Hi,
    I am using OBIEE 10.1.3.3 and my question relates to creation of hierarchies in the Business Model and Mapping layer.
    I have two tables Countries and Customer (which has a foreign key relationship with Countries). These tables are from the SH schema that comes with the Oracle 10g database.
    When I create a dimension on Customers, OBIEE automatically creates a level for Countries which is the parent of the Customer Detail level. However the Countries logical table has columns related to Region and Subregion and I would like those columns to be assigned to their own respective levels. So I create levels Region and Sub Region and assign the appropriate column to those levels.
    Howver when I run the consistency checker I get the following error -
    "[nQError: 15019] Table Countries is functionaly dependent upon level Countries, but a more detailed child level has association columns from the same table or a
    more detailed table"
    If I delete the region level and assign the region columns back to the countries level, the model becomes consistent.
    I am not sure I understand the exact meaning of this message and I would appreciate it if some one could guide me about it ?
    Thank you

    I don't think I understand .
    This is how my hierarchy looks like
    Total -> Countries (All columns from countries) -> Customers (All Columns form Customers)
    When it is structured as shown above, the repository is consistent.
    Now if I change the hierachy to this -
    Total -> Countries (All Columns from Countries) -> Region (All Columns from Countries) -> Customers (All columns from Customers)
    I get the error mentioned in my earlier post. Why does OBIEE not like this hierarchy ? It looks pretty OK to me ?
    I would appreciate if you elaborate a little

  • Subscribe to more than one event using one booking form

    Hi,
    I am wondering whether it would be possible to subscribe someone to multiple events at once. Bacially I have a course that is split over 2 days, some people will only want to go to one of the days and some will want to attend both.
    Say I set up 3 events:
    Course X - Day 1
    Course Y - Day 2
    Course Z - Day 1 & 2
    Is it possible to have a seperate booking form for Course Z - Day 1 & 2 that would subscribe them too both Course X - Day 1 and Course Y - Day 2 rather than to Course Z - Day 1 & 2. Can I amend the form action to do this?
    Thanks,
    Dean

    Dean,
    Devil is the detail, but this is possible. BUT NOT SIMPLE!
    Id only ever quote and charge a client to do this, to implement it.
    So id say you could email [email protected] if you wanted and Brett/I can quote you up and do it. You can find someone to help on this as well of course if you want.
    Its complicated because you will be doing javascript, ajax and some tricks with BC, As you can see, BC staff memeber not even sure how you would do it.
    You need to access different bookings and data, create forms of relationships etc.
    But, would need the full run down of the task at hand to properly know if its 100% but you can do this.

  • Is it possible to have more than one event/project in Imovie at the same time?

    Let me see if I can shorten this. I am working on a project for a review. It's going to take quite awhile and I'm half way through it. However, I need to work on another project, one thats short and I can dish out fairly quickly. My problem is that I cannot start it without discarding my current project. Which I cannot do because I will lose a weeks worth of data. And I cannot save it because it will combine all the clips and I would have to re-split them (half a days progress).
    So in short, is there a way to save my project as-is? Or possible create a new event and start a new project while maintaining my current work? Thank you for your help!

    Version 10.0.3 is the latest version of iMovie. iMove '11 (as in 2011) is version 9.
    iMovie saves your Projects automatically. So you can just choose to create a new Project. Your existing Projects will remain available for you to go back to whenever you like.
    You can have as many Projects as you like. You don't need ot finish one before you begin another.
    Post back if you have specific questions.
    Matt

  • Listening for more than one event

    I've been following some online tutorials and am now doing my own program. I have a simple gui that uses radio buttons and a standard JButton, I am trying to write an if statement that does something if one of the Radiobuttons is selected and the JButton is pressed, here is the code I have tried:
              if(e.getSource() == makeTest && e.getSource() == wTest)
                   buttonPanel2.setBackground(Color.green);
              }e is my ActionEvent, makeTest is the JButton and wTest is the radiobutton. This if statement worked fine if it was just testing to see whether makeTest was pressed, so I'm guessing I might have to use another Actionevent to compare a second button? If someone could give me some pointers on this I would much appreciate it.

    If you think some more you will see that it's impossible for e.getSource() to equals 2 different components...
    You should check only if the source is the JButton and then check if the radio button is selected using radioButton.isSelected()

  • Calendar - how to enter more than one event per date and show it in the Month display?

    I would like to enter multiple events (two, anyway) for a single day in the calendar.  I would also like that Month view to display the two events.  So far, all I've been able to do is enter a single event; in fact, only a single line for the single event.  If I enter in Notes, they're not displayed in the Month view.  Thank you.

    I assume that you are tapping the + sign to enter additional events and that is not working so try quitting the app and restart the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Sales Order Generating more than one event when changed

    Hey all,
    I have to trigger a workflow when a sales order is changed (bus2032.changed) .
    The event is triggered when any changes are made and the save button is clicked .
    However my problem lies in the fact that the system produces the event not once but 3 times .
    I checked if there are any active Badis for this , but none exist. Nor are there any user exits implemented. Therefore extra events could not have been called in the Badi nor the user exits .
    Has anybody come across a similar scenario ?
    Could anybody shed some light on this ?
    Thanks and Regards ,
    Amit

    Hi Gareth,
    First , Where do you set this event trigger per line item  ?
    Second, I have done no setting in the system and was just checking the event trace . I did this by changing the PO date on the order and saving the Order.
    Also, the sales order i have used has a single workitem .
    Thanks a lot for your help,
    Amit

  • Can't print more than one job at a time.

    I am trying to print to either a HP DesignJet 1055cm plotter or a HP LaserJet 5000N. I can't send more than one file at a time. If i don't wait until the current job starts printing, the next one won't print. For example if I sent five files one right after the other, I might get 1, 4 and 5. I don't think it's a printer problem because it happens on two different printers, and it doesn't happen when I print from my PC. Any idea what could cause this?

    My work around is to put all the jobs "on hold" in the print settings or just "stop jobs" on the printer window.
    Then I click on each print job in the que and let them print one at a time. This way I can at least quit the program and move onto the next thing.

Maybe you are looking for

  • How to get the pull path name from a file upload window

    Hello everyone! I have encountered the following problem with the following JSP code: <form method="post" action="filename.jsp"> Upload JAVA program: <input type=file size=20 name="fname" accept="java"> <input type=submit value="go"> </form> <% Strin

  • What's wrong with pdf printing?

    I am experiencing two related problems.  If I save a pdf and then later try to load it I get a message saying the file has been damaged so it cannot be accessed.  Also, when printing, I show a blank page.  So I go to pdf preview and that is blank as

  • Crystal Reports for Eclipse Install

    I am attempting to install Crystal Reports for Eclipse.  I am running Eclipse 3.5.0. I am able to find the download at http://downloads.businessobjects.com/akdlm/crystalreportsforeclipse/2_0/update_site/ I select the software to download from within

  • Job error (0x87d00692)

    We have new build SCCM 2012 R2 environment, here in WUAhangler log we could see below error Group policy settings were overwritten by a higher authority (Domain Controller) to: Server Test and Policy ENABLED Failed to Add Update Source for WUAgent of

  • INSTALL SOFTWARE CD STUCK IN SLOT

    Am getting ready to donate my trusty old blueberry. Ran SuperScrubber. Put in install software CD to reinstall everything. It couldn't find hard drive as destination. Computer is running off CD and won't eject. Now what??