PUT_4010_DATA_TO_SCREEN SAP Method Transfer Data from Screen 4010 to Subscreen









Below is documentation, parameters and attributes of ABAP Method PUT_4010_DATA_TO_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 PUT_4010_DATA_TO_SCREEN can also be found below:

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


Parameters of Method PUT_4010_DATA_TO_SCREEN

.

NameTypeData TypeDescriptionDefault Value
IS_VIQMELImportingTYPE
VIQMEL
Generated Table for View VIQMEL
IS_VIQMFEImportingTYPE
VIQMFE
Generated Table for View VIQMFE
IS_VIQMSMImportingTYPE
VIQMSM
Generated Table for View VIQMSM
IT_IVIQMFEImportingTYPE
TAB_WQMFE
Work Table for Notification Item
IT_IVIQMSMImportingTYPE
TAB_WQMSM
Work table for tasks
IT_IVIQMURImportingTYPE
TAB_WQMUR
Work table for causes
IV_AKTYPImportingTYPE
AKTYP
Activity Type in the Transaction
IV_PROCESSImportingTYPE
QMPROCESS



Exceptions of Method PUT_4010_DATA_TO_SCREEN

BADI_ERROR - Error When Executing BAdI

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_IQS0_SUBSCREEN_ADDO.
DATA: lv_IS_VIQMEL TYPE VIQMEL,
lv_IS_VIQMFE TYPE VIQMFE,
lv_IS_VIQMSM TYPE VIQMSM,
lv_IT_IVIQMFE TYPE TAB_WQMFE,
lv_IT_IVIQMSM TYPE TAB_WQMSM,
lv_IT_IVIQMUR TYPE TAB_WQMUR,
lv_IV_AKTYP TYPE AKTYP,
lv_IV_PROCESS TYPE QMPROCESS,
lv_other TYPE c.

CALL METHOD lo_class=>PUT_4010_DATA_TO_SCREEN(
EXPORTING
IS_VIQMEL = lv_IS_VIQMEL
IS_VIQMFE = lv_IS_VIQMFE
IS_VIQMSM = lv_IS_VIQMSM
IT_IVIQMFE = lv_IT_IVIQMFE
IT_IVIQMSM = lv_IT_IVIQMSM
IT_IVIQMUR = lv_IT_IVIQMUR
IV_AKTYP = lv_IV_AKTYP
IV_PROCESS = lv_IV_PROCESS ).

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!