CHANGE_GROUPELEM_DND SAP Method of class CL_FPM_HCT_GUIBB_FORM_ASSIST









Below is documentation, parameters and attributes of ABAP Method CHANGE_GROUPELEM_DND within SAP class CL_FPM_HCT_GUIBB_FORM_ASSIST. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

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_FPM_HCT_GUIBB_FORM_ASSIST 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 CHANGE_GROUPELEM_DND can also be found below:

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


Parameters of Method CHANGE_GROUPELEM_DND

.

NameTypeData TypeDescriptionDefault Value
IO_DROP_ROW_ELEMENT_REFImportingTYPE REF TO
IF_WD_CONTEXT_ELEMENT
Web Dynpro: Interface for Node Element
IO_ELEMENTImportingTYPE REF TO
IF_WD_CONTEXT_ELEMENT
Web Dynpro: Interface for Node Element
IV_LEVELImportingTYPE
I
IV_OFFSETImportingTYPE
I
EO_ADDED_ELEMENTExportingTYPE REF TO
IF_WD_CONTEXT_ELEMENT
Web Dynpro: Interface for Node Element
ET_ADDED_ELEMENTExportingTYPE
WDR_CONTEXT_ELEMENT_SET
Web Dynpro: Number of Context Node Elements
EV_SUCCESS_INDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method CHANGE_GROUPELEM_DND

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO CL_FPM_HCT_GUIBB_FORM_ASSIST.
DATA: lv_EO_ADDED_ELEMENT TYPE IF_WD_CONTEXT_ELEMENT,
lv_ET_ADDED_ELEMENT TYPE WDR_CONTEXT_ELEMENT_SET,
lv_EV_SUCCESS_IND TYPE BOOLE_D,
lv_IO_DROP_ROW_ELEMENT_REF TYPE IF_WD_CONTEXT_ELEMENT,
lv_IO_ELEMENT TYPE IF_WD_CONTEXT_ELEMENT,
lv_IV_LEVEL TYPE I,
lv_IV_OFFSET TYPE I,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_GROUPELEM_DND(
EXPORTING
IO_DROP_ROW_ELEMENT_REF = lv_IO_DROP_ROW_ELEMENT_REF
IO_ELEMENT = lv_IO_ELEMENT
IV_LEVEL = lv_IV_LEVEL
IV_OFFSET = lv_IV_OFFSET
IMPORTING
EO_ADDED_ELEMENT = lv_EO_ADDED_ELEMENT
ET_ADDED_ELEMENT = lv_ET_ADDED_ELEMENT
EV_SUCCESS_IND = lv_EV_SUCCESS_IND ).

Links to Related Class(s)

CL_FPM_H...
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!