SAP BKK_BUPA_AUTH_CHECK_DP Function Module for Authority Check for Business Partner Data Privacy Imp
BKK_BUPA_AUTH_CHECK_DP is a standard bkk bupa auth check dp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Authority Check for Business Partner Data Privacy Imp processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bkk bupa auth check dp FM, simply by entering the name BKK_BUPA_AUTH_CHECK_DP into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBB1
Program Name: SAPLFBB1
Main Program: SAPLFBB1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_BUPA_AUTH_CHECK_DP pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BKK_BUPA_AUTH_CHECK_DP'"Authority Check for Business Partner Data Privacy Imp.
EXPORTING
* I_PARTNER = "Business Partner Number
* I_TAB_PARTNER = "Table Category for Category BU_PARTNER
* I_ACTVT = '03' "Activity
IMPORTING
E_TAB_RETURN = "Return parameter table
EXCEPTIONS
NOT_AUTHORIZED = 1 IMPORT_ERROR = 2
IMPORTING Parameters details for BKK_BUPA_AUTH_CHECK_DP
I_PARTNER - Business Partner Number
Data type: BU_PARTNEROptional: Yes
Call by Reference: Yes
I_TAB_PARTNER - Table Category for Category BU_PARTNER
Data type: BU_PARTNER_TOptional: Yes
Call by Reference: Yes
I_ACTVT - Activity
Data type: TACT-ACTVTDefault: '03'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for BKK_BUPA_AUTH_CHECK_DP
E_TAB_RETURN - Return parameter table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: Yes
IMPORT_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BKK_BUPA_AUTH_CHECK_DP Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_partner | TYPE BU_PARTNER, " | |||
| lv_e_tab_return | TYPE BAPIRET2_T, " | |||
| lv_not_authorized | TYPE BAPIRET2_T, " | |||
| lv_import_error | TYPE BAPIRET2_T, " | |||
| lv_i_tab_partner | TYPE BU_PARTNER_T, " | |||
| lv_i_actvt | TYPE TACT-ACTVT. " '03' |
|   CALL FUNCTION 'BKK_BUPA_AUTH_CHECK_DP' "Authority Check for Business Partner Data Privacy Imp |
| EXPORTING | ||
| I_PARTNER | = lv_i_partner | |
| I_TAB_PARTNER | = lv_i_tab_partner | |
| I_ACTVT | = lv_i_actvt | |
| IMPORTING | ||
| E_TAB_RETURN | = lv_e_tab_return | |
| EXCEPTIONS | ||
| NOT_AUTHORIZED = 1 | ||
| IMPORT_ERROR = 2 | ||
| . " BKK_BUPA_AUTH_CHECK_DP | ||
ABAP code using 7.40 inline data declarations to call FM BKK_BUPA_AUTH_CHECK_DP
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single ACTVT FROM TACT INTO @DATA(ld_i_actvt). | ||||
| DATA(ld_i_actvt) | = '03'. | |||
Search for further information about these or an SAP related objects