Skip to content

Instantly share code, notes, and snippets.

View kgorin8's full-sized avatar

Kirill Gorin kgorin8

  • Moscow, Russia
View GitHub Profile
@kgorin8
kgorin8 / zcl_advance_shipg_notice_maint - Class Relevant Local Types.abap Example ABAP class with local classes and test cases showing the use of test doubles, etc.
*"* use this source file for any type of declarations (class
*"* definitions, interfaces or type declarations) you need for
*"* components in the private section
types:
begin of event_rec,
evt_name type string,
sort_order type i,
end of event_rec.
@kgorin8
kgorin8 / zcl_abapgit_user_exit.clas.abap
Created May 7, 2019 08:23 — forked from fabianlupa/zcl_abapgit_user_exit.clas.abap
Example implementation for custom_serialize_abap_clif
CLASS zcl_abapgit_user_exit DEFINITION
PUBLIC
FINAL
CREATE PUBLIC.
PUBLIC SECTION.
INTERFACES:
zif_abapgit_exit.
PROTECTED SECTION.
PRIVATE SECTION.