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,