Skip to content

Commit

Permalink
Marc-Bernard-Tools#12 added support for more types of parameter t-codes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alih-b authored Apr 17, 2024
1 parent 1a93b9a commit 0360cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/#mbtools#cl_command__show.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ CLASS /mbtools/cl_command__show IMPLEMENTATION.
OTHERS = 2.
rs_tadir_key-obj_name = ls_report-report.
WHEN OTHERS.
MESSAGE 'It is a generated report' type 'I'.
MESSAGE 'It is a generated report' TYPE 'I'.
RETURN.
ENDCASE.
RETURN.
Expand Down Expand Up @@ -216,7 +216,7 @@ CLASS /mbtools/cl_command__show IMPLEMENTATION.
lv_object_is_tcode = abap_true.
ENDIF.
ENDIF.
IF lv_object IS NOT INITIAL AND lv_object_is_tcode.
IF lv_object IS NOT INITIAL AND lv_object_is_tcode = abap_true.
CALL FUNCTION 'SRT_GET_REPORT_OF_TCODE'
EXPORTING
tcode = lv_object
Expand Down

0 comments on commit 0360cf9

Please sign in to comment.