BUR_BUPR_EVENT_RADEL 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 BUR_BUPR_EVENT_RADEL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BUD3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BUR_BUPR_EVENT_RADEL' "
* EXPORTING
* iv_relnr = " bu_relnr
* iv_partner1 = " bu_partner Business Partner Number
* iv_partner_guid1 = " bu_partner_guid Business Partner GUID
* iv_partner2 = " bu_partner Partner Number
* iv_partner_guid2 = " bu_partner_guid
* iv_date_to = " bu_datto Validity Date (Valid To)
* iv_reltyp = " bu_reltyp Business partner-Relationship category
* iv_xrf = " bu_xrf Business partner role definition instead of BP relationship
* iv_dftval = " bu_dftval BP: Differentiation Type Characteristic (Change Document-Relevant)
* iv_rltyp = " bu_rltype Business partner role (change doc.-relevant)
* iv_addrnumber = " ad_addrnum Address Number
* iv_address_guid = " bu_address_guid Address GUID
* iv_persnumber = " ad_persnum Person Number
IMPORTING
ev_result = " char1
. " BUR_BUPR_EVENT_RADEL
The ABAP code below is a full code listing to execute function module BUR_BUPR_EVENT_RADEL 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).
| ld_ev_result | TYPE CHAR1 . |
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_ev_result | TYPE CHAR1 , |
| ld_iv_relnr | TYPE BU_RELNR , |
| ld_iv_partner1 | TYPE BU_PARTNER , |
| ld_iv_partner_guid1 | TYPE BU_PARTNER_GUID , |
| ld_iv_partner2 | TYPE BU_PARTNER , |
| ld_iv_partner_guid2 | TYPE BU_PARTNER_GUID , |
| ld_iv_date_to | TYPE BU_DATTO , |
| ld_iv_reltyp | TYPE BU_RELTYP , |
| ld_iv_xrf | TYPE BU_XRF , |
| ld_iv_dftval | TYPE BU_DFTVAL , |
| ld_iv_rltyp | TYPE BU_RLTYPE , |
| ld_iv_addrnumber | TYPE AD_ADDRNUM , |
| ld_iv_address_guid | TYPE BU_ADDRESS_GUID , |
| ld_iv_persnumber | TYPE AD_PERSNUM . |
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 BUR_BUPR_EVENT_RADEL or its description.