Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BeckerWdf committed Jan 24, 2022
1 parent ac69408 commit 01bb6fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions file-formats/ddls/README.md
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)
16 changes: 8 additions & 8 deletions file-formats/ddlx/type/zif_aff_ddlx_v1.intf.abap
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.

0 comments on commit 01bb6fd

Please sign in to comment.