Skip to content

Commit

Permalink
Fix extended check issues - Part 8 (abapGit#7094)
Browse files Browse the repository at this point in the history
Co-authored-by: Lars Hvam <[email protected]>
  • Loading branch information
mbtools and larshp authored Dec 5, 2024
1 parent 697bc7f commit da3f5e2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/objects/zcl_abapgit_object_iwpr.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ CLASS zcl_abapgit_object_iwpr IMPLEMENTATION.

METHOD zif_abapgit_object~jump.

SUBMIT /iwbep/r_sbui_service_builder
DATA lv_prog TYPE progname.

lv_prog = '/IWBEP/R_SBUI_SERVICE_BUILDER'.

SUBMIT (lv_prog)
WITH i_prname = ms_item-obj_name
AND RETURN.

Expand Down
6 changes: 5 additions & 1 deletion src/objects/zcl_abapgit_object_iwvb.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,11 @@ CLASS zcl_abapgit_object_iwvb IMPLEMENTATION.

METHOD zif_abapgit_object~jump.

SUBMIT /iwbep/r_dst_vocan_register
DATA lv_prog TYPE progname.

lv_prog = '/IWBEP/R_DST_VOCAN_REGISTER'.

SUBMIT (lv_prog)
WITH ip_aname = ms_item-obj_name
WITH ip_avers = ms_item-obj_name+32(4)
AND RETURN.
Expand Down

0 comments on commit da3f5e2

Please sign in to comment.