SAP Function Modules

OIJ_READ_ARRAY_MD_EVENTS SAP Function module - Get Master Data Events For an Specific ARea







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
Normal function module settings


Pattern for FM OIJ_READ_ARRAY_MD_EVENTS - OIJ READ ARRAY MD EVENTS





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

ABAP code example for Function Module 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).

DATA:
it_t_oijev  TYPE STANDARD TABLE OF OIJEV,"TABLES PARAM
wa_t_oijev  LIKE LINE OF it_t_oijev .

DATA(ld_it_obj_id) = 'Check type of data required'.
DATA(ld_iv_app_area) = 'Check type of data required'.
DATA(ld_iv_from_date) = 'Check type of data required'.
DATA(ld_iv_to_date) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_oijev to it_t_oijev. . CALL FUNCTION 'OIJ_READ_ARRAY_MD_EVENTS' EXPORTING it_obj_id = ld_it_obj_id iv_app_area = ld_iv_app_area * iv_from_date = ld_iv_from_date * iv_to_date = ld_iv_to_date TABLES t_oijev = it_t_oijev EXCEPTIONS OBJ_ID_NULL = 1 APP_AREA_IS_NULL = 2 RECORD_NOT_FOUND = 3 . " OIJ_READ_ARRAY_MD_EVENTS
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 3. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_it_obj_id = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_oijev to it_t_oijev.
ld_iv_app_area = 'Check type of data required'.
ld_iv_from_date = 'Check type of data required'.
ld_iv_to_date = 'Check type of data required'.

SAP Documentation for FM OIJ_READ_ARRAY_MD_EVENTS

Contribute (Add Comments)

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.