Skip to content

Commit

Permalink
Add new type category "Hierarchy Object" for RONT (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehret-Thomas authored Oct 20, 2023
1 parent b184301 commit 62d7375
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions file-formats/ront/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# RONT File Format

File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.ront.json` | 1 | [`zif_aff_ront_v1.intf.abap`](./type/zif_aff_ront_v1.intf.abap) | [`ront-v1.json`](./ront-v1.json) | [`z_aff_example_ront.ront.json`](./examples/z_aff_example_ront.ront.json)
:--- | :--- | :--- | :--- | :---
`<name>.ront.json` | 1 | [`zif_aff_ront_v1.intf.abap`](./type/zif_aff_ront_v1.intf.abap) | [`ront-v1.json`](./ront-v1.json) | [z_aff_example_ront.ront.json](./examples/z_aff_example_ront.ront.json)
9 changes: 6 additions & 3 deletions file-formats/ront/ront-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,24 @@
"technicalObject",
"analyticalObject",
"configurationObject",
"dependentObject"
"dependentObject",
"hierarchyObject"
],
"enumTitles": [
"Business Object",
"Technical Object",
"Analytical Object",
"Configuration Object",
"Dependent Object"
"Dependent Object",
"Hierarchy Object"
],
"enumDescriptions": [
"Business object",
"Technical object",
"Analytical object",
"Configuration object",
"Dependent object"
"Dependent object",
"Hierarchy object"
],
"default": "businessObject"
},
Expand Down
3 changes: 3 additions & 0 deletions file-formats/ront/type/zif_aff_ront_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ INTERFACE zif_aff_ront_v1
"! <p class="shorttext">Dependent Object</p>
"! Dependent object
dependent_object TYPE c LENGTH 2 VALUE `DO`,
"! <p class="shorttext">Hierarchy Object</p>
"! Hierarchy object
hierarchy_object TYPE c LENGTH 2 VALUE `HO`,
END OF co_category.

TYPES:
Expand Down

0 comments on commit 62d7375

Please sign in to comment.