mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Fix syntax errors in lower releases (table keys)
Unfortunately, lower releases don't like the secondary keys with these where clauses. Regression #7169
This commit is contained in:
parent
ec12f18b62
commit
7639f9fee8
|
@ -38,7 +38,7 @@ CLASS zcl_abapgit_transport_objects IMPLEMENTATION.
|
|||
|
||||
LOOP AT mt_transport_objects INTO ls_transport_object.
|
||||
LOOP AT it_object_statuses INTO ls_object_status
|
||||
USING KEY sec_key
|
||||
" USING KEY sec_key " syntax error in 754
|
||||
WHERE obj_name = ls_transport_object-obj_name
|
||||
AND obj_type = ls_transport_object-object
|
||||
AND NOT lstate IS INITIAL.
|
||||
|
|
|
@ -155,7 +155,7 @@ CLASS zcl_abapgit_repo_news IMPLEMENTATION.
|
|||
ENDTRY.
|
||||
|
||||
LOOP AT lt_remote ASSIGNING <ls_file>
|
||||
USING KEY file_path
|
||||
" USING KEY file_path " syntax error in 754
|
||||
WHERE path = lc_log_path
|
||||
AND ( filename CP lc_log_filename OR filename CP lc_log_filename_up ).
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user