Skip to content
Open
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
13 changes: 13 additions & 0 deletions file-formats/ttyp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Table Type File Format

## Object Type Information

Object Type | Description | Group
:--- | :--- | :---
TTYP | Table Type | Dictionary

## File Structure

File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.ttyp.json` | 1 | [`zif_aff_ttyp_v1.intf.abap`](./type/zif_aff_ttyp_v1.intf.abap) | [`ttyp-v1.json`](./ttyp-v1.json) | [`z_aff_example_ttyp.ttyp.json`](./examples/z_aff_example_ttyp.ttyp.json)
31 changes: 31 additions & 0 deletions file-formats/ttyp/examples/z_aff_example_ttyp.ttyp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"formatVersion": "1",
"header": {
"description": "Example table type for ABAP file formats",
"originalLanguage": "en"
},
"rowType": {
"typeKind": "dictionaryType",
"typeName": "Z_AFF_EXAMPLE_STRUC"
},
"initAndAccess": {
"accessType": "sorted",
"initialRowCount": 10
},
"keySettings": {
"primaryKey": {
"definition": "keyComponents",
"kind": "unique",
"components": [
{
"name": "FIELD1"
},
{
"name": "FIELD2"
}
]
},
"secKeysAllowed": "notAllowed",
"secondaryKeys": []
}
}
Loading
Loading