Add DEVC jump

This commit is contained in:
Fabian Lupa 2017-10-01 17:32:32 +02:00
parent 2ef90d9df2
commit b90fcb783a

View File

@ -271,19 +271,19 @@ CLASS lcl_object_devc IMPLEMENTATION.
ENDMETHOD.
METHOD lif_object~jump.
* CALL FUNCTION 'RS_TOOL_ACCESS'
* EXPORTING
* operation = 'SHOW'
* object_name = ???
* object_type = 'DEVC'
* EXCEPTIONS
* not_executed = 1
* invalid_object_type = 2
* OTHERS = 3.
*
* IF sy-subrc <> 0.
* lcx_exception=>raise( |Error from RS_TOOL_ACCESS, DEVC| ).
* ENDIF.
CALL FUNCTION 'RS_TOOL_ACCESS'
EXPORTING
operation = 'SHOW'
object_name = ms_item-obj_name
object_type = 'DEVC'
in_new_window = abap_true
EXCEPTIONS
not_executed = 1
invalid_object_type = 2
OTHERS = 3.
IF sy-subrc <> 0.
lcx_exception=>raise( |Error from RS_TOOL_ACCESS, DEVC| ).
ENDIF.
ENDMETHOD.
METHOD lif_object~serialize.