Skip to content
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
15 changes: 11 additions & 4 deletions file-formats/ddls/ddls-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@
"abstractEntity",
"customEntity",
"hierarchy",
"projectionView"
"projectionView",
"externalEntity",
"unknown"
],
"enumTitles": [
"DDIC-Based View",
Expand All @@ -124,7 +126,9 @@
"Abstract Entity",
"Custom Entity",
"Hierarchy",
"Projection View"
"Projection View",
"External Entity",
"Unknown"
],
"enumDescriptions": [
"DDIC-based view",
Expand All @@ -136,8 +140,11 @@
"Abstract entity",
"Custom entity",
"Hierarchy",
"Projection view"
]
"Projection view",
"External entity",
"Unknown"
],
"default": "unknown"
},
"parentName": {
"title": "Parent Name",
Expand Down
7 changes: 7 additions & 0 deletions file-formats/ddls/type/zif_aff_ddls_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ INTERFACE zif_aff_ddls_v1
"! <p class="shorttext">Source Type</p>
"! Source type
"! $values {@link zif_aff_ddls_v1.data:co_source_type}
"! $default {@link zif_aff_ddls_v1.data:co_source_type.unknown}
TYPES ty_source_type TYPE c LENGTH 1.

"! <p class="shorttext">Source Origin</p>
Expand Down Expand Up @@ -45,6 +46,12 @@ INTERFACE zif_aff_ddls_v1
"! <p class="shorttext">Projection View</p>
"! Projection view
projection_view TYPE ty_source_type VALUE 'P',
"! <p class="shorttext">External Entity</p>
"! External entity
external_entity TYPE ty_source_type VALUE 'O',
"! <p class="shorttext">Unknown</p>
"! Unknown
unknown TYPE ty_source_type VALUE ' ',
END OF co_source_type,

"! <p class="shorttext">Source Origin</p>
Expand Down
Loading