COM_INSERT_KEY_MAP SAP Method Insert Key map in to Key map table.
Below is documentation, parameters and attributes of ABAP Method COM_INSERT_KEY_MAP 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 COM_INSERT_KEY_MAP can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COM_INSERT_KEY_MAP
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTIVATION_KEY | Importing | TYPE /XLSO/E_APPL_URL_CNXT_VALUE | Application URL context value | |
| IV_PARAMS | Importing | TYPE /XLSO/E_PARAMS | User Parameters | |
| IV_STATUS | Importing | TYPE /XLSO/E_USER_STATUS | Indicates if User is Active | |
| IV_USERID | Importing | TYPE XUBNAME | User Name in User Master Record | |
| IV_VALIDITY | Importing | TYPE INT4 | Natural Number | |
| EV_RETURN_STATUS | Exporting | TYPE BAPIRET2 | Return Parameter |
Exceptions of Method COM_INSERT_KEY_MAP
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_EV_RETURN_STATUS TYPE BAPIRET2,
lv_IV_ACTIVATION_KEY TYPE /XLSO/E_APPL_URL_CNXT_VALUE,
lv_IV_PARAMS TYPE /XLSO/E_PARAMS,
lv_IV_STATUS TYPE /XLSO/E_USER_STATUS,
lv_IV_USERID TYPE XUBNAME,
lv_IV_VALIDITY TYPE INT4,
lv_other TYPE c.
CALL METHOD lo_class=>COM_INSERT_KEY_MAP(
EXPORTING
IV_ACTIVATION_KEY = lv_IV_ACTIVATION_KEY
IV_PARAMS = lv_IV_PARAMS
IV_STATUS = lv_IV_STATUS
IV_USERID = lv_IV_USERID
IV_VALIDITY = lv_IV_VALIDITY
IMPORTING
EV_RETURN_STATUS = lv_EV_RETURN_STATUS ).
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