mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
15 lines
369 B
ABAP
15 lines
369 B
ABAP
CLASS lcl_object_bobf DEFINITION INHERITING FROM lcl_saplink_adapter.
|
|
PUBLIC SECTION.
|
|
METHODS constructor
|
|
IMPORTING
|
|
is_item TYPE ty_item.
|
|
ENDCLASS.
|
|
|
|
CLASS lcl_object_bobf IMPLEMENTATION.
|
|
METHOD constructor.
|
|
super->constructor(
|
|
iv_saplink_classname = 'ZSAPLINK_BOPF'
|
|
is_item = is_item
|
|
).
|
|
ENDMETHOD.
|
|
ENDCLASS. |