CREATE_CUSTOMIZING SAP Method Creates instances of customizing classes









Below is documentation, parameters and attributes of ABAP Method CREATE_CUSTOMIZING within SAP class CL_GUI_GP_PRES. 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_GUI_GP_PRES 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_CUSTOMIZING can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CREATE_CUSTOMIZING

.

NameTypeData TypeDescriptionDefault Value
ADMINImportingTYPE
GFW_BOOLEAN
Administrator rights
GRPIDSImportingTYPE
GFW_GRPID_LIST
List of GroupIds
INSTANCE_IDImportingTYPE
GFW_CU_STR
Unique instance ID, used as a prefix
POINTIDSImportingTYPE
GFW_REFOBJ_LIST
List of refobjs (Points, that should get a cu-bundle)
PRIMARY_X_TITLEImportingTYPE
GFWCUVAC
Axis title (cl_cu_axis=>co_title)
PRIMARY_Y_TITLEImportingTYPE
GFWCUVAC
Axis title (cl_cu_axis=>co_title)
SETImportingTYPE
I
Id of predefined set of cu-instances
TITLEImportingTYPE
GFWCUVAC
Title (cl_cu_drawing_area=>co_title)
USERNAMEImportingTYPE
SYUNAME
User name
RETVALExportingTYPE
SYMSGNO
CL_GFW=>OK: succesful



Exceptions of Method CREATE_CUSTOMIZING

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_GUI_GP_PRES.
DATA: lv_ADMIN TYPE GFW_BOOLEAN,
lv_GRPIDS TYPE GFW_GRPID_LIST,
lv_INSTANCE_ID TYPE GFW_CU_STR,
lv_POINTIDS TYPE GFW_REFOBJ_LIST,
lv_PRIMARY_X_TITLE TYPE GFWCUVAC,
lv_PRIMARY_Y_TITLE TYPE GFWCUVAC,
lv_RETVAL TYPE SYMSGNO,
lv_SET TYPE I,
lv_TITLE TYPE GFWCUVAC,
lv_USERNAME TYPE SYUNAME,
lv_other TYPE c.

CALL METHOD lo_class=>CREATE_CUSTOMIZING(
EXPORTING
ADMIN = lv_ADMIN
GRPIDS = lv_GRPIDS
INSTANCE_ID = lv_INSTANCE_ID
POINTIDS = lv_POINTIDS
PRIMARY_X_TITLE = lv_PRIMARY_X_TITLE
PRIMARY_Y_TITLE = lv_PRIMARY_Y_TITLE
SET = lv_SET
TITLE = lv_TITLE
USERNAME = lv_USERNAME
IMPORTING
RETVAL = lv_RETVAL ).

Links to Related Class(s)

CL_GUI_G...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!