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
10 lines
153 B
ABAP
10 lines
153 B
ABAP
INTERFACE zif_abapgit_ecatt_download
|
|
PUBLIC .
|
|
|
|
METHODS:
|
|
get_xml_stream
|
|
RETURNING
|
|
VALUE(rv_xml_stream) TYPE xstring.
|
|
|
|
ENDINTERFACE.
|