Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3bc8d34
DTEL scaffolding
larshp Jan 14, 2026
a7c3da6
scaffolding
larshp Jan 14, 2026
6481a2e
scaffolding
larshp Jan 14, 2026
43df30b
Merge branch 'main' into hvam/dtelv1
larshp Feb 13, 2026
392916d
Merge branch 'main' into hvam/dtelv1
schneidermic0 Feb 27, 2026
25af0e9
adjust
larshp Mar 5, 2026
7bc9166
update example
larshp Mar 5, 2026
ee6975f
update schema
larshp Mar 5, 2026
3d5e293
Update file-formats/dtel/type/zif_aff_dtel_v1.intf.json
larshp Mar 5, 2026
ef2be0a
Update file-formats/dtel/README.md
larshp Mar 5, 2026
6b4d1af
Update file-formats/dtel/type/zif_aff_dtel_v1.intf.abap
larshp Mar 5, 2026
8e3a62a
Update file-formats/dtel/dtel-v1.json
larshp Mar 5, 2026
a3380dd
Update file-formats/zif_aff_ddic_types_v1.intf.abap
larshp Mar 5, 2026
9f5f933
update schema
larshp Mar 5, 2026
14fbacf
fix typo in DOMA schema
larshp Mar 5, 2026
b662f7c
Update zif_aff_doma_v1.intf.abap
larshp Mar 5, 2026
7df2510
Remove empty line in zif_aff_doma_v1 interface
larshp Mar 5, 2026
ebb822c
Merge branch 'main' into hvam/dtelv1
larshp Mar 5, 2026
06dcaae
Update the structure for DTEL
schneidermic0 Mar 10, 2026
687aff6
Fixing abaplint
schneidermic0 Mar 10, 2026
3310059
Merge branch 'main' into hvam/dtelv1
schneidermic0 Mar 10, 2026
e3afbb0
Merge branch 'main' into hvam/dtelv1
larshp Mar 29, 2026
e48f3f1
Merge branch 'main' into hvam/dtelv1
larshp Mar 30, 2026
d3b9e7a
Merge branch 'main' into hvam/dtelv1
larshp Apr 8, 2026
68fe03f
Merge branch 'main' into hvam/dtelv1
larshp Apr 9, 2026
8dfb82c
Merge branch 'main' into hvam/dtelv1
larshp Apr 13, 2026
37303b4
Merge branch 'main' into hvam/dtelv1
larshp Apr 17, 2026
061183b
Merge branch 'main' into hvam/dtelv1
larshp Apr 22, 2026
240dd50
Update zif_aff_doma_v1.intf.abap
larshp Apr 22, 2026
1a30133
Refactor types in zif_aff_doma_v1 interface
larshp Apr 22, 2026
b76aa03
Merge branch 'main' into hvam/dtelv1
larshp Apr 24, 2026
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
18 changes: 3 additions & 15 deletions file-formats/doma/type/zif_aff_doma_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,6 @@ INTERFACE zif_aff_doma_v1 PUBLIC.
engineering TYPE ty_output_style VALUE '06',
END OF co_output_style.

"! <p class="shorttext">No Characters</p>
"! Number of characters
"! $minimum 0
"! $maximum 999999
TYPES ty_length TYPE i.

"! <p class="shorttext">Decimals</p>
"! Decimals
"! $minimum 0
"! $maximum 999999
TYPES ty_decimals TYPE i.

"! <p class="shorttext">Output Length</p>
"! Output length
"! $minimum 0
Expand All @@ -212,15 +200,15 @@ INTERFACE zif_aff_doma_v1 PUBLIC.
"! <p class="shorttext">Data Type</p>
"! Data type
"! $required
data_type TYPE ty_data_type,
data_type TYPE zif_aff_ddic_types_v1=>ty_data_type,

"! <p class="shorttext">Length</p>
"! Length
"! $required
length TYPE ty_length,
length TYPE zif_aff_ddic_types_v1=>ty_length,

"! Set if decimal
decimals TYPE ty_decimals,
decimals TYPE zif_aff_ddic_types_v1=>ty_decimals,

END OF ty_format.

Expand Down
13 changes: 13 additions & 0 deletions file-formats/dtel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Dictionary Data Elements File Format

## Object Type Information

Object Type | Description | Group
:--- | :--- | :---
DTEL | Dictionary Data Elements | Dictionary

## File Structure

File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.dtel.json` | 1 | [`zif_aff_dtel_v1.intf.abap`](./type/zif_aff_dtel_v1.intf.abap) | [`dtel-v1.json`](./dtel-v1.json) | [`z_aff_example.dtel.json`](./examples/z_aff_example.dtel.json)
Loading
Loading