Skip to content

Commit

Permalink
[UIAD] Add new object type UIAD (#586)
Browse files Browse the repository at this point in the history
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
7 people authored Jun 11, 2024
1 parent 30c13ef commit 8376f38
Show file tree
Hide file tree
Showing 5 changed files with 1,368 additions and 0 deletions.
5 changes: 5 additions & 0 deletions file-formats/uiad/README.md
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)
71 changes: 71 additions & 0 deletions file-formats/uiad/examples/z_aff_example_uiad.uiad.json
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"
}
]
}
}
]
}
Loading

0 comments on commit 8376f38

Please sign in to comment.