OIJ_READ_ARRAY_MD_EVENTS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name OIJ_READ_ARRAY_MD_EVENTS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
OIJ_FM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'OIJ_READ_ARRAY_MD_EVENTS' "Get Master Data Events For an Specific ARea
EXPORTING
it_obj_id = " oij_objid_t Table type of Object ID
iv_app_area = " oi0_apparea Application area
* iv_from_date = " oij_el_valf Validity period start date
* iv_to_date = " oij_el_valf Validity period start date
TABLES
t_oijev = " oijev TD-Vehicle ~ Berth Master Data Events
EXCEPTIONS
OBJ_ID_NULL = 1 " Object ID is null
APP_AREA_IS_NULL = 2 " Application area is null
RECORD_NOT_FOUND = 3 " Record Not Found
. " OIJ_READ_ARRAY_MD_EVENTS
The ABAP code below is a full code listing to execute function module OIJ_READ_ARRAY_MD_EVENTS including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_t_oijev | TYPE STANDARD TABLE OF OIJEV,"TABLES PARAM |
| wa_t_oijev | LIKE LINE OF it_t_oijev . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_it_obj_id | TYPE OIJ_OBJID_T , |
| it_t_oijev | TYPE STANDARD TABLE OF OIJEV , |
| wa_t_oijev | LIKE LINE OF it_t_oijev, |
| ld_iv_app_area | TYPE OI0_APPAREA , |
| ld_iv_from_date | TYPE OIJ_EL_VALF , |
| ld_iv_to_date | TYPE OIJ_EL_VALF . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name OIJ_READ_ARRAY_MD_EVENTS or its description.
OIJ_READ_ARRAY_MD_EVENTS - Get Master Data Events For an Specific ARea OIJ_PRORATE_PREPARE_NOMI_UPD - Prepare nomination item update OIJ_PRORATE_PEGGED_TICKET - Get ticket for DS pegged item(s) OIJ_PRORATE_INITIATE - OIJ-TSW:: Initiate Prorate Subscreen OIJ_PROGRAM_CALL - FM to call appropriate program for output OIJ_PREPARE_TO_SAVE_ITEM_TXT - TSW: Gets all header texts from editor-tree