From 95f02af336b9a52a28873ed9a8a304da03ec281e Mon Sep 17 00:00:00 2001 From: Patrick Winkler <105780276+sepp4me@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:12:48 +0200 Subject: [PATCH] [SMBC] new Table Creation Mode: Empty Rows (#553) * SAP BTP 2308 updates for SMBC file format * substitute the word 'trigger' with 'perform' * update description * update description --------- Co-authored-by: Michael Schneider --- file-formats/smbc/smbc-v1.json | 11 +++++++---- file-formats/smbc/type/zif_aff_smbc_v1.intf.abap | 7 +++++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/file-formats/smbc/smbc-v1.json b/file-formats/smbc/smbc-v1.json index f6fcbbc4d..41ebbfd8c 100644 --- a/file-formats/smbc/smbc-v1.json +++ b/file-formats/smbc/smbc-v1.json @@ -275,17 +275,20 @@ "enum": [ "newPage", "inline", - "creationRow" + "creationRow", + "inlineCreationRows" ], "enumTitles": [ "New Page", "Inline", - "Creation Row" + "Creation Row", + "Empty Row" ], "enumDescriptions": [ "Item is created in subpage", - "By clicking on 'Create' a new line is created but automatic navigation to subpage is not triggered.", - "By clicking on 'Add row' a new line is created but automatic navigation to subpage is not triggered." + "By clicking on 'Create' a new line is created but automatic navigation to subpage is not performed.", + "By clicking on 'Add row' a new line is created but automatic navigation to subpage is not performed.", + "In create or edit mode, one new empty row is added to the table." ], "default": "newPage" }, 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 8dd613acf..662f70f6a 100644 --- a/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap +++ b/file-formats/smbc/type/zif_aff_smbc_v1.intf.abap @@ -46,11 +46,14 @@ INTERFACE zif_aff_smbc_v1 "! Item is created in subpage new_page TYPE string VALUE 'NewPage', "!

Inline

- "! By clicking on 'Create' a new line is created but automatic navigation to subpage is not triggered. + "! By clicking on 'Create' a new line is created but automatic navigation to subpage is not performed. inline TYPE string VALUE 'Inline', "!

Creation Row

- "! By clicking on 'Add row' a new line is created but automatic navigation to subpage is not triggered. + "! By clicking on 'Add row' a new line is created but automatic navigation to subpage is not performed. creation_row TYPE string VALUE 'CreationRow', + "!

Empty Row

+ "! In create or edit mode, one new empty row is added to the table. + inline_creation_rows TYPE string VALUE 'InlineCreationRows', END OF co_creation_mode_name, "!

Initial Load

BEGIN OF co_initial_load,