IC2_INIT_ASSIST_FLAG SAP Method Initialize all local controlling attribute flags









Below is documentation, parameters and attributes of ABAP Method IC2_INIT_ASSIST_FLAG within SAP class /BCV/CL_CFG_CENTER_ASSISTANCE. 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 /BCV/CL_CFG_CENTER_ASSISTANCE 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 IC2_INIT_ASSIST_FLAG can also be found below:

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


Parameters of Method IC2_INIT_ASSIST_FLAG

.

NameTypeData TypeDescriptionDefault Value
IV_APPEND_ROW_MODEImportingTYPE
WDY_BOOLEAN
Flag: ALV Mass Edit mode still not working
IV_WITH_BUTTON_NEWImportingTYPE
WDY_BOOLEAN
Flag: Button available
IV_WITH_BUTTON_OPENImportingTYPE
WDY_BOOLEAN
Flag: Button available
IV_WITH_EDIT_AFTER_SAVEImportingTYPE
WDY_BOOLEAN
Flag: After the screen stays in editing mode



Exceptions of Method IC2_INIT_ASSIST_FLAG

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/CL_CFG_CENTER_ASSISTANCE.
DATA: lv_IV_APPEND_ROW_MODE TYPE WDY_BOOLEAN,
lv_IV_WITH_BUTTON_NEW TYPE WDY_BOOLEAN,
lv_IV_WITH_BUTTON_OPEN TYPE WDY_BOOLEAN,
lv_IV_WITH_EDIT_AFTER_SAVE TYPE WDY_BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>IC2_INIT_ASSIST_FLAG(
EXPORTING
IV_APPEND_ROW_MODE = lv_IV_APPEND_ROW_MODE
IV_WITH_BUTTON_NEW = lv_IV_WITH_BUTTON_NEW
IV_WITH_BUTTON_OPEN = lv_IV_WITH_BUTTON_OPEN
IV_WITH_EDIT_AFTER_SAVE = lv_IV_WITH_EDIT_AFTER_SAVE ).

Links to Related Class(s)

/BCV/CL_...
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!