UTIL_GET_LOGON_USER_PARTNER SAP Method Get Logon User Communication Partner
Below is documentation, parameters and attributes of ABAP Method UTIL_GET_LOGON_USER_PARTNER within SAP class /BOFU/CL_PPF_CONFIG. 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 /BOFU/CL_PPF_CONFIG into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method UTIL_GET_LOGON_USER_PARTNER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method UTIL_GET_LOGON_USER_PARTNER
.| Name | Type | Data Type | Description | Default Value |
| IV_PARTNER_ROLE | Importing | TYPE PPFDPARTRL | PPF: Partner Function | |
| ES_PARTNER | Exporting | TYPE PPFSINPART | Communication Partners for Keys |
Exceptions of Method UTIL_GET_LOGON_USER_PARTNER
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/CL_PPF_CONFIG.
DATA: lv_ES_PARTNER TYPE PPFSINPART,
lv_IV_PARTNER_ROLE TYPE PPFDPARTRL,
lv_other TYPE c.
CALL METHOD lo_class=>UTIL_GET_LOGON_USER_PARTNER(
EXPORTING
IV_PARTNER_ROLE = lv_IV_PARTNER_ROLE
IMPORTING
ES_PARTNER = lv_ES_PARTNER ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects