CREATE SAP Method Start Where-Used List
Below is documentation, parameters and attributes of ABAP Method CREATE within SAP class CL_CI_COLLHELP_EU. 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_CI_COLLHELP_EU 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 |
| P_CONFINE_DEVCLASSES | Importing | TYPE SCIT_DEVC | Code Inspector: Selection Options for the Package | |
| P_NO_DIALOG | Importing | TYPE FLAG | No Dialog Box for Object Selection | |
| P_OBJNAME | Importing | TYPE SOBJ_NAME | Object Name in Object Directory | |
| P_OBJTYPE | Importing | TYPE TROBJTYPE | Object Type | |
| P_FULLNAME | Importing | TYPE STRING | ||
| P_RSFIND | Importing | TYPE RSFIND | ||
| P_REF | Exporting | TYPE REF TO CL_CI_COLLHELP_EU | CI: Collector Where-Used List |
Exceptions of Method CREATE
This method does not have any exceptionsExample ABAP coding
DATA: lv_P_CONFINE_DEVCLASSES TYPE SCIT_DEVC,
lv_P_NO_DIALOG TYPE FLAG,
lv_P_OBJNAME TYPE SOBJ_NAME,
lv_P_OBJTYPE TYPE TROBJTYPE,
lv_P_REF TYPE CL_CI_COLLHELP_EU,
lv_P_FULLNAME TYPE STRING,
lv_P_RSFIND TYPE RSFIND,
lv_other TYPE c.
CALL METHOD CL_CI_COLLHELP_EU=>CREATE(
EXPORTING
P_CONFINE_DEVCLASSES = lv_P_CONFINE_DEVCLASSES
P_NO_DIALOG = lv_P_NO_DIALOG
P_OBJNAME = lv_P_OBJNAME
P_OBJTYPE = lv_P_OBJTYPE
P_FULLNAME = lv_P_FULLNAME
P_RSFIND = lv_P_RSFIND
IMPORTING
P_REF = lv_P_REF ).
Links to Related Class(s)
CL_CI_CO...Full list of available SAP object classes
Search for further information about these or an SAP related objects