Skip to content

Commit

Permalink
replace select *
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtools committed Apr 17, 2024
1 parent 7c90234 commit 65e96e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/#mbtools#cl_command__show.clas.testclasses.abap
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ CLASS ltcl_command_show IMPLEMENTATION.

METHOD test.

DATA ls_tstc TYPE tstc.
DATA lv_tcode TYPE tstc-tcode.
DATA ls_act TYPE /mbtools/if_definitions=>ty_tadir_key.

SELECT SINGLE * INTO ls_tstc FROM tstc WHERE tcode = iv_tcode.
SELECT SINGLE tcode INTO lv_tcode FROM tstc WHERE tcode = iv_tcode.
CHECK sy-subrc = 0.

ls_act = /mbtools/cl_command__show=>get_object_from_tcode( iv_tcode ).
Expand Down

0 comments on commit 65e96e6

Please sign in to comment.