abapGit/src/data/zif_abapgit_data_supporter.intf.abap
Thomas Ergin 8ed3a633db
Pull enabled for customizing tables (#6138)
Co-authored-by: Thomas Ergin <Thomas.Ergin@bmw.de>
Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
Co-authored-by: Marc Bernard <marc@marcbernardtools.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2023-03-31 13:25:16 +02:00

20 lines
507 B
ABAP

INTERFACE zif_abapgit_data_supporter
PUBLIC.
TYPES:
BEGIN OF ty_object,
type TYPE zif_abapgit_data_config=>ty_config-type,
name TYPE zif_abapgit_data_config=>ty_config-name,
END OF ty_object.
TYPES:
ty_objects TYPE SORTED TABLE OF ty_object WITH UNIQUE KEY type name.
METHODS is_object_supported
IMPORTING
!iv_type TYPE ty_object-type
!iv_name TYPE ty_object-name
RETURNING
VALUE(rv_supported) TYPE abap_bool.
ENDINTERFACE.