Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SMBC] new Table Creation Mode: Empty Rows #553

Merged
merged 6 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading