mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 21:37:26 +08:00

* ECATT: remove dynamic method calls This commit introduces two new interfaces to remove dynamic method calls. - ZIF_ABAPGIT_ECATT_DOWNLOAD - ZIF_ABAPGIT_ECATT_UPLOAD * ECATT: Rename method Rename method z_set_stream_for_upload to set_stream_for_upload as we now use our own interface and there's no risk that SAP standard introduces a method with the same name
9 lines
143 B
ABAP
9 lines
143 B
ABAP
INTERFACE zif_abapgit_ecatt_upload
|
|
PUBLIC .
|
|
METHODS:
|
|
set_stream_for_upload
|
|
IMPORTING
|
|
iv_xml TYPE xstring.
|
|
|
|
ENDINTERFACE.
|