From bdc17e58abbdccfcfaefdcd197e90801288983ea Mon Sep 17 00:00:00 2001 From: Ruixing Yang Date: Fri, 31 Jan 2025 15:10:38 +0100 Subject: [PATCH] rename titles and fields in INAservice section --- .../rvbc/examples/z_aff_example_rvbc.rvbc.json | 6 +++--- file-formats/rvbc/rvbc-v1.json | 10 +++++----- .../rvbc/type/zif_aff_rvbc_v1.intf.abap | 18 +++++++++--------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/file-formats/rvbc/examples/z_aff_example_rvbc.rvbc.json b/file-formats/rvbc/examples/z_aff_example_rvbc.rvbc.json index 80287d9a3..c59a9df6c 100644 --- a/file-formats/rvbc/examples/z_aff_example_rvbc.rvbc.json +++ b/file-formats/rvbc/examples/z_aff_example_rvbc.rvbc.json @@ -10,8 +10,8 @@ "application": "test.app.adt.editor", "extensibilityMode": "supportedPredefinedQueries" }, - "ina1Service": { - "predefinedIna1Service": "UI_INA_TST_FLIGHT_SERVBIND", - "customIna1Service": "YY1_TEST_INA1" + "ina1Services": { + "predefined": "UI_INA_TST_FLIGHT_SERVBIND", + "custom": "YY1_TEST_INA1" } } diff --git a/file-formats/rvbc/rvbc-v1.json b/file-formats/rvbc/rvbc-v1.json index ecb04c555..f997bfa1e 100644 --- a/file-formats/rvbc/rvbc-v1.json +++ b/file-formats/rvbc/rvbc-v1.json @@ -128,18 +128,18 @@ }, "additionalProperties": false }, - "ina1Service": { - "title": "InA Service", - "description": "InA service", + "ina1Services": { + "title": "InA Services", + "description": "InA services", "type": "object", "properties": { - "predefinedIna1Service": { + "predefined": { "title": "Predefined InA Service", "description": "Predefined InA service", "type": "string", "maxLength": 40 }, - "customIna1Service": { + "custom": { "title": "Custom InA Service", "description": "Custom InA service", "type": "string", diff --git a/file-formats/rvbc/type/zif_aff_rvbc_v1.intf.abap b/file-formats/rvbc/type/zif_aff_rvbc_v1.intf.abap index 33257d683..0cda41dd2 100644 --- a/file-formats/rvbc/type/zif_aff_rvbc_v1.intf.abap +++ b/file-formats/rvbc/type/zif_aff_rvbc_v1.intf.abap @@ -66,16 +66,16 @@ INTERFACE zif_aff_rvbc_v1 END OF ty_booklet_definition. TYPES: - "!

InA Service

- "! InA Service - BEGIN OF ty_ina1_service, + "!

InA Services

+ "! InA Services + BEGIN OF ty_ina1_services, "!

Predefined InA Service

"! Predefined InA service - predefined_ina1_service TYPE ty_ina1_service_name, + predefined TYPE ty_ina1_service_name, "!

Custom InA Service

"! Custom InA service - custom_ina1_service TYPE ty_ina1_service_name, - END OF ty_ina1_service. + custom TYPE ty_ina1_service_name, + END OF ty_ina1_services. TYPES: "!

Object Type RVBC

@@ -92,9 +92,9 @@ INTERFACE zif_aff_rvbc_v1 "!

Booklet Definition

"! Booklet definition booklet_definition TYPE ty_booklet_definition, - "!

InA Service

- "! InA service - ina1_service TYPE ty_ina1_service, + "!

InA Services

+ "! InA services + ina1_services TYPE ty_ina1_services, END OF ty_main. ENDINTERFACE.