mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Update zcl_abapgit_object_cota.clas.abap
removed @ in select
This commit is contained in:
parent
82568c2545
commit
d022e87b3a
|
@ -17,14 +17,12 @@ CLASS zcl_abapgit_object_cota IMPLEMENTATION.
|
||||||
METHOD zif_abapgit_object~changed_by.
|
METHOD zif_abapgit_object~changed_by.
|
||||||
DATA lx_error TYPE REF TO cx_root.
|
DATA lx_error TYPE REF TO cx_root.
|
||||||
TRY.
|
TRY.
|
||||||
SELECT SINGLE changedby FROM ('sapcontargethead')
|
SELECT SINGLE changedby FROM ('sapcontargethead') INTO rv_user
|
||||||
WHERE id = @ms_item-obj_name AND version = 'I'
|
WHERE id = ms_item-obj_name AND version = 'I'.
|
||||||
INTO @rv_user.
|
|
||||||
|
|
||||||
IF rv_user IS INITIAL.
|
IF rv_user IS INITIAL.
|
||||||
SELECT SINGLE changedby FROM ('sapcontargethead')
|
SELECT SINGLE changedby FROM ('sapcontargethead') INTO rv_user
|
||||||
WHERE id = @ms_item-obj_name AND version = 'A'
|
WHERE id = ms_item-obj_name AND version = 'A'.
|
||||||
INTO @rv_user.
|
|
||||||
ENDIF.
|
ENDIF.
|
||||||
CATCH cx_root INTO lx_error.
|
CATCH cx_root INTO lx_error.
|
||||||
zcx_abapgit_exception=>raise_with_text( lx_error ).
|
zcx_abapgit_exception=>raise_with_text( lx_error ).
|
||||||
|
|
Loading…
Reference in New Issue
Block a user