SAP Function Modules

UDM_DC_PROCESS_EVENT SAP Function module







UDM_DC_PROCESS_EVENT 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 UDM_DC_PROCESS_EVENT into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: UDM_DC_EXT_PROCESSING
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM UDM_DC_PROCESS_EVENT - UDM DC PROCESS EVENT





CALL FUNCTION 'UDM_DC_PROCESS_EVENT' "
  EXPORTING
    i_case_guid =               " scmg_case_guid  Technical Key of Case (Case GUID)
    i_extappl =                 " udm_extappl   External Application for Dispute Cases
*   i_event =                   " udm_event     Event for Processing Dispute Cases
*   i_langu = SY-LANGU          " tdspras       Language Key
*   it_note =                   " tlinetab      Lines of ITF
  IMPORTING
    et_message =                " bapiret2_tab  Error Messages
    .  "  UDM_DC_PROCESS_EVENT

ABAP code example for Function Module UDM_DC_PROCESS_EVENT





The ABAP code below is a full code listing to execute function module UDM_DC_PROCESS_EVENT 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:
ld_et_message  TYPE BAPIRET2_TAB .

DATA(ld_i_case_guid) = 'Check type of data required'.
DATA(ld_i_extappl) = 'Check type of data required'.
DATA(ld_i_event) = 'Check type of data required'.
DATA(ld_i_langu) = 'Check type of data required'.
DATA(ld_it_note) = 'Check type of data required'. . CALL FUNCTION 'UDM_DC_PROCESS_EVENT' EXPORTING i_case_guid = ld_i_case_guid i_extappl = ld_i_extappl * i_event = ld_i_event * i_langu = ld_i_langu * it_note = ld_it_note IMPORTING et_message = ld_et_message . " UDM_DC_PROCESS_EVENT
IF SY-SUBRC EQ 0. "All OK 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_et_message  TYPE BAPIRET2_TAB ,
ld_i_case_guid  TYPE SCMG_CASE_GUID ,
ld_i_extappl  TYPE UDM_EXTAPPL ,
ld_i_event  TYPE UDM_EVENT ,
ld_i_langu  TYPE TDSPRAS ,
ld_it_note  TYPE TLINETAB .

ld_i_case_guid = 'Check type of data required'.
ld_i_extappl = 'Check type of data required'.
ld_i_event = 'Check type of data required'.
ld_i_langu = 'Check type of data required'.
ld_it_note = 'Check type of data required'.

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 UDM_DC_PROCESS_EVENT or its description.