PARTNER_AUTHORITY_CHECK SAP Method Authorization Check
Below is documentation, parameters and attributes of ABAP Method PARTNER_AUTHORITY_CHECK within SAP class CL_BSP_BP_GLOBAL_SERVICE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_BSP_BP_GLOBAL_SERVICE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method PARTNER_AUTHORITY_CHECK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PARTNER_AUTHORITY_CHECK
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTIVITY | Importing | TYPE BU_AKTYP | Activity Type | |
| IV_PARTNER | Importing | TYPE BU_PARTNER | Business Partner Number | |
| IV_PARTNER_GUID | Importing | TYPE BU_PARTNER_GUID | GUID of a Business Partner | |
| IV_RLTYP | Importing | TYPE BU_RLTYP | BDT: Object Part | |
| ET_RETURN | Exporting | TYPE BAPIRET2_T | Return Parameter Table | |
| ET_RETURN | Exporting | TYPE BAPIRET2_T | Return table | |
| CT_PARTNER_KEYS | Changing | TYPE BUP_PARTNER_GUID_T | Table Type for Partner Number and Partner GUID |
Exceptions of Method PARTNER_AUTHORITY_CHECK
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_PARTNER_KEYS TYPE BUP_PARTNER_GUID_T,
lv_ET_RETURN TYPE BAPIRET2_T,
lv_IV_ACTIVITY TYPE BU_AKTYP,
lv_IV_PARTNER TYPE BU_PARTNER,
lv_IV_PARTNER_GUID TYPE BU_PARTNER_GUID,
lv_IV_RLTYP TYPE BU_RLTYP,
lv_ET_RETURN TYPE BAPIRET2_T,
lv_other TYPE c.
CALL METHOD CL_BSP_BP_GLOBAL_SERVICE=>PARTNER_AUTHORITY_CHECK(
EXPORTING
IV_ACTIVITY = lv_IV_ACTIVITY
IV_PARTNER = lv_IV_PARTNER
IV_PARTNER_GUID = lv_IV_PARTNER_GUID
IV_RLTYP = lv_IV_RLTYP
IMPORTING
ET_RETURN = lv_ET_RETURN
ET_RETURN = lv_ET_RETURN
CHANGING
CT_PARTNER_KEYS = lv_CT_PARTNER_KEYS ).
Links to Related Class(s)
CL_BSP_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects