mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
Add DEVC jump
This commit is contained in:
parent
2ef90d9df2
commit
b90fcb783a
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user