mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Add parameters to map_object_to_filename
(#6955)
Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
a96e581fa4
commit
55f9b49577
|
@ -105,6 +105,8 @@ CLASS zcl_abapgit_filename_logic DEFINITION
|
|||
CLASS-METHODS map_object_to_filename
|
||||
IMPORTING
|
||||
!is_item TYPE zif_abapgit_definitions=>ty_item
|
||||
!iv_ext TYPE string
|
||||
!iv_extra TYPE clike
|
||||
CHANGING
|
||||
cv_filename TYPE string
|
||||
RAISING
|
||||
|
@ -267,6 +269,8 @@ CLASS zcl_abapgit_filename_logic IMPLEMENTATION.
|
|||
CALL METHOD (lv_class)=>('ZIF_ABAPGIT_OBJECT~MAP_OBJECT_TO_FILENAME')
|
||||
EXPORTING
|
||||
is_item = is_item
|
||||
iv_ext = iv_ext
|
||||
iv_extra = iv_extra
|
||||
CHANGING
|
||||
cv_filename = cv_filename.
|
||||
CATCH cx_sy_dyn_call_illegal_class ##NO_HANDLER.
|
||||
|
@ -320,6 +324,8 @@ CLASS zcl_abapgit_filename_logic IMPLEMENTATION.
|
|||
map_object_to_filename(
|
||||
EXPORTING
|
||||
is_item = is_item
|
||||
iv_ext = iv_ext
|
||||
iv_extra = iv_extra
|
||||
CHANGING
|
||||
cv_filename = rv_filename ).
|
||||
CATCH zcx_abapgit_exception ##NO_HANDLER.
|
||||
|
|
|
@ -100,6 +100,8 @@ INTERFACE zif_abapgit_object
|
|||
CLASS-METHODS map_object_to_filename
|
||||
IMPORTING
|
||||
!is_item TYPE zif_abapgit_definitions=>ty_item
|
||||
!iv_ext TYPE string
|
||||
!iv_extra TYPE clike
|
||||
CHANGING
|
||||
cv_filename TYPE string
|
||||
RAISING
|
||||
|
|
Loading…
Reference in New Issue
Block a user