From 75e2f52742ddc873fcac38d257454249671dd03b Mon Sep 17 00:00:00 2001 From: Patrick Winkler Date: Sun, 18 Aug 2024 11:27:32 +0200 Subject: [PATCH 01/32] update 2411 --- file-formats/smbc/README.md | 2 +- .../examples/z_aff_example_smbc.smbc.json | 1 + file-formats/smbc/smbc-v1.json | 25 +++++++++++- .../smbc/type/zif_aff_smbc_v1.intf.abap | 40 +++++++++++++------ 4 files changed, 54 insertions(+), 14 deletions(-) diff --git a/file-formats/smbc/README.md b/file-formats/smbc/README.md index 8ff4b335c..93d3b18ef 100644 --- a/file-formats/smbc/README.md +++ b/file-formats/smbc/README.md @@ -1,5 +1,5 @@ # SMBC File Format File | Cardinality | Definition | Schema | Example -:--- | :--- | :--- | :--- | :--- +:--- | :--- | :--- | :--- | :--- `.smbc.json` | 1 | [`zif_aff_smbc_v1.intf.abap`](./type/zif_aff_smbc_v1.intf.abap) | [`smbc-v1.json`](./smbc-v1.json) | [`z_aff_example_smbc.smbc.json`](./examples/z_aff_example_smbc.smbc.json) diff --git a/file-formats/smbc/examples/z_aff_example_smbc.smbc.json b/file-formats/smbc/examples/z_aff_example_smbc.smbc.json index 5920cc1e1..732dc773e 100644 --- a/file-formats/smbc/examples/z_aff_example_smbc.smbc.json +++ b/file-formats/smbc/examples/z_aff_example_smbc.smbc.json @@ -27,6 +27,7 @@ { "entitySet": "Customer", "tableType": "gridTable", + "selectionMode": "auto", "enableFullScreen": true } ] diff --git a/file-formats/smbc/smbc-v1.json b/file-formats/smbc/smbc-v1.json index fede5e84a..69c3e3d27 100644 --- a/file-formats/smbc/smbc-v1.json +++ b/file-formats/smbc/smbc-v1.json @@ -194,6 +194,11 @@ "title": "Editable Header Content", "description": "If true, the header content is changeable in edit mode", "type": "boolean" + }, + "showTransportSelectionStrip": { + "title": "Show Transport Selection Strip", + "description": "If true, the selected transport request and transport request select action are displayed in a message strip.", + "type": "boolean" } }, "additionalProperties": false @@ -239,7 +244,12 @@ "Select Single Entry", "None" ], - "default": "auto" + "default": "multi" + }, + "selectAll": { + "title": "Select All", + "description": "Enable Select all checkbox", + "type": "boolean" }, "rowCountMode": { "title": "Row Count Mode", @@ -267,6 +277,14 @@ "maximum": 1000, "default": 5 }, + "frozenColumnCount": { + "title": "Frozen Column Count", + "description": "You can freeze the first columns of a table so that they always remain visible when scrolling the table horizontally", + "type": "integer", + "minimum": 0, + "maximum": 30, + "default": 0 + }, "creationModeName": { "title": "Table Creation Mode", "type": "string", @@ -315,6 +333,11 @@ "description": "If true, display rows in a condensed way. Only applicaple to Table Type 'GridTable'.", "type": "boolean" }, + "widthIncludingColumnHeader": { + "title": "Include column headers in width calculation", + "description": "If true, include the column labels while calculating the default column width. By default, the column width is calculated based on the type of the content", + "type": "boolean" + }, "disablePaste": { "title": "Disable Paste", "description": "If true, disable the possibility to add several items by copying and pasting data from an excel file", diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index e5e3b72e1..a995bd750 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -109,7 +109,7 @@ INTERFACE zif_aff_smbc_v1 "! Defines whether data in the List Report is automatically loaded on first app start. "! $values {@link zif_aff_smbc_v1.data:co_initial_load} "! $default {@link zif_aff_smbc_v1.data:co_initial_load.enabled} - initial_load TYPE string, + initial_load TYPE string, "!

Variant Management

"! $values {@link zif_aff_smbc_v1.data:co_list_variant_management} "! $default {@link zif_aff_smbc_v1.data:co_list_variant_management.page} @@ -127,10 +127,13 @@ INTERFACE zif_aff_smbc_v1 "!

Variant Management

"! $values {@link zif_aff_smbc_v1.data:co_page_variant_management} "! $default {@link zif_aff_smbc_v1.data:co_page_variant_management.none} - variant_management TYPE string, + variant_management TYPE string, "!

Editable Header Content

"! If true, the header content is changeable in edit mode editable_header_content TYPE abap_bool, + "!

Show Transport Selection Strip

+ "! If true, the selected transport request and transport request select action are displayed in a message strip. + show_transport_selection_strip TYPE abap_bool, END OF ty_object_page, "!

Table Settings

BEGIN OF ty_table_setting, @@ -139,19 +142,28 @@ INTERFACE zif_aff_smbc_v1 table_type TYPE ty_table_type, "!

Selection Mode

"! $values {@link zif_aff_smbc_v1.data:co_selection_mode} - "! $default {@link zif_aff_smbc_v1.data:co_selection_mode.auto} + "! $default {@link zif_aff_smbc_v1.data:co_selection_mode.multi} selection_mode TYPE string, + "!

Select All

+ "! Enable Select all checkbox + select_all TYPE abap_bool, "!

Row Count Mode

"! Defines how the table handles the visible rows in the table "! $values {@link zif_aff_smbc_v1.data:co_row_count_mode} "! $default {@link zif_aff_smbc_v1.data:co_row_count_mode.fixed} - row_count_mode TYPE string, + row_count_mode TYPE string, "!

Row Count

"! Number of visible rows of the table "! $minimum 1 "! $maximum 1000 "! $default '5' - row_count TYPE i, + row_count TYPE i, + "!

Frozen Column Count

+ "! You can freeze the first columns of a table so that they always remain visible when scrolling the table horizontally + "! $minimum 0 + "! $maximum 30 + "! $default '0' + frozen_column_count TYPE i, "!

Table Creation Mode

"! $values {@link zif_aff_smbc_v1.data:co_creation_mode_name} "! $default {@link zif_aff_smbc_v1.data:co_creation_mode_name.new_page} @@ -171,6 +183,10 @@ INTERFACE zif_aff_smbc_v1 "!

Condensed Table Layout

"! If true, display rows in a condensed way. Only applicaple to Table Type 'GridTable'. condensed_table_layout TYPE abap_bool, + "!

Include column headers in width calculation

+ "! If true, include the column labels while calculating the default column width. + "! By default, the column width is calculated based on the type of the content + width_including_column_header TYPE abap_bool, "!

Disable Paste

"! If true, disable the possibility to add several items by copying and pasting data from an excel file disable_paste TYPE abap_bool, @@ -179,7 +195,7 @@ INTERFACE zif_aff_smbc_v1 enable_full_screen TYPE abap_bool, "!

Enable Mass Edit

"! Mass editing allows users to simultaneously change multiple objects that share the same editable properties - enable_mass_edit TYPE abap_bool, + enable_mass_edit TYPE abap_bool, END OF ty_table_setting, "!

Object Page Configurations

ty_object_pages TYPE SORTED TABLE OF ty_object_page WITH UNIQUE KEY entity_set, @@ -197,29 +213,29 @@ INTERFACE zif_aff_smbc_v1 "!

Service Binding

"! Service Binding used for business configuration maintenance "! $required - service_binding TYPE c LENGTH 40, + service_binding TYPE c LENGTH 40, "!

Service Name

"! $required - service_name TYPE c LENGTH 40, + service_name TYPE c LENGTH 40, "!

Service Version

"! The major version number of the service to be used (as defined in the Service Binding) "! $required - service_version TYPE n LENGTH 4, + service_version TYPE n LENGTH 4, "!

Root Entity Set

"! Root Entity Set exposed by the Service Definition "! $required - root_entity_set TYPE c LENGTH 30, + root_entity_set TYPE c LENGTH 30, "!

Name

"! Name of the Business Configuration "! $required - name TYPE c LENGTH 50, + name TYPE c LENGTH 50, "!

Configuration Group

"! $showAlways configuration_group TYPE c LENGTH 30, "!

Skip Root Entity List Report

"! If true, the UI automatically navigates to the Object Page of the root entity "! $showAlways - skip_root_entity TYPE abap_bool, + skip_root_entity TYPE abap_bool, END OF ty_service_configuration. TYPES: From d52923e2dc5949306cd07c74f35bc3bdd1bfa7e2 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:37:16 +0100 Subject: [PATCH 02/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index a995bd750..746cfcc36 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -109,7 +109,7 @@ INTERFACE zif_aff_smbc_v1 "! Defines whether data in the List Report is automatically loaded on first app start. "! $values {@link zif_aff_smbc_v1.data:co_initial_load} "! $default {@link zif_aff_smbc_v1.data:co_initial_load.enabled} - initial_load TYPE string, + initial_load TYPE string, "!

Variant Management

"! $values {@link zif_aff_smbc_v1.data:co_list_variant_management} "! $default {@link zif_aff_smbc_v1.data:co_list_variant_management.page} From d319aaeed3deb496f1a2dd4c9915707c9e8bab26 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:39:38 +0100 Subject: [PATCH 03/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 746cfcc36..3ce694c01 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -118,7 +118,7 @@ INTERFACE zif_aff_smbc_v1 "!

Object Page Settings

BEGIN OF ty_object_page, "!

Entity Set

- entity_set TYPE string, + entity_set TYPE string, "!

Section Layout

"! Toggle between onepage concept and tabs. "! $values {@link zif_aff_smbc_v1.data:co_section_layout} From 09b8f5c8d6d64e7226f3c19178ddde63e0795ef6 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:39:54 +0100 Subject: [PATCH 04/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 3ce694c01..218587a53 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -123,7 +123,7 @@ INTERFACE zif_aff_smbc_v1 "! Toggle between onepage concept and tabs. "! $values {@link zif_aff_smbc_v1.data:co_section_layout} "! $default {@link zif_aff_smbc_v1.data:co_section_layout.page} - section_layout TYPE string, + section_layout TYPE string, "!

Variant Management

"! $values {@link zif_aff_smbc_v1.data:co_page_variant_management} "! $default {@link zif_aff_smbc_v1.data:co_page_variant_management.none} From 7f08879a1107367c6e6d8f2532c5581c402037d8 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:40:12 +0100 Subject: [PATCH 05/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 218587a53..f14fa6bfe 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -127,7 +127,7 @@ INTERFACE zif_aff_smbc_v1 "!

Variant Management

"! $values {@link zif_aff_smbc_v1.data:co_page_variant_management} "! $default {@link zif_aff_smbc_v1.data:co_page_variant_management.none} - variant_management TYPE string, + variant_management TYPE string, "!

Editable Header Content

"! If true, the header content is changeable in edit mode editable_header_content TYPE abap_bool, From c1e474b9fc493158f55edd8dfa6091eb413e7fa1 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:40:43 +0100 Subject: [PATCH 06/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index f14fa6bfe..18d3b3ae9 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -130,7 +130,7 @@ INTERFACE zif_aff_smbc_v1 variant_management TYPE string, "!

Editable Header Content

"! If true, the header content is changeable in edit mode - editable_header_content TYPE abap_bool, + editable_header_content TYPE abap_bool, "!

Show Transport Selection Strip

"! If true, the selected transport request and transport request select action are displayed in a message strip. show_transport_selection_strip TYPE abap_bool, From 9ea2f78d305c1374af92d80b257e743c2b826317 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:40:55 +0100 Subject: [PATCH 07/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 18d3b3ae9..3254d1aed 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -138,7 +138,7 @@ INTERFACE zif_aff_smbc_v1 "!

Table Settings

BEGIN OF ty_table_setting, "!

Entity Set

- entity_set TYPE string, + entity_set TYPE string, table_type TYPE ty_table_type, "!

Selection Mode

"! $values {@link zif_aff_smbc_v1.data:co_selection_mode} From 7274da598e4c0123b0a6ae35201b3f6edc31421e Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:41:10 +0100 Subject: [PATCH 08/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 3254d1aed..2a3e66fa3 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -139,7 +139,7 @@ INTERFACE zif_aff_smbc_v1 BEGIN OF ty_table_setting, "!

Entity Set

entity_set TYPE string, - table_type TYPE ty_table_type, + table_type TYPE ty_table_type, "!

Selection Mode

"! $values {@link zif_aff_smbc_v1.data:co_selection_mode} "! $default {@link zif_aff_smbc_v1.data:co_selection_mode.multi} From caf0c30e6b898810478ab4183f1dcc3445b418e7 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:41:24 +0100 Subject: [PATCH 09/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 2a3e66fa3..97d2a191a 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -143,7 +143,7 @@ INTERFACE zif_aff_smbc_v1 "!

Selection Mode

"! $values {@link zif_aff_smbc_v1.data:co_selection_mode} "! $default {@link zif_aff_smbc_v1.data:co_selection_mode.multi} - selection_mode TYPE string, + selection_mode TYPE string, "!

Select All

"! Enable Select all checkbox select_all TYPE abap_bool, From c8018ce727f21c54f72c45b0795c23bbee37b6b4 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:41:45 +0100 Subject: [PATCH 10/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 97d2a191a..0b3537f1f 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -146,7 +146,7 @@ INTERFACE zif_aff_smbc_v1 selection_mode TYPE string, "!

Select All

"! Enable Select all checkbox - select_all TYPE abap_bool, + select_all TYPE abap_bool, "!

Row Count Mode

"! Defines how the table handles the visible rows in the table "! $values {@link zif_aff_smbc_v1.data:co_row_count_mode} From 39ade4bc6e5fa9b85538abcb6562b87f56f81d16 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:42:02 +0100 Subject: [PATCH 11/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 0b3537f1f..4f0e20562 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -151,7 +151,7 @@ INTERFACE zif_aff_smbc_v1 "! Defines how the table handles the visible rows in the table "! $values {@link zif_aff_smbc_v1.data:co_row_count_mode} "! $default {@link zif_aff_smbc_v1.data:co_row_count_mode.fixed} - row_count_mode TYPE string, + row_count_mode TYPE string, "!

Row Count

"! Number of visible rows of the table "! $minimum 1 From d15270664ec0fd7e3fa24903f8b00364118bdb9e Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:42:16 +0100 Subject: [PATCH 12/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 4f0e20562..e4b1b744c 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -157,7 +157,7 @@ INTERFACE zif_aff_smbc_v1 "! $minimum 1 "! $maximum 1000 "! $default '5' - row_count TYPE i, + row_count TYPE i, "!

Frozen Column Count

"! You can freeze the first columns of a table so that they always remain visible when scrolling the table horizontally "! $minimum 0 From 198c39255c5d8526adf92831cd45578e9b80474d Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:42:32 +0100 Subject: [PATCH 13/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index e4b1b744c..fb6d00d3a 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -163,7 +163,7 @@ INTERFACE zif_aff_smbc_v1 "! $minimum 0 "! $maximum 30 "! $default '0' - frozen_column_count TYPE i, + frozen_column_count TYPE i, "!

Table Creation Mode

"! $values {@link zif_aff_smbc_v1.data:co_creation_mode_name} "! $default {@link zif_aff_smbc_v1.data:co_creation_mode_name.new_page} From 5d2752baed86f667a4d1c739e88d4d50306d8ef1 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:43:00 +0100 Subject: [PATCH 14/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index fb6d00d3a..4e192d060 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -167,7 +167,7 @@ INTERFACE zif_aff_smbc_v1 "!

Table Creation Mode

"! $values {@link zif_aff_smbc_v1.data:co_creation_mode_name} "! $default {@link zif_aff_smbc_v1.data:co_creation_mode_name.new_page} - creation_mode_name TYPE ty_creation_mode-name, + creation_mode_name TYPE ty_creation_mode-name, "!

Create at End

"! If true, a new row is added to the end of the table instead of the beginning of the table create_at_end TYPE ty_creation_mode-create_at_end, From 3bc04c8df19fbbedcca438250940db2ef777d24f Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:43:27 +0100 Subject: [PATCH 15/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 4e192d060..9414fee6e 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -170,7 +170,7 @@ INTERFACE zif_aff_smbc_v1 creation_mode_name TYPE ty_creation_mode-name, "!

Create at End

"! If true, a new row is added to the end of the table instead of the beginning of the table - create_at_end TYPE ty_creation_mode-create_at_end, + create_at_end TYPE ty_creation_mode-create_at_end, "!

Hide Filter

"! If true, the user cannot filter data of the table hide_filter TYPE ty_personalization-hide_filter, From 19dc6bd0694bbe3437bcf5968eb946879efa0f58 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:43:42 +0100 Subject: [PATCH 16/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 9414fee6e..4d0da1543 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -173,7 +173,7 @@ INTERFACE zif_aff_smbc_v1 create_at_end TYPE ty_creation_mode-create_at_end, "!

Hide Filter

"! If true, the user cannot filter data of the table - hide_filter TYPE ty_personalization-hide_filter, + hide_filter TYPE ty_personalization-hide_filter, "!

Hide Sort

"! If true, the user cannot sort the table hide_sort TYPE ty_personalization-hide_sort, From 9d7f3ae13eebd4b73d9844cd8d0f1d53fbb0317b Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:43:55 +0100 Subject: [PATCH 17/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 4d0da1543..7e194cb75 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -176,7 +176,7 @@ INTERFACE zif_aff_smbc_v1 hide_filter TYPE ty_personalization-hide_filter, "!

Hide Sort

"! If true, the user cannot sort the table - hide_sort TYPE ty_personalization-hide_sort, + hide_sort TYPE ty_personalization-hide_sort, "!

Hide Column

"! If true, the user cannot add and remove columns to the table hide_column TYPE ty_personalization-hide_column, From f3d810e46c4895b604a624c69cfbd1d2b46b5682 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:44:19 +0100 Subject: [PATCH 18/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 7e194cb75..b70296abe 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -179,7 +179,7 @@ INTERFACE zif_aff_smbc_v1 hide_sort TYPE ty_personalization-hide_sort, "!

Hide Column

"! If true, the user cannot add and remove columns to the table - hide_column TYPE ty_personalization-hide_column, + hide_column TYPE ty_personalization-hide_column, "!

Condensed Table Layout

"! If true, display rows in a condensed way. Only applicaple to Table Type 'GridTable'. condensed_table_layout TYPE abap_bool, From cec6b6af9f54d16fcdab9b8165d891229d87c172 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:44:33 +0100 Subject: [PATCH 19/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index b70296abe..16b5c7f6a 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -182,7 +182,7 @@ INTERFACE zif_aff_smbc_v1 hide_column TYPE ty_personalization-hide_column, "!

Condensed Table Layout

"! If true, display rows in a condensed way. Only applicaple to Table Type 'GridTable'. - condensed_table_layout TYPE abap_bool, + condensed_table_layout TYPE abap_bool, "!

Include column headers in width calculation

"! If true, include the column labels while calculating the default column width. "! By default, the column width is calculated based on the type of the content From 66b2eb36b674bced4c303f6da3d3b490fc937300 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:44:48 +0100 Subject: [PATCH 20/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 16b5c7f6a..24a526c93 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -189,7 +189,7 @@ INTERFACE zif_aff_smbc_v1 width_including_column_header TYPE abap_bool, "!

Disable Paste

"! If true, disable the possibility to add several items by copying and pasting data from an excel file - disable_paste TYPE abap_bool, + disable_paste TYPE abap_bool, "!

Enable Full Screen

"! If true, a button on the table toolbar allows the user to open the table in fullscreen dialog enable_full_screen TYPE abap_bool, From 72aaad21e21883cc100ee03e3a787e20f86c7793 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:45:02 +0100 Subject: [PATCH 21/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 24a526c93..328e7442f 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -192,7 +192,7 @@ INTERFACE zif_aff_smbc_v1 disable_paste TYPE abap_bool, "!

Enable Full Screen

"! If true, a button on the table toolbar allows the user to open the table in fullscreen dialog - enable_full_screen TYPE abap_bool, + enable_full_screen TYPE abap_bool, "!

Enable Mass Edit

"! Mass editing allows users to simultaneously change multiple objects that share the same editable properties enable_mass_edit TYPE abap_bool, From fe7a00acce742483e26aa61995aaacd1c6c67f19 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:45:20 +0100 Subject: [PATCH 22/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 328e7442f..7d76f7c55 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -195,7 +195,7 @@ INTERFACE zif_aff_smbc_v1 enable_full_screen TYPE abap_bool, "!

Enable Mass Edit

"! Mass editing allows users to simultaneously change multiple objects that share the same editable properties - enable_mass_edit TYPE abap_bool, + enable_mass_edit TYPE abap_bool, END OF ty_table_setting, "!

Object Page Configurations

ty_object_pages TYPE SORTED TABLE OF ty_object_page WITH UNIQUE KEY entity_set, From 3f9d15228d2a9abaceb62a2b1c7b6fbb43407204 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:45:37 +0100 Subject: [PATCH 23/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 7d76f7c55..7822ab445 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -213,7 +213,7 @@ INTERFACE zif_aff_smbc_v1 "!

Service Binding

"! Service Binding used for business configuration maintenance "! $required - service_binding TYPE c LENGTH 40, + service_binding TYPE c LENGTH 40, "!

Service Name

"! $required service_name TYPE c LENGTH 40, From 874d5d78d954f136deadcad1125e6028bcc366e5 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:45:51 +0100 Subject: [PATCH 24/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 7822ab445..9176fcf55 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -216,7 +216,7 @@ INTERFACE zif_aff_smbc_v1 service_binding TYPE c LENGTH 40, "!

Service Name

"! $required - service_name TYPE c LENGTH 40, + service_name TYPE c LENGTH 40, "!

Service Version

"! The major version number of the service to be used (as defined in the Service Binding) "! $required From 9f06c616c85c5cff888a2cb5c9cc391af2ab7be2 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:46:05 +0100 Subject: [PATCH 25/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 9176fcf55..253e06066 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -220,7 +220,7 @@ INTERFACE zif_aff_smbc_v1 "!

Service Version

"! The major version number of the service to be used (as defined in the Service Binding) "! $required - service_version TYPE n LENGTH 4, + service_version TYPE n LENGTH 4, "!

Root Entity Set

"! Root Entity Set exposed by the Service Definition "! $required From 6031bf1577f85e62628ccb868504f5df9d470645 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:46:19 +0100 Subject: [PATCH 26/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 253e06066..3fec8e1a6 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -224,7 +224,7 @@ INTERFACE zif_aff_smbc_v1 "!

Root Entity Set

"! Root Entity Set exposed by the Service Definition "! $required - root_entity_set TYPE c LENGTH 30, + root_entity_set TYPE c LENGTH 30, "!

Name

"! Name of the Business Configuration "! $required From e759deecf8d9822aaad50bf6e87b56966d9231d7 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:46:32 +0100 Subject: [PATCH 27/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 3fec8e1a6..5ed1767ba 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -228,7 +228,7 @@ INTERFACE zif_aff_smbc_v1 "!

Name

"! Name of the Business Configuration "! $required - name TYPE c LENGTH 50, + name TYPE c LENGTH 50, "!

Configuration Group

"! $showAlways configuration_group TYPE c LENGTH 30, From 2d5077276f7b8be022159018d99604b8f29937b6 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:47:05 +0100 Subject: [PATCH 28/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 5ed1767ba..834f53ed3 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -235,7 +235,7 @@ INTERFACE zif_aff_smbc_v1 "!

Skip Root Entity List Report

"! If true, the UI automatically navigates to the Object Page of the root entity "! $showAlways - skip_root_entity TYPE abap_bool, + skip_root_entity TYPE abap_bool, END OF ty_service_configuration. TYPES: From bbdd517f089e3368cb5669823d8e888712739dcb Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:48:37 +0100 Subject: [PATCH 29/32] Update zif_aff_smbc_v1.intf.abap --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 834f53ed3..7c73e1730 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -17,7 +17,7 @@ INTERFACE zif_aff_smbc_v1 END OF co_page_variant_management, "!

Selection Mode

BEGIN OF co_selection_mode, - "!

Automatic

+ "!

Automatic (deprecated)

auto TYPE string VALUE 'Auto', "!

Select Multiple Entries

multi TYPE string VALUE 'Multi', @@ -159,10 +159,9 @@ INTERFACE zif_aff_smbc_v1 "! $default '5' row_count TYPE i, "!

Frozen Column Count

- "! You can freeze the first columns of a table so that they always remain visible when scrolling the table horizontally + "! You can freeze the first columns of a table so that they always remain visible when scrolling horizontally "! $minimum 0 "! $maximum 30 - "! $default '0' frozen_column_count TYPE i, "!

Table Creation Mode

"! $values {@link zif_aff_smbc_v1.data:co_creation_mode_name} From 9eab511289d7047d3ee4e17da9e19790de21c9f3 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:50:49 +0100 Subject: [PATCH 30/32] Update smbc-v1.json --- file-formats/smbc/smbc-v1.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/file-formats/smbc/smbc-v1.json b/file-formats/smbc/smbc-v1.json index 69c3e3d27..de6d0d9d0 100644 --- a/file-formats/smbc/smbc-v1.json +++ b/file-formats/smbc/smbc-v1.json @@ -239,7 +239,7 @@ "none" ], "enumTitles": [ - "Automatic", + "Automatic (deprecated)", "Select Multiple Entries", "Select Single Entry", "None" @@ -279,11 +279,10 @@ }, "frozenColumnCount": { "title": "Frozen Column Count", - "description": "You can freeze the first columns of a table so that they always remain visible when scrolling the table horizontally", + "description": "You can freeze the first columns of a table so that they always remain visible when scrolling horizontally", "type": "integer", "minimum": 0, - "maximum": 30, - "default": 0 + "maximum": 30 }, "creationModeName": { "title": "Table Creation Mode", From 04da818c4e6ab46fb6277b4e1bbdea4ab7aec874 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:47:48 +0100 Subject: [PATCH 31/32] Update file-formats/smbc/type/zif_aff_smbc_v1.intf.abap Co-authored-by: Katharina Wurz --- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap index 7c73e1730..eccc10978 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -182,7 +182,7 @@ INTERFACE zif_aff_smbc_v1 "!

Condensed Table Layout

"! If true, display rows in a condensed way. Only applicaple to Table Type 'GridTable'. condensed_table_layout TYPE abap_bool, - "!

Include column headers in width calculation

+ "!

Include Column Headers in Width Calculation

"! If true, include the column labels while calculating the default column width. "! By default, the column width is calculated based on the type of the content width_including_column_header TYPE abap_bool, From 39f2ab77ee9846feb89681c7f2c667f315a72e85 Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:51:55 +0100 Subject: [PATCH 32/32] Update smbc-v1.json --- file-formats/smbc/smbc-v1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/smbc/smbc-v1.json b/file-formats/smbc/smbc-v1.json index de6d0d9d0..8cfc3d0ae 100644 --- a/file-formats/smbc/smbc-v1.json +++ b/file-formats/smbc/smbc-v1.json @@ -333,7 +333,7 @@ "type": "boolean" }, "widthIncludingColumnHeader": { - "title": "Include column headers in width calculation", + "title": "Include Column Headers in Width Calculation", "description": "If true, include the column labels while calculating the default column width. By default, the column width is calculated based on the type of the content", "type": "boolean" },