This commit is contained in:
oblomov 2024-05-05 12:07:11 +02:00 committed by GitHub
parent f014602e99
commit 50d15cdb8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 11 deletions

View File

@ -39,16 +39,6 @@ CLASS z2ui5_cl_core_event_srv IMPLEMENTATION.
result = |{ z2ui5_if_core_types=>cs_ui5-event_backend_function }(['{ val }'|.
* IF s_cnt-model_name IS NOT INITIAL.
* IF s_cnt-check_allow_multi_req = abap_true.
* IF s_cnt-check_view_destroy = abap_true.
* result = result && `,true,true, "` && s_cnt-model_name && `"`.
* ELSE.
* result = result && `,false,true, "` && s_cnt-model_name && `"`.
* ENDIF.
* ELSE.
* result = result && `,false,false, "` && s_cnt-model_name && `"`.
* ENDIF.
IF s_cnt-check_allow_multi_req = abap_true.
IF s_cnt-check_view_destroy = abap_true.
result = result && `,true,true`.

View File

@ -48,7 +48,6 @@ INTERFACE z2ui5_if_types
BEGIN OF ty_s_event_control,
check_view_destroy TYPE abap_bool,
check_allow_multi_req TYPE abap_bool,
* model_name TYPE string,
END OF ty_s_event_control.
ENDINTERFACE.