SAP C_EVENTS OO Class - Events themselves and Raise Events









C_EVENTS is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class C_EVENTS including details of:

  • Interface class implementations
  • Inheritance details
  • Methods defined within class ( including link to full details )
  • Attributes ( including initial values )
  • Class Events



Method list of C_EVENTS SAP class


A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD. Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...


Method NameDescriptionVisability
RE_ACTIVATED_DETAILTriggers activated_main-EventPublic
CALL METHOD c_events=>RE_ACTIVATED_DETAIL...more details

RE_ACTIVATED_MAINTriggers activated_main-EventPublic
CALL METHOD c_events=>RE_ACTIVATED_MAIN...more details

RE_DATA_CHANGE_BEGINPrivate
CALL METHOD c_events=>RE_DATA_CHANGE_BEGIN...more details

RE_DATA_CHANGE_FINISHEDTrigger Data_change_finished EventPublic
CALL METHOD c_events=>RE_DATA_CHANGE_FINISHED...more details

RE_HEADER_CHANGEDRaise Event Header ChangedPublic
CALL METHOD c_events=>RE_HEADER_CHANGED...more details

RE_ITEM_DOUBLE_CLICKEDTriggers Item_Double_Clicked EventPublic
CALL METHOD c_events=>RE_ITEM_DOUBLE_CLICKED...more details

RE_JOB_FINISHEDPrivate
CALL METHOD c_events=>RE_JOB_FINISHED...more details

RE_LOAD_DATATriggers Load_Data EventPublic
CALL METHOD c_events=>RE_LOAD_DATA...more details

RE_METHOD_CHANGEDTriggers method changedPublic
CALL METHOD c_events=>RE_METHOD_CHANGED...more details

RE_ON_PAIPrivate
CALL METHOD c_events=>RE_ON_PAI...more details

RE_ON_PBOPrivate
CALL METHOD c_events=>RE_ON_PBO...more details

RE_REFRESHTriggers Refresh-EventPublic
CALL METHOD c_events=>RE_REFRESH...more details

RE_SET_CHANGE_MODETriggers Set_Change_Mode EventPublic
CALL METHOD c_events=>RE_SET_CHANGE_MODE...more details

RE_SHOW_MESSAGESDisply Data from Applcation LogPublic
CALL METHOD c_events=>RE_SHOW_MESSAGES...more details

RE_STORE_DATATriggers Store_Data-EventPublic
CALL METHOD c_events=>RE_STORE_DATA...more details

RE_TIMER_TRIGGEREDTriggers Timer_triggered-EventPublic
CALL METHOD c_events=>RE_TIMER_TRIGGERED...more details




Events of Class C_EVENTS

Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... ACTIVATED_DETAIL -
ACTIVATED_MAIN -
DATA_CHANGE_BEGIN -
DATA_CHANGE_FINISHED - Data Change Completed
HEADER_CHANGED - Template/Task Plan Was Changed
ITEM_DOUBLE_CLICKED - Double-Click from CNODE or CITRMX Objects
JOB_FINISHED - Task complete
LOAD_DATA - Is Called During Load
METHOD_CHANGED - Closing hierarchy was changed
ON_PAI - Triggered at Event PAI
ON_PBO - Triggered at Event PBO
REFRESH - Update Display
SET_CHANGE_MODE - Change Mode Changes
SHOW_MESSAGES - Display application log
STORE_DATA - Called During Save
TIMER_TRIGGERED - Timer Was Triggered

Links to Related Class(s)

C_EVENTS...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!