GET_4010_DATA_FROM_SCREEN SAP Method Transfer Data from Subscreen Back to Screen 4010









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

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


Parameters of Method GET_4010_DATA_FROM_SCREEN

.

NameTypeData TypeDescriptionDefault Value
IV_PROCESSImportingTYPE
QMPROCESS
ES_VIQMELExportingTYPE
VIQMEL
Generated Table for View VIQMEL
ES_VIQMFEExportingTYPE
VIQMFE
Generated Table for View VIQMFE
ES_VIQMSMExportingTYPE
VIQMSM
Generated Table for View VIQMSM
ET_IVIQMFEExportingTYPE
TAB_WQMFE
Work Table for Notification Item
ET_IVIQMSMExportingTYPE
TAB_WQMSM
Work table for tasks
ET_IVIQMURExportingTYPE
TAB_WQMUR
Work table for causes
EV_AKTYPExportingTYPE
AKTYP
Activity Type in the Transaction



Exceptions of Method GET_4010_DATA_FROM_SCREEN

BADI_ERROR - Error When Executing BAdI

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_IQS0_SUBSCREEN_ADDO.
DATA: lv_ES_VIQMEL TYPE VIQMEL,
lv_ES_VIQMFE TYPE VIQMFE,
lv_ES_VIQMSM TYPE VIQMSM,
lv_ET_IVIQMFE TYPE TAB_WQMFE,
lv_ET_IVIQMSM TYPE TAB_WQMSM,
lv_ET_IVIQMUR TYPE TAB_WQMUR,
lv_EV_AKTYP TYPE AKTYP,
lv_IV_PROCESS TYPE QMPROCESS,
lv_other TYPE c.

CALL METHOD lo_class=>GET_4010_DATA_FROM_SCREEN(
EXPORTING
IV_PROCESS = lv_IV_PROCESS
IMPORTING
ES_VIQMEL = lv_ES_VIQMEL
ES_VIQMFE = lv_ES_VIQMFE
ES_VIQMSM = lv_ES_VIQMSM
ET_IVIQMFE = lv_ET_IVIQMFE
ET_IVIQMSM = lv_ET_IVIQMSM
ET_IVIQMUR = lv_ET_IVIQMUR
EV_AKTYP = lv_EV_AKTYP ).

Links to Related Class(s)

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