Skip to content

Commit e24ae6f

Browse files
committed
update
1 parent 6e42d86 commit e24ae6f

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/z2ui5_cl_popup_show_tr.clas.abap

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CLASS z2ui5_cl_popup_show_tr DEFINITION
2424

2525
CLASS-METHODS factory
2626
RETURNING
27-
VALUE(result) TYPE REF TO Z2UI5_CL_POPUP_SHOW_TR.
27+
VALUE(result) TYPE REF TO z2ui5_cl_popup_show_tr.
2828

2929
CLASS-METHODS add_DATA_to_tranport
3030
IMPORTING
@@ -241,19 +241,24 @@ CLASS z2ui5_cl_popup_show_tr IMPLEMENTATION.
241241
DATA(fb1) = 'TR_APPEND_TO_COMM_OBJS_KEYS'.
242242

243243
CALL FUNCTION fb1
244-
EXPORTING wi_trkorr = is_transport-task
245-
TABLES wt_e071 = <t_e071>
246-
wt_e071k = <t_e071k>
247-
EXCEPTIONS OTHERS = 1.
244+
EXPORTING
245+
wi_trkorr = is_transport-task
246+
TABLES
247+
wt_e071 = <t_e071>
248+
wt_e071k = <t_e071k>
249+
EXCEPTIONS
250+
OTHERS = 1.
248251
IF sy-subrc <> 0.
249252
RETURN.
250253
ENDIF.
251254

252255
DATA(fb2) = 'TR_SORT_AND_COMPRESS_COMM'.
253256

254257
CALL FUNCTION fb2
255-
EXPORTING iv_trkorr = is_transport-task
256-
EXCEPTIONS OTHERS = 1.
258+
EXPORTING
259+
iv_trkorr = is_transport-task
260+
EXCEPTIONS
261+
OTHERS = 1.
257262
IF sy-subrc <> 0.
258263
RETURN.
259264
ELSE.

0 commit comments

Comments
 (0)