MAINTAIN_USER_INTERESTS SAP Method Maintain User interests for the user.
Below is documentation, parameters and attributes of ABAP Method MAINTAIN_USER_INTERESTS within SAP class /XLSO/CL_USER_ADMINISTRATION. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /XLSO/CL_USER_ADMINISTRATION 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 MAINTAIN_USER_INTERESTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAINTAIN_USER_INTERESTS
.| Name | Type | Data Type | Description | Default Value |
| IT_DELIVERY_METHODS | Importing | TYPE /XLSO/TT_DELIV_METH | Maintain the delivery method interests of the user | |
| IT_LANGUAGES | Importing | TYPE /XLSO/TT_LANGUAGES | Table to maintain interested languages of the user | |
| IT_LOCATIONS | Importing | TYPE /XLSO/TT_COUN_LOCAT | Table to maintain the country and location interest | |
| IT_PRODUCT_GROUP | Importing | TYPE /XLSO/TT_PROD_GROUP | Users interested product groups | |
| IV_KEYWORD_TAGS | Importing | TYPE /XLSO/E_KEYWORD_TAGS | Data element to store keyword tags for the user | |
| IV_USERID | Importing | TYPE XUBNAME | User Name in User Master Record | |
| ES_RETURN_STATUS | Exporting | TYPE BAPIRET2 | Return Parameter | |
| EV_MAIL_FLAG | Exporting | TYPE BOOLEAN | Boolean Variable (X=True, -=False, Space=Unknown) |
Exceptions of Method MAINTAIN_USER_INTERESTS
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /XLSO/CL_USER_ADMINISTRATION.
DATA: lv_ES_RETURN_STATUS TYPE BAPIRET2,
lv_EV_MAIL_FLAG TYPE BOOLEAN,
lv_IT_DELIVERY_METHODS TYPE /XLSO/TT_DELIV_METH,
lv_IT_LANGUAGES TYPE /XLSO/TT_LANGUAGES,
lv_IT_LOCATIONS TYPE /XLSO/TT_COUN_LOCAT,
lv_IT_PRODUCT_GROUP TYPE /XLSO/TT_PROD_GROUP,
lv_IV_KEYWORD_TAGS TYPE /XLSO/E_KEYWORD_TAGS,
lv_IV_USERID TYPE XUBNAME,
lv_other TYPE c.
CALL METHOD lo_class=>MAINTAIN_USER_INTERESTS(
EXPORTING
IT_DELIVERY_METHODS = lv_IT_DELIVERY_METHODS
IT_LANGUAGES = lv_IT_LANGUAGES
IT_LOCATIONS = lv_IT_LOCATIONS
IT_PRODUCT_GROUP = lv_IT_PRODUCT_GROUP
IV_KEYWORD_TAGS = lv_IV_KEYWORD_TAGS
IV_USERID = lv_IV_USERID
IMPORTING
ES_RETURN_STATUS = lv_ES_RETURN_STATUS
EV_MAIL_FLAG = lv_EV_MAIL_FLAG ).
Links to Related Class(s)
/XLSO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects