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:
Marc Bernard 2025-03-29 09:07:46 +00:00
parent ec12f18b62
commit 7639f9fee8
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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 ).