Skip to content

Commit

Permalink
[SMBC] new Table Creation Mode: Empty Rows (#553)
Browse files Browse the repository at this point in the history
* SAP BTP 2308 updates for SMBC file format

* substitute the word 'trigger' with 'perform'

* update description

* update description

---------

Co-authored-by: Michael Schneider <[email protected]>
  • Loading branch information
sepp4me and schneidermic0 authored Sep 21, 2023
1 parent 1d4e1f2 commit 95f02af
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
11 changes: 7 additions & 4 deletions file-formats/smbc/smbc-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
7 changes: 5 additions & 2 deletions file-formats/smbc/type/zif_aff_smbc_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ INTERFACE zif_aff_smbc_v1
"! Item is created in subpage
new_page TYPE string VALUE 'NewPage',
"! <p class="shorttext synchronized">Inline</p>
"! 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',
"! <p class="shorttext synchronized">Creation Row</p>
"! 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',
"! <p class="shorttext synchronized">Empty Row</p>
"! 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,
"! <p class="shorttext synchronized" >Initial Load</p>
BEGIN OF co_initial_load,
Expand Down

0 comments on commit 95f02af

Please sign in to comment.