READ_TEST_CASE_LIST SAP Method Get a list of test cases
Below is documentation, parameters and attributes of ABAP Method READ_TEST_CASE_LIST within SAP class IF_FDT_TEST_TOOL. 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_FDT_TEST_TOOL 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 READ_TEST_CASE_LIST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_TEST_CASE_LIST
.| Name | Type | Data Type | Description | Default Value |
| IV_CHANGED_BY | Importing | TYPE SYUNAME | Last Changer of Test Case | |
| IV_CHANGED_ON_LOWER_LIMIT | Importing | TYPE TIMESTAMP | Lower Treshold for Change Date | |
| IV_CHANGED_ON_UPPER_LIMIT | Importing | TYPE TIMESTAMP | Upper Treshold for Change Date | |
| IV_CREATED_BY | Importing | TYPE SYUNAME | Creator of Test Case | |
| IV_CREATED_ON_LOWER_LIMIT | Importing | TYPE TIMESTAMP | Lower Treshold for Creation Date | |
| IV_CREATED_ON_UPPER_LIMIT | Importing | TYPE TIMESTAMP | Upper Treshold for Creation Date | |
| IV_FUNCTION_ID | Importing | TYPE IF_FDT_TYPES=>ID | Function ID | |
| IV_NAME | Importing | TYPE IF_FDT_TYPES=>NAME | Test Case Name | |
| ET_TEST_CASE_HEADER | Exporting | TYPE TS_TEST_CASE_HEADER | Table of Test Cases (only Header Data) |
Exceptions of Method READ_TEST_CASE_LIST
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_FDT_TEST_TOOL.
DATA: lv_ET_TEST_CASE_HEADER TYPE TS_TEST_CASE_HEADER,
lv_IV_CHANGED_BY TYPE SYUNAME,
lv_IV_CHANGED_ON_LOWER_LIMIT TYPE TIMESTAMP,
lv_IV_CHANGED_ON_UPPER_LIMIT TYPE TIMESTAMP,
lv_IV_CREATED_BY TYPE SYUNAME,
lv_IV_CREATED_ON_LOWER_LIMIT TYPE TIMESTAMP,
lv_IV_CREATED_ON_UPPER_LIMIT TYPE TIMESTAMP,
lv_IV_FUNCTION_ID TYPE IF_FDT_TYPES=>ID,
lv_IV_NAME TYPE IF_FDT_TYPES=>NAME,
lv_other TYPE c.
CALL METHOD lo_class=>READ_TEST_CASE_LIST(
EXPORTING
IV_CHANGED_BY = lv_IV_CHANGED_BY
IV_CHANGED_ON_LOWER_LIMIT = lv_IV_CHANGED_ON_LOWER_LIMIT
IV_CHANGED_ON_UPPER_LIMIT = lv_IV_CHANGED_ON_UPPER_LIMIT
IV_CREATED_BY = lv_IV_CREATED_BY
IV_CREATED_ON_LOWER_LIMIT = lv_IV_CREATED_ON_LOWER_LIMIT
IV_CREATED_ON_UPPER_LIMIT = lv_IV_CREATED_ON_UPPER_LIMIT
IV_FUNCTION_ID = lv_IV_FUNCTION_ID
IV_NAME = lv_IV_NAME
IMPORTING
ET_TEST_CASE_HEADER = lv_ET_TEST_CASE_HEADER ).
Links to Related Class(s)
IF_FDT_T...Full list of available SAP object classes
Search for further information about these or an SAP related objects