mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
SOTS: fix code inspector errors
This commit is contained in:
parent
c6c45baa90
commit
f0c8375dbd
|
@ -193,12 +193,18 @@ CLASS zcl_abapgit_object_sots IMPLEMENTATION.
|
|||
|
||||
METHOD zif_abapgit_object~jump.
|
||||
|
||||
DATA: lv_object_name TYPE eu_lname,
|
||||
lv_object_type TYPE seu_obj.
|
||||
|
||||
lv_object_name = ms_item-obj_name.
|
||||
lv_object_type = ms_item-obj_type.
|
||||
|
||||
CALL FUNCTION 'RS_TOOL_ACCESS_REMOTE'
|
||||
DESTINATION 'NONE'
|
||||
EXPORTING
|
||||
operation = 'SHOW'
|
||||
object_name = ms_item-obj_name
|
||||
object_type = ms_item-obj_type
|
||||
object_name = lv_object_name
|
||||
object_type = lv_object_type
|
||||
EXCEPTIONS
|
||||
not_executed = 1
|
||||
invalid_object_type = 2
|
||||
|
|
Loading…
Reference in New Issue
Block a user