mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +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 mt_transport_objects INTO ls_transport_object.
|
||||||
LOOP AT it_object_statuses INTO ls_object_status
|
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
|
WHERE obj_name = ls_transport_object-obj_name
|
||||||
AND obj_type = ls_transport_object-object
|
AND obj_type = ls_transport_object-object
|
||||||
AND NOT lstate IS INITIAL.
|
AND NOT lstate IS INITIAL.
|
||||||
|
|
|
@ -155,7 +155,7 @@ CLASS zcl_abapgit_repo_news IMPLEMENTATION.
|
||||||
ENDTRY.
|
ENDTRY.
|
||||||
|
|
||||||
LOOP AT lt_remote ASSIGNING <ls_file>
|
LOOP AT lt_remote ASSIGNING <ls_file>
|
||||||
USING KEY file_path
|
" USING KEY file_path " syntax error in 754
|
||||||
WHERE path = lc_log_path
|
WHERE path = lc_log_path
|
||||||
AND ( filename CP lc_log_filename OR filename CP lc_log_filename_up ).
|
AND ( filename CP lc_log_filename OR filename CP lc_log_filename_up ).
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user