Unable to trigger my event

dear experts,
                        I need to add some extra features to title bar of my alv report.i got some documents and iam trying on that.Here in my program its displaying the newly created icon but when i click on that icon its not displaying or teriigering my event -
class lcl_event_receiver definition deferred.
TYPE-POOLS: ICON.
data: con type ref to cl_gui_custom_container,
      gr_alvgrid type ref to cl_gui_alv_grid.
DATA: ITAB_EXCLUDE TYPE UI_FUNCTIONS.
DATA: WA_EXCLUDE TYPE UI_FUNC.
data: it_toolbar  TYPE stb_button.
data: begin of itab occurs 0.
        include structure mara.
data: end of itab.
data: event_receiver TYPE REF TO LCL_EVENT_RECEIVER.
select * from mara into table itab.
call screen 1000.
      CLASS lcl_event_receiver DEFINITION
CLASS lcl_event_receiver DEFINITION.
  PUBLIC SECTION.
    class-methods: handle_toolbar for event toolbar of cl_gui_alv_grid importing e_object e_interactive,
    handle_menu_buttons for event menu_button of cl_gui_alv_grid importing e_object e_ucomm,
    handle_USER_COMMAND for event user_command   of cl_gui_alv_grid importing e_ucomm.
ENDCLASS.                    "lcl_event_receiver DEFINITION
      CLASS lcl_event_receiver IMPLEMENTATION
CLASS lcl_event_receiver implementation.
  method handle_toolbar.
    move 'DETAIL-TAIL' TO IT_TOOLBAR-FUNCTION.
    MOVE ICON_DETAIL TO IT_TOOLBAR-ICON.
    MOVE 2 TO IT_TOOLBAR-BUTN_TYPE.
    APPEND IT_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
  ENDMETHOD.                    "handle_toolbar
  METHOD HANDLE_MENU_BUTTONS.
    IF E_UCOMM = 'DETAIL'.
      CALL METHOD e_object->add_function
        EXPORTING
          fcode = 'DISPLAY'
          text  = 'DISPLAY'.
    ENDIF.
  ENDMETHOD.                    "HANDLE_MENU_BUTTONS
  METHOD handle_user_command.
    CASE e_ucomm.
      WHEN 'DISPLAY'.
        MESSAGE 'Menu Clicked' TYPE 'I'.
    ENDCASE.
  ENDMETHOD.                           "handle_user_command
ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
MODULE STATUS_1000 OUTPUT
MODULE STATUS_1000 OUTPUT.
SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'xxx'.
  CREATE OBJECT CON
    EXPORTING
   PARENT                      =
      CONTAINER_NAME              = 'CO_CON'
   STYLE                       =
   LIFETIME                    = lifetime_default
   REPID                       =
   DYNNR                       =
   NO_AUTODEF_PROGID_DYNNR     =
EXCEPTIONS
   CNTL_ERROR                  = 1
   CNTL_SYSTEM_ERROR           = 2
   CREATE_ERROR                = 3
   LIFETIME_ERROR              = 4
   LIFETIME_DYNPRO_DYNPRO_LINK = 5
   others                      = 6
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CREATE OBJECT GR_ALVGRID
    EXPORTING
    I_SHELLSTYLE      = 0
    I_LIFETIME        =
      I_PARENT           =  CON
    I_APPL_EVENTS     = space
    I_PARENTDBG       =
    I_APPLOGPARENT    =
    I_GRAPHICSPARENT  =
    I_NAME            =
    I_FCAT_COMPLETE   = SPACE
  EXCEPTIONS
    ERROR_CNTL_CREATE = 1
    ERROR_CNTL_INIT   = 2
    ERROR_CNTL_LINK   = 3
    ERROR_DP_CREATE   = 4
    others            = 5
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  WA_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_MAXIMUM.
  APPEND WA_EXCLUDE TO ITAB_EXCLUDE.
  WA_EXCLUDE = CL_GUI_ALV_GRID=>MC_mb_SUM.
  APPEND WA_EXCLUDE TO ITAB_EXCLUDE.
  CALL METHOD GR_ALVGRID->SET_TABLE_FOR_FIRST_DISPLAY
    EXPORTING
   I_BUFFER_ACTIVE               =
   I_BYPASSING_BUFFER            =
   I_CONSISTENCY_CHECK           =
      I_STRUCTURE_NAME              = 'MARA'
   IS_VARIANT                    =
   I_SAVE                        =
   I_DEFAULT                     = 'X'
   IS_LAYOUT                     =
   IS_PRINT                      =
   IT_SPECIAL_GROUPS             =
      IT_TOOLBAR_EXCLUDING          = ITAB_EXCLUDE
   IT_HYPERLINK                  =
   IT_ALV_GRAPHICS               =
   IT_EXCEPT_QINFO               =
   IR_SALV_ADAPTER               =
    CHANGING
      IT_OUTTAB                     = ITAB[]
   IT_FIELDCATALOG               =
   IT_SORT                       =
   IT_FILTER                     =
EXCEPTIONS
   INVALID_PARAMETER_COMBINATION = 1
   PROGRAM_ERROR                 = 2
   TOO_MANY_LINES                = 3
   others                        = 4
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CREATE OBJECT event_receiver.
  SET HANDLER event_receiver->handle_user_command
              event_receiver->handle_menu_buttons
              event_receiver->handle_toolbar FOR ALL INSTANCES.  "*Calling the interactive toolbar method of ALV
  CALL METHOD GR_ALVGRID->set_toolbar_interactive.
ENDMODULE.                 " STATUS_1000  OUTPUT
*&      Module  USER_COMMAND_1000  INPUT
      text
MODULE USER_COMMAND_1000 INPUT.
ENDMODULE.                 " USER_COMMAND_1000  INPUT

hi marcin, thanks a lot for your help..i have coded but still unable to trigger user_commaned method.Could you check this in your machine-
class lcl_event_receiver definition deferred.
TYPE-POOLS: ICON.
data: con type ref to cl_gui_custom_container,
      gr_alvgrid type ref to cl_gui_alv_grid.
DATA: ITAB_EXCLUDE TYPE UI_FUNCTIONS.
DATA: WA_EXCLUDE TYPE UI_FUNC.
data: it_toolbar  TYPE stb_button.
data: begin of itab occurs 0.
        include structure mara.
data: end of itab.
data: event_receiver TYPE REF TO LCL_EVENT_RECEIVER.
select * from mara into table itab.
call screen 1000.
      CLASS lcl_event_receiver DEFINITIONL
CLASS lcl_event_receiver DEFINITION.
  PUBLIC SECTION.
    class-methods:
    handle_menu_buttons for event menu_button of cl_gui_alv_grid importing e_object e_ucomm,
    handle_USER_COMMAND for event user_command   of cl_gui_alv_grid importing e_ucomm,
handle_toolbar for event toolbar of cl_gui_alv_grid importing e_object e_interactive.
ENDCLASS.                    "lcl_event_receiver DEFINITION
      CLASS lcl_event_receiver IMPLEMENTATION
CLASS lcl_event_receiver implementation.
  method handle_toolbar.
    move 'DETAIL-TAIL' TO IT_TOOLBAR-FUNCTION.
    MOVE ICON_DETAIL TO IT_TOOLBAR-ICON.
    MOVE 2 TO IT_TOOLBAR-BUTN_TYPE.
    APPEND IT_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
  ENDMETHOD.                    "handle_toolbar
  METHOD HANDLE_MENU_BUTTONS.
    IF E_UCOMM = 'DETAIL-TAIL'.
      CALL METHOD e_object->add_function
        EXPORTING
          fcode = 'DISPLAY-TAIL'
          text  = 'DISPLAY'.
    ENDIF.
  ENDMETHOD.                    "HANDLE_MENU_BUTTONS
  METHOD handle_user_command.
    CASE E_UCOMM.
      WHEN 'DISPLAY-TAIL'.
        MESSAGE 'THESE IS TEST EVENT' TYPE 'I'.
        ENDCASE.
        ENDMETHOD.
        ENDCLASS.
MODULE STATUS_1000 OUTPUT
MODULE STATUS_1000 OUTPUT.
SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'xxx'.
CREATE OBJECT CON
    EXPORTING
   PARENT                      =
      CONTAINER_NAME              = 'CO_CON'
   STYLE                       =
   LIFETIME                    = lifetime_default
   REPID                       =
   DYNNR                       =
   NO_AUTODEF_PROGID_DYNNR     =
EXCEPTIONS
   CNTL_ERROR                  = 1
   CNTL_SYSTEM_ERROR           = 2
   CREATE_ERROR                = 3
   LIFETIME_ERROR              = 4
   LIFETIME_DYNPRO_DYNPRO_LINK = 5
   others                      = 6
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CREATE OBJECT GR_ALVGRID
    EXPORTING
    I_SHELLSTYLE      = 0
    I_LIFETIME        =
      I_PARENT           =  CON
    I_APPL_EVENTS     = space
    I_PARENTDBG       =
    I_APPLOGPARENT    =
    I_GRAPHICSPARENT  =
    I_NAME            =
    I_FCAT_COMPLETE   = SPACE
  EXCEPTIONS
    ERROR_CNTL_CREATE = 1
    ERROR_CNTL_INIT   = 2
    ERROR_CNTL_LINK   = 3
    ERROR_DP_CREATE   = 4
    others            = 5
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  WA_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_MAXIMUM.
  APPEND WA_EXCLUDE TO ITAB_EXCLUDE.
  WA_EXCLUDE = CL_GUI_ALV_GRID=>MC_mb_SUM.
  APPEND WA_EXCLUDE TO ITAB_EXCLUDE.
CALL METHOD GR_ALVGRID->SET_TABLE_FOR_FIRST_DISPLAY
    EXPORTING
   I_BUFFER_ACTIVE               =
   I_BYPASSING_BUFFER            =
   I_CONSISTENCY_CHECK           =
      I_STRUCTURE_NAME              = 'MARA'
   IS_VARIANT                    =
   I_SAVE                        =
   I_DEFAULT                     = 'X'
   IS_LAYOUT                     =
   IS_PRINT                      =
   IT_SPECIAL_GROUPS             =
      IT_TOOLBAR_EXCLUDING          = ITAB_EXCLUDE
   IT_HYPERLINK                  =
   IT_ALV_GRAPHICS               =
   IT_EXCEPT_QINFO               =
   IR_SALV_ADAPTER               =
    CHANGING
      IT_OUTTAB                     = ITAB[]
   IT_FIELDCATALOG               =
   IT_SORT                       =
   IT_FILTER                     =
EXCEPTIONS
   INVALID_PARAMETER_COMBINATION = 1
   PROGRAM_ERROR                 = 2
   TOO_MANY_LINES                = 3
   others                        = 4
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CREATE OBJECT event_receiver.
  SET HANDLER  event_receiver->handle_menu_buttons
              event_receiver->handle_toolbar
              event_receiver->handle_user_command
              FOR ALL INSTANCES.
  CALL METHOD GR_ALVGRID->set_toolbar_interactive.
ENDMODULE.                 " STATUS_1000  OUTPUT
*&      Module  USER_COMMAND_1000  INPUT
      text
MODULE USER_COMMAND_1000 INPUT.
ENDMODULE.                 " USER_COMMAND_1000  INPUT

Similar Messages

  • Roadmapstep element "RoundtripEnd" type unable to trigger events

    Hi All,
    I have added a roadmapstep ui element under a roadmap ui element.I have made the type property as "roundtripend" and also enabled property as "true".But when I run the application the particular roadmapstep is showing as disabled and i am unable to trigger event by clicking it(it is showing as disabled and unclickable).Do i need to do any type of coding here.
    Any help greatly appreciated.Thanks

    Hi,
    Steps to create Roadmap.
    1>Insert a child->select Roadmap
    Properties:
    StartPointDesign->selected
    2>Under that Insert RoadmapStep.
    Proeprties:
    Description:Give the name as u like:Ex:View1
    Design:Selected
    Runtime Design:create one attribute(setCtx_Rdmap) in the view context and set the type as:
    com.sap.ide.webdynpro.uielementdefinitions.RoadMapStepDesign
    wdContext.currentContextElement().setCtx_Rdmap(WDRoadMapStepDesign.SELECTED);
    In the code u can select the roadmap by using this code
    Regards,
    LG

  • How to trigger left_click_run event on ALV GRID

    Hiiiiiiii........
    Can any of u please tell me how to trigger left_click_run event on ALV GRID.
         There is an event LEFT_CLICK_RUN and  its a public accessed event. But the problem is , the corresponding  attribute of this event  "EVENT_LEFT_CLICK_RUN" which is needed to registered that event (We need to register our events through a method set_register_events  using table of type cntl_simple_events...) is protect accessed. So I am unable to use that attribute...Could u please tell  me is there any alternative way to register that event.......ANY POSSIBLE WAY?
    Thanks in advance,
    Rams

    I think you should use event selection_changed. Note that you shouldn't allow multiple selection for the tree at the same time, i.e. use: create object g_tree exporting \[...\] node_selection_mode = cl_gui_column_tree=&gt;node_sel_mode_single.
    For more information, see this thread: Urgently required :  cl_gui_alv_tree single_click event...

  • Trigger an event in app2 from app1?

    Hi all,
    Is there a way for me to trigger an event in another application from my current application? Example: a button in my current view1 in zcomponent1 action is to fire up the action of a submit button in view2 of zcomponent2?

    Hi Vishal,
    According to you:
    "You can add all the code on the press of the button in zcomponent2 in the method of the component controller of zcomponent2.
    Then declare the usage of zcomponent2 in zcomponent1. Now call the same menthod in the button in Zcomponent1, which u are using in the button of Zcomponent2. make sure that the interface flag is checked for the component controller method to call it in another component."
    Now how do I call the same method in the button in Zcomponent1? I already embedded zcomponent2 inside my zcomponent1. I used code wizard (method call in used controller) but unable to find the zcomponent2 in it.
    *Note: In Zcomponent2 is a button which call the method abc in Zcomponent2 component controller (is ticked in interface checkbox)
    What else have I missed?

  • BRF+ Trigger via Event, change on field value, etc

    Hi,
    I'm implenting BRF+ for SPM Claims & Returns Process.
    It took me a while to understand how I can set up an application, Function from type event, Rulesets, rules, etc but at the end it seems that it is a tremendous improvement compared to BRF!
    So far I have triggered the BRF+ via the CRMV_EVENT_CUST table calling a function module that triggers the BRF+ Function and receives an CRM Log message but this solution is not sufficient for all locations I want to call the BRF+.
    At first I want to call the BRF+ for the Entryvalidation: Entering a Claim with a item net value below a threashold should not be saveable.
    The second call should be to decide if the Claim will be automatically approved or set to manual investigation: This is a check that will lead to a item status change.
    The third and last check will be fullfilled by saving the Claim document: a whole set of business rules have to run and set maybe an incompleteness or process some error messages.
    I neither any information in SAP Documentation, nor on any ressource on the net any information about customing the BRF+ Solution.
    Is there any customizing in the system, as it is for BRF, that allows me to trigger the BRF+ for Business Transaction Category, Business Transaction or ItemCategories?
    Furthermore, is there an option to call BRF+ via customizing that "listens" to a field change as Reason Code ( CODEGRUPPE, KATALOGART,CODE in the Subjectprofile?)
    Can I define Events that trigger the BRF+ as in the BRF customizing?
    When I search the IMG for BRFPLUS, I find a couple of entries, but doubleclicking on this search results doesn't jump to the customizing step.
    It would be very helpfull to get some input in these topics.
    Kind regards,
    Sven

    Hi Tiwari,
    yes, the screenshot was from CRM-Financial, but available in CRM Transaction Processing:
    And I agree to your statement that there is no such customizing, because I neither found this Customizing, except:
    Using the search in the customizing IMG, you will find 3 customizing entries with BRF+ or BRFPLUS, but clicking on them you will land in Nirvana, and not in the proper customizing tree.
    But still the overall trigger for my message here is, that the BRF could be triggered via Customizing that doesn't seem to exist for BRF+ and that's strange!
    I hope someone knows how the replacement of BRF with BRF+ is intended from this customizing point of view. I have to trigger a lot of different functions and using the old BRF I could trigger this Events using this customizing setup.
    Thanks,
    Sven

  • Automatically trigger the event to load data from Planning cube to Standard Cube

    Hello,
    We have a below set up in our system..
    1. A Planning BEx query using which user makes certain entries and writes back data to the planning cube.
    2. An actual reporting cube which gets data from the planning cube above.
    Now, what we want to do is to automate the data load from Planning cube to Reporting cube.
    This involves 2 things..
    1. Change the setting " Change real time load behaviour " of the planing cube to Planning.
    2. Trigger the DTP which loads data from Planning cube to reporting cube.
    We want to automate the above two steps...
    I have tried few things to achieve the same..
    1. Created an event in SM64,
    2. In the Planning cube "Manage" Screen,  clicked on "Subsequent Processing" and provided the event details. ( Not sure if its the correct place to provide the event detail ).
    3. Wrote a ABAP program which changes the setting of the planning cube (  " Change real time load behaviour " to Loading )
    4. Created a process chain, where we have used the event as a start variant, used the ABAP program as a next step, DTP run as the last step..
    This i hoped, would trigger the event as soon as a new request comes and sits in planning cube, which in turn would trigger the process chain which would load the data from Planning cube to reporting cube..
    This is not working. I dont think the event is triggering, and even if does i am not sure whether it will start the process chain automatically. Any ideas please ?

    hi,
    try to do the transformation directly in the input cube by using CR of type exit, more details :
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/43/1c3d0f31b70701e10000000a422035/content.htm
    hope it helps.

  • How can I trigger an event from an ABAP Program

    Hi everyone,
    I have a requirement, where I have to create an ABAP program, that has to execute (trigger) an event which belongs to a Process Chain. when I run the program, the Process Chain has to run.
    So, how can I do it?
    Thanks for your help, Federico

    HI ,
    The program can call function module BP_EVENT_RAISE to raise the event. you can create vent in sm64 and sm62 .There you give the parameter of the event same as what you will define in the event of start variant of your process chian ..
    Regards,
    shikha

  • Trigger an event in the parent view, when popping a child view (Mobile)

    So from one view I'm pushing another view with some data:
    <s:Button label="Edit System" click="navigator.pushView(EditSystem, systems.selectedItem)"/>
    The problem I have is that in this other view I'm updating a view things in my sqlite database, so when I pop the 'EditSystem' view and return to the original, I want to run a function to requery the the sql so I can update a view things in the original view. But from what I can fugure Eventlisteners dont work across views? How do I trigger an event in the original view when I return from a child view via pop? 

    You should find this post useful: http://flexponential.com/2010/12/05/saving-scroll-position-between-views-in-a-mobile-flex- application/
    It demonstrates one way of saving and restoring data when pushing and popping a view.

  • Unable to Edit any event in iCal

    I am unable to edit any event in I cal, the only options I have available to me is to accept or decline the event, Help

    Ok cool, I have changed the time displayed to Military 24H in Time and Date setting ... while keeping my International region to Canada ... and iCAl still seems to be working well! Great!
    Again thank you very much! I have recently transitioned from WIN to MAC and this was making me crazy!
    - a.

  • Unable to create new events in iCal

    I updated my iPhone 4 to iOS7, and now when I try to create a new event in iCal, nothing happens. I am able to tap the "+" and enter the event information, but when I tap "Done", no new event appears in the calendar.
    If I, instead, create the event in the Calendar on my PC, the phone syncs with Outlook, and the event appears on the phone's iCal app.
    Why am I suddenly unable to create new events on my phone in iOS7, and how can I fix this issue?

    Thanks! I've noticed the phone has been a bit "clunky" since the update too. Did you experience the same thing & did the hard restart help?

  • Is it able to refresh the table view automaticlly after trigger an event?

    Hi expert,
    I have one table view and a "Delete" button, each time when the user click the del button, it will delete the row which is selected via a RFC module in the backend, afterwards, I want this table view to be refreshed and read the real data from backend via another function module, is it possible? how could I do it?
    Thanks and best regards

    Let me do some summarize if my understanding is correct
    1. Use a timer as "start" point of a table view, set the "interval" to be 0.05 minute
    2. use the condition in the timer with a formula (BOOL(STORE@RETURN_CODE==0)).
    3. If I trigger one event in the "table view", for example, a "Delete" event and it will return the result RETURN_CODE = 0 to datastore
    4. Afterwards, if the time interval of the timer has been reached, 1st it will evaluate the value of the datastore and decide whether to refresh the table view.
    Am I right?
    Just as you mentioned before, it is not a perfect solution, as we may still wait for the timer to be triggered after a few seconds.
    Thanks for your answer.

  • Using the keydown option in order to trigger an event

    Hi all,
    This is my first question on this forum, and that is probably because i just started learning labview.
    I came across with an error, i could most likely solve in another programming language using C, but not in labview.
    I was wondering if someone could give me a hand with the following:
    I attached the program, which is probably a bit bad-written. Basicly, what im trying with the part on the left, is read all values from a controller on a GPIB bus.
    This part works like a charm, because i get all the values i want without any problem. After that, in the last step of this program, you have a while loop, with in there an event structure. The reason i took a while for that is because i dont want the program to start over at step 1. The event structure was first used with clicks of the mouse on the buttons, and a changed value with the numeric controls. Because a changed value did not work, cause the loop was constantly reading the values coming from the initial phases, i wanted to change the way the events were handled by a keydown of 'Enter'. I think, when you change a value in a numeric control and press enter, this could be perfectly used to trigger the events, instead of the value changes (because everytime the program reads the values in the sides, i think its considered like a value change). The fact is i dont really have an idea how to use the keydown as an event handler, any info on this would be greatly appreciated.
    I'm sorry if my english isn't the best, it's only my 3th language. Hope you understood and i can get some help for this issue
    Thanks in advance
    Thomas De Landtsheer
    Student
    Solved!
    Go to Solution.
    Attachments:
    Labview detection of keystroke.vi ‏197 KB

    The problem is a few
    blocks we havent really seen yet. All these numerics and stuff outside
    the while loop, what are they exactly, or are they just a different way
    of viewing them? The stuff with the digital at INI phase, The block
    in the lower right corner of the INI phase.
    The digital block in the
    dispatcher phase we didn't really understand. 
    I am not sure what you mean here can you circle it and send me a picture so that I can explain.
    Tim
    Johnson Controls
    Holland Michigan

  • Unable to open the events in Iphoto or transfer photos to create a book?

    Unable to open the events in Iphoto or transfer photos to create a book. The events are there but I am when double clicking they are not opening up. Also I am unable to drag photos to create a book. Any suggestions??

    Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder Window should open with the file selected. Does it?
    Regards
    TD

  • Autosys user unable to trigger the Process Chain.

    Hi all,
    we need to run a process chain daily, So we are inserted the PC triggering Job in Autosys, some time autosys unable to trigger the job..
    Can any one please help me in this issue....
    Waiting for responce...
    Thanks in advance,

    Dear all,
    Here is my error while triggering the Porcess chain by Autosys,
    <i> the error: %CASAP_E_222 Process chain <process_chain_name_here> could not be started. Please validate the Direct Scheduling selections in the Start Process variant.
    Can any one please suggest me ,
    Note: I Validate the Direct Scheduling selections in the Start Process variant already but still iam getting the same error...</i>
    Thanks in advance,
    Points will be assigned diffenatly.

  • How to trigger own events?

    How can you create your own events to be triggered?
    For instance, I have an InputStream that I've got through a Socket that's listening for incoming data. I want to signal/trigger an event when data comes in so that the gui (in another class) can take appropriate actions. How can you do this?

    The basic idea is this:
    public interface SockeListener
        void dataEvent(/* pass a parameter if needed.  Often an event interface is added */);
    public class MySocket
         private final List listeners = new ArrayList();
         public void addListener(SocketListener listener)
              listeners.add(listener);
         public void removeListener(SocketListener listener)
              listeners.remove(listener);
         private void triggerEvent()
               for (Iterator i = listeners.iterator(); i.hasNext();)
                    ((SocketListener) i).dataEvent();
    }Check out the PropertyChangeSupport class also.

Maybe you are looking for

  • Finder crashes when trying to open HD/Folders/Console/App Store

    Recently I tried running the recent update for Mountain Lion on my 4 year old Macbook. It seemed that the install went fine, but now i'm having an issue where Finder keeps crashing whenever I try to open the hard disk or any file folder. It also cras

  • HT201471 What generation is my IPAD modell MC496KS

    What generation is my IPAD MC496KS? I,m presently running IOS 5.1.1, will I foresee technical chalanges if upgrading to IOS 6? Cheers, Mark

  • Which product is best for watermarking photos

    I am new to photo editing software. I'd like to add my logo to my pics in bulk. What product will do this for me the fastest and easiest way?

  • BADI via IDOC ? - WORKORDER_GOODSMVT

    Hi to all, I've got BADI WORKORDER_GOODSMVT implemented, Using method backfush I'm evaluating reservation numb. in structure CT_COMPONENTS, and all it's working pretty good by starting transactions CO11N, Real issue is I need this process working via

  • Under line in Sap Script

    Hi Experts, can body let me know how can we underline for word or sentence in sap script out put? Regards