SOTS: fix code inspector errors

This commit is contained in:
Christian Guenter 2019-02-03 21:16:28 +01:00 committed by Lars Hvam
parent c6c45baa90
commit f0c8375dbd

View File

@ -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