CREATE_AS_MANAGED_ELEMENT SAP Method Generate an Object According to Metadata in SCR
Below is documentation, parameters and attributes of ABAP Method CREATE_AS_MANAGED_ELEMENT within SAP class SCSM_MANAGED_ELEMENT. 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 SCSM_MANAGED_ELEMENT 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 CREATE_AS_MANAGED_ELEMENT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_AS_MANAGED_ELEMENT
.| Name | Type | Data Type | Description | Default Value |
| OBJ_REF | Importing | TYPE CSM_OREF | Object Reference of System Component Repository | |
| THE_ME | Exporting | TYPE REF TO SCSM_MANAGED_ELEMENT | CCMS: Class for All Objects that Can Be Administered |
Exceptions of Method CREATE_AS_MANAGED_ELEMENT
This method does not have any exceptionsExample ABAP coding
DATA: lv_OBJ_REF TYPE CSM_OREF,
lv_THE_ME TYPE SCSM_MANAGED_ELEMENT,
lv_other TYPE c.
CALL METHOD SCSM_MANAGED_ELEMENT=>CREATE_AS_MANAGED_ELEMENT(
EXPORTING
OBJ_REF = lv_OBJ_REF
IMPORTING
THE_ME = lv_THE_ME ).
Links to Related Class(s)
SCSM_MAN...Full list of available SAP object classes
Search for further information about these or an SAP related objects