GET_PARAMETER SAP Method Retrieval of testdata parameters









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

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


Parameters of Method GET_PARAMETER

.

NameTypeData TypeDescriptionDefault Value
IT_PARAMETERImportingTYPE
ETP_NAME_TABTYPE
Return values of the requested parameters
IV_PARAMETERImportingTYPE
ETP_NAME
Return value of the requested parameter
ET_PARAMETER_VALUEExportingTYPE
ETPAR_REF_TABTYPE
Table of requested parameter names and values



Exceptions of Method GET_PARAMETER

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/IF_TOOL_AUNIT_TESTDATA.
DATA: lv_ET_PARAMETER_VALUE TYPE ETPAR_REF_TABTYPE,
lv_IT_PARAMETER TYPE ETP_NAME_TABTYPE,
lv_IV_PARAMETER TYPE ETP_NAME,
lv_other TYPE c.

CALL METHOD lo_class=>GET_PARAMETER(
EXPORTING
IT_PARAMETER = lv_IT_PARAMETER
IV_PARAMETER = lv_IV_PARAMETER
IMPORTING
ET_PARAMETER_VALUE = lv_ET_PARAMETER_VALUE ).

Links to Related Class(s)

/BOBF/IF...
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!