sandraros / FM-Test-Data

Utility to read and save Function Module Test Data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FM-Test-Data

API (class ZCL_FM_TEST_DATA) to create Function Module Test Data in transaction code SE37.

Example program:

REPORT zdemo.

START-OF-SELECTION.
  DATA(test_data) = zcl_fm_test_data=>create( fm_name = 'DATE_GET_WEEK' title = 'demo' ).
  test_data->set_input_parameters( VALUE #( ( name = 'DATE' value = REF #( sy-datum ) ) ) ).
  test_data->save( ).
  COMMIT WORK.
  MESSAGE |Test data { condense( test_data->id ) } created| type 'I'.

Dependencies:

Installation via abapGit

More:

About

Utility to read and save Function Module Test Data

License:MIT License


Languages

Language:ABAP 100.0%