CREATE SAP Method of class /BOBF/CL_CONF_UI_MANAGER
Below is documentation, parameters and attributes of ABAP Method CREATE within SAP class /BOBF/CL_CONF_UI_MANAGER. 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 /BOBF/CL_CONF_UI_MANAGER 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 CREATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE
.| Name | Type | Data Type | Description | Default Value |
| IV_ABSTRACT | Importing | TYPE /BOBF/OBM_ABSTRACT | Business Object is abstract | |
| IV_BO_ESR_NAME | Importing | TYPE /BOBF/OBM_ESR_NAME | ESR Name | |
| IV_BO_NAME | Importing | TYPE /BOBF/OBM_NAME | Name | |
| IV_DESCRIPTION | Importing | TYPE /BOBF/OBM_DESCRIPTION | Description | |
| IV_EXTENSION | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_FINAL | Importing | TYPE /BOBF/OBM_FINAL | Business Object is final | |
| IV_OBJ_CAT | Importing | TYPE /BOBF/OBM_OBJCAT | Business Object Category | |
| IV_SUPER_BO_NAME | Importing | TYPE /BOBF/OBM_NAME | Name | |
| EV_FAILED | Exporting | TYPE BOOLE_D |
Exceptions of Method CREATE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_CONF_UI_MANAGER.
DATA: lv_EV_FAILED TYPE BOOLE_D,
lv_IV_ABSTRACT TYPE /BOBF/OBM_ABSTRACT,
lv_IV_BO_ESR_NAME TYPE /BOBF/OBM_ESR_NAME,
lv_IV_BO_NAME TYPE /BOBF/OBM_NAME,
lv_IV_DESCRIPTION TYPE /BOBF/OBM_DESCRIPTION,
lv_IV_EXTENSION TYPE BOOLE_D,
lv_IV_FINAL TYPE /BOBF/OBM_FINAL,
lv_IV_OBJ_CAT TYPE /BOBF/OBM_OBJCAT,
lv_IV_SUPER_BO_NAME TYPE /BOBF/OBM_NAME,
lv_other TYPE c.
CALL METHOD lo_class=>CREATE(
EXPORTING
IV_ABSTRACT = lv_IV_ABSTRACT
IV_BO_ESR_NAME = lv_IV_BO_ESR_NAME
IV_BO_NAME = lv_IV_BO_NAME
IV_DESCRIPTION = lv_IV_DESCRIPTION
IV_EXTENSION = lv_IV_EXTENSION
IV_FINAL = lv_IV_FINAL
IV_OBJ_CAT = lv_IV_OBJ_CAT
IV_SUPER_BO_NAME = lv_IV_SUPER_BO_NAME
IMPORTING
EV_FAILED = lv_EV_FAILED ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects