SAP Function Modules

MKK_BUPA_EVENT_RLDEL SAP Function module







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

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


Pattern for FM MKK_BUPA_EVENT_RLDEL - MKK BUPA EVENT RLDEL





CALL FUNCTION 'MKK_BUPA_EVENT_RLDEL' "
  EXPORTING
    i_partner =                 " bu_partner    Business Partner Number
*   i_partnerguid =             " bu_partner_guid  Business Partner GUID
    i_role =                    " bu_partnerrole  Business Partner Role
*   i_dfval =                   " bu_dfval      BP: Differentiation Type Value
    i_calltp = '1'              " bus000flds-char1  Single-Character Indicator
*   i_valid_from =              " bu_datfrom    Validity Date (Valid from)
*   i_valid_from_old =          " bu_datfrom    Validity Date (Valid from)
*   i_valid_to =                " bu_datto      Validity Date (Valid To)
*   i_valid_to_old =            " bu_datto      Validity Date (Valid To)
  IMPORTING
    e_result =                  " bus000flds-char1  Single-Character Indicator
    .  "  MKK_BUPA_EVENT_RLDEL

ABAP code example for Function Module MKK_BUPA_EVENT_RLDEL





The ABAP code below is a full code listing to execute function module MKK_BUPA_EVENT_RLDEL 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_e_result  TYPE BUS000FLDS-CHAR1 .

DATA(ld_i_partner) = 'Check type of data required'.
DATA(ld_i_partnerguid) = 'Check type of data required'.
DATA(ld_i_role) = 'Check type of data required'.
DATA(ld_i_dfval) = 'Check type of data required'.

DATA(ld_i_calltp) = some text here
DATA(ld_i_valid_from) = 'Check type of data required'.
DATA(ld_i_valid_from_old) = 'Check type of data required'.
DATA(ld_i_valid_to) = 'Check type of data required'.
DATA(ld_i_valid_to_old) = 'Check type of data required'. . CALL FUNCTION 'MKK_BUPA_EVENT_RLDEL' EXPORTING i_partner = ld_i_partner * i_partnerguid = ld_i_partnerguid i_role = ld_i_role * i_dfval = ld_i_dfval i_calltp = ld_i_calltp * i_valid_from = ld_i_valid_from * i_valid_from_old = ld_i_valid_from_old * i_valid_to = ld_i_valid_to * i_valid_to_old = ld_i_valid_to_old IMPORTING e_result = ld_e_result . " MKK_BUPA_EVENT_RLDEL
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_e_result  TYPE BUS000FLDS-CHAR1 ,
ld_i_partner  TYPE BU_PARTNER ,
ld_i_partnerguid  TYPE BU_PARTNER_GUID ,
ld_i_role  TYPE BU_PARTNERROLE ,
ld_i_dfval  TYPE BU_DFVAL ,
ld_i_calltp  TYPE BUS000FLDS-CHAR1 ,
ld_i_valid_from  TYPE BU_DATFROM ,
ld_i_valid_from_old  TYPE BU_DATFROM ,
ld_i_valid_to  TYPE BU_DATTO ,
ld_i_valid_to_old  TYPE BU_DATTO .

ld_i_partner = 'Check type of data required'.
ld_i_partnerguid = 'Check type of data required'.
ld_i_role = 'Check type of data required'.
ld_i_dfval = 'Check type of data required'.

ld_i_calltp = some text here
ld_i_valid_from = 'Check type of data required'.
ld_i_valid_from_old = 'Check type of data required'.
ld_i_valid_to = 'Check type of data required'.
ld_i_valid_to_old = '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 MKK_BUPA_EVENT_RLDEL or its description.