-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# DDLS File Format | ||
|
||
|
||
File | Cardinality | Definition | Schema | Example | ||
:--- | :--- | :--- | :--- | :--- | ||
`<name>.ddls.json` | 1 | [`zif_aff_ddls_v1.intf.abap`](./type/zif_aff_ddls_v1.intf.abap) | [`ddls-v1.json`](./ddls-v1.json) | [`z_aff_example_ddls.ddls.json`](./examples/z_aff_example_ddls.ddls.json) | ||
`<name>.ddls.cds` | 1 | [CDS](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencds.htm) | | [`z_aff_example_ddls.ddls.cds`](./examples/z_aff_example_ddls.ddls.cds) | ||
`<name>.ddls.objectdependencies.json` | 1 | | | [`z_aff_example_ddls.ddls.objectdependencies.json`](./examples/z_aff_example_ddls.ddls.objectdependencies.json) | ||
# DDLS File Format | ||
|
||
|
||
File | Cardinality | Definition | Schema | Example | ||
:--- | :--- | :--- | :--- | :--- | ||
`<name>.ddls.json` | 1 | [`zif_aff_ddls_v1.intf.abap`](./type/zif_aff_ddls_v1.intf.abap) | [`ddls-v1.json`](./ddls-v1.json) | [`z_aff_example_ddls.ddls.json`](./examples/z_aff_example_ddls.ddls.json) | ||
`<name>.ddls.cds` | 1 | [CDS](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencds.htm) | | [`z_aff_example_ddls.ddls.cds`](./examples/z_aff_example_ddls.ddls.cds) | ||
`<name>.ddls.objectdependencies.json` | 1 | | | [`z_aff_example_ddls.ddls.objectdependencies.json`](./examples/z_aff_example_ddls.ddls.objectdependencies.json) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
interface zif_aff_ddlx_v1 | ||
public. | ||
INTERFACE zif_aff_ddlx_v1 | ||
PUBLIC. | ||
|
||
types: | ||
TYPES: | ||
"! <p class="shorttext">Object Type DDLX</p> | ||
"! DDLX object type | ||
begin of ty_main, | ||
BEGIN OF ty_main, | ||
"! $required | ||
format_version type zif_aff_types_v1=>ty_format_version, | ||
format_version TYPE zif_aff_types_v1=>ty_format_version, | ||
"! <p class="shorttext">Header</p> | ||
"! Header | ||
"! $required | ||
header type zif_aff_types_v1=>ty_header_60, | ||
end of ty_main. | ||
header TYPE zif_aff_types_v1=>ty_header_60, | ||
END OF ty_main. | ||
|
||
endinterface. | ||
ENDINTERFACE. |