-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UIAD] Add new object type UIAD (#586)
Co-authored-by: Katharina Wurz <[email protected]> Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> Co-authored-by: Michael Schneider <[email protected]> Co-authored-by: Albert Mink <[email protected]> Co-authored-by: Viktoria Freidel <[email protected]> Co-authored-by: ViktoriaFreidel <[email protected]>
- Loading branch information
1 parent
30c13ef
commit 8376f38
Showing
5 changed files
with
1,368 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# UIAD File Format | ||
|
||
File | Cardinality | Definition | Schema | Example | ||
:--- | :--- | :--- | :--- | :--- | ||
`<name>.uiad.json` | 1 | [`zif_aff_uiad_v1.intf.abap`](./type/zif_aff_uiad_v1.intf.abap) | [`uiad-v1.json`](./uiad-v1.json) | [`z_aff_example_uiad.uiad.json`](./examples/z_aff_example_uiad.uiad.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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"formatVersion": "1", | ||
"header": { | ||
"description": "Example of UIAD AFF Format", | ||
"originalLanguage": "en" | ||
}, | ||
"generalInformation": { | ||
"appType": "ui5", | ||
"catalogId": "ZLOCAL_TEST", | ||
"information": "Not translated info text", | ||
"supportComponent": "CA-FLP-ABA" | ||
}, | ||
"ui5AppDetails": { | ||
"appId": "sap.ushell.demo.AppNavSample", | ||
"icfPath": "/sap/bc/ui5_ui5/ui2/appnavsample" | ||
}, | ||
"navigation": { | ||
"targetMappingId": "Z_AFF_EXAMPLE_TM", | ||
"semanticObject": "NavSample", | ||
"action": "display", | ||
"desktop": true, | ||
"tablet": true, | ||
"phone": true, | ||
"parameters": [ | ||
{ | ||
"name": "tmParamName", | ||
"defaultValue": "Hello World!" | ||
} | ||
] | ||
}, | ||
"tiles": [ | ||
{ | ||
"id": "Z_AFF_EXAMPLE_TILE_STATIC", | ||
"tileType": "static", | ||
"isDefault": true, | ||
"standard": { | ||
"title": "Tile Title", | ||
"subtitle": "Tile Subtitle", | ||
"information": "Tile Information Text", | ||
"keywords": "Test Example AFF", | ||
"icon": "sap-icon://action-settings", | ||
"tileNavigationParameters": [ | ||
{ | ||
"name": "ParamName", | ||
"value": "ParamValue" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "Z_AFF_EXAMPLE_TILE_DYNAMIC", | ||
"tileType": "dynamic", | ||
"standard": { | ||
"title": "Dynamic Tile Title", | ||
"subtitle": "Demo Subtitle", | ||
"icon": "sap-icon://action-settings", | ||
"dynamic": { | ||
"serviceBaseUrl": "/sap/opu/odata/UI2/PAGE_BUILDER_PERS/Catalogs/$count", | ||
"refreshInterval": 10, | ||
"numberUnit": "Ctas" | ||
}, | ||
"tileNavigationParameters": [ | ||
{ | ||
"name": "paramName", | ||
"value": "paramValue" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.