CREATE SAP Method Generate
Below is documentation, parameters and attributes of ABAP Method CREATE within SAP class CL_EEF_ADJ_VIEW_BADI_ADJUSTED. 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 CL_EEF_ADJ_VIEW_BADI_ADJUSTED 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 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 |
| ADJUSTMENT_TOOL | Importing | TYPE REF TO IF_EEF_ADJ_TOOL | ||
| CONFLICT | Importing | TYPE REF TO CL_EEF_ADJ_CONFLICT_BADI | BAdI Conflict | |
| DYNPRO_NO | Importing | TYPE SY-DYNNR | Current Screen Number | |
| ENHANCEMENT_TOOL | Importing | TYPE REF TO IF_ENH_TOOL | SAP Enhancement Tool Root Interface | |
| REPORT_ID | Importing | TYPE SY-REPID | ||
| SUBSCREEN_AREA | Importing | TYPE D021S-FNAM | Field Name | |
| WB_MANAGER | Importing | TYPE REF TO IF_WB_MANAGER | Interface for Workbench Manager | |
| VIEW | Returning | TYPE REF TO CL_EEF_ADJ_VIEW_BADI_ADJUSTED | WB - Enhancement Adjustm. - View for BAdI Name |
Exceptions of Method CREATE
This method does not have any exceptionsExample ABAP coding
DATA: lv_ADJUSTMENT_TOOL TYPE IF_EEF_ADJ_TOOL,
lv_CONFLICT TYPE CL_EEF_ADJ_CONFLICT_BADI,
lv_DYNPRO_NO TYPE SY-DYNNR,
lv_ENHANCEMENT_TOOL TYPE IF_ENH_TOOL,
lv_REPORT_ID TYPE SY-REPID,
lv_SUBSCREEN_AREA TYPE D021S-FNAM,
lv_VIEW TYPE CL_EEF_ADJ_VIEW_BADI_ADJUSTED,
lv_WB_MANAGER TYPE IF_WB_MANAGER,
lv_other TYPE c.
CALL METHOD CL_EEF_ADJ_VIEW_BADI_ADJUSTED=>CREATE(
EXPORTING
ADJUSTMENT_TOOL = lv_ADJUSTMENT_TOOL
CONFLICT = lv_CONFLICT
DYNPRO_NO = lv_DYNPRO_NO
ENHANCEMENT_TOOL = lv_ENHANCEMENT_TOOL
REPORT_ID = lv_REPORT_ID
SUBSCREEN_AREA = lv_SUBSCREEN_AREA
WB_MANAGER = lv_WB_MANAGER
RECEIVING
VIEW = lv_VIEW )
"Alternate coding for Method Call with returning parameter
lv_VIEW = CL_EEF_ADJ_VIEW_BADI_ADJUSTED=>CREATE(
EXPORTING
ADJUSTMENT_TOOL = lv_ADJUSTMENT_TOOL
CONFLICT = lv_CONFLICT
DYNPRO_NO = lv_DYNPRO_NO
ENHANCEMENT_TOOL = lv_ENHANCEMENT_TOOL
REPORT_ID = lv_REPORT_ID
SUBSCREEN_AREA = lv_SUBSCREEN_AREA
WB_MANAGER = lv_WB_MANAGER ).
Links to Related Class(s)
CL_EEF_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects