Skip to content

Commit

Permalink
rename titles and fields in INAservice section
Browse files Browse the repository at this point in the history
  • Loading branch information
RuixingYangSAP authored and schneidermic0 committed Jan 31, 2025
1 parent f74d1d5 commit bdc17e5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions file-formats/rvbc/examples/z_aff_example_rvbc.rvbc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
10 changes: 5 additions & 5 deletions file-formats/rvbc/rvbc-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
18 changes: 9 additions & 9 deletions file-formats/rvbc/type/zif_aff_rvbc_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ INTERFACE zif_aff_rvbc_v1
END OF ty_booklet_definition.

TYPES:
"! <p class="shorttext">InA Service</p>
"! InA Service
BEGIN OF ty_ina1_service,
"! <p class="shorttext">InA Services</p>
"! InA Services
BEGIN OF ty_ina1_services,
"! <p class="shorttext">Predefined InA Service</p>
"! Predefined InA service
predefined_ina1_service TYPE ty_ina1_service_name,
predefined TYPE ty_ina1_service_name,
"! <p class="shorttext">Custom InA Service</p>
"! 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:
"! <p class="shorttext">Object Type RVBC</p>
Expand All @@ -92,9 +92,9 @@ INTERFACE zif_aff_rvbc_v1
"! <p class="shorttext">Booklet Definition</p>
"! Booklet definition
booklet_definition TYPE ty_booklet_definition,
"! <p class="shorttext">InA Service</p>
"! InA service
ina1_service TYPE ty_ina1_service,
"! <p class="shorttext">InA Services</p>
"! InA services
ina1_services TYPE ty_ina1_services,
END OF ty_main.

ENDINTERFACE.

0 comments on commit bdc17e5

Please sign in to comment.