@sapui5/sap.ushell_abap 1.99.0 → 1.100.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell_abap/.library +1 -1
  3. package/src/main/js/sap/ushell_abap/adapters/abap/AppStateAdapter.js +1 -1
  4. package/src/main/js/sap/ushell_abap/adapters/abap/ClientSideTargetResolutionAdapter.js +1 -1
  5. package/src/main/js/sap/ushell_abap/adapters/abap/ConfigurationDefaultsAdapter.js +1 -1
  6. package/src/main/js/sap/ushell_abap/adapters/abap/ContainerAdapter.js +15 -1
  7. package/src/main/js/sap/ushell_abap/adapters/abap/LaunchPageAdapter.js +1 -1
  8. package/src/main/js/sap/ushell_abap/adapters/abap/MenuAdapter.js +64 -14
  9. package/src/main/js/sap/ushell_abap/adapters/abap/NavTargetResolutionAdapter.js +1 -1
  10. package/src/main/js/sap/ushell_abap/adapters/abap/PageBuildingAdapter.js +1 -1
  11. package/src/main/js/sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js +1543 -22
  12. package/src/main/js/sap/ushell_abap/adapters/abap/PersonalizationAdapter.js +1 -1
  13. package/src/main/js/sap/ushell_abap/adapters/abap/SearchAdapter.js +1 -1
  14. package/src/main/js/sap/ushell_abap/adapters/abap/SupportTicketAdapter.js +1 -1
  15. package/src/main/js/sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js +1 -1
  16. package/src/main/js/sap/ushell_abap/adapters/hana/ContainerAdapter.js +1 -1
  17. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap-def.js +12 -9
  18. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.backend.config.requestor.js +198 -0
  19. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.bootstrap.utils.js +5 -3
  20. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.configure.ushell.js +1 -1
  21. package/src/main/js/sap/ushell_abap/bootstrap/evo/boottask.js +4 -4
  22. package/src/main/js/sap/ushell_abap/library.js +2 -2
  23. package/src/main/js/sap/ushell_abap/pbServices/ui2/Chip.js +50 -7
  24. package/src/main/js/sap/ushell_abap/pbServices/ui2/chipdefinition.xsd +0 -1
  25. package/src/main/js/sap/ushell_abap/pbServices/ui2/contracts/configurationUi.js +47 -5
  26. package/ui5.yaml +5 -4
  27. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.get.server.config.Urls.js +0 -108
  28. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.request.server.config.js +0 -69
  29. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.validate.Url.js +0 -54
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview PagePersistenceAdapter for the ABAP platform.
5
- * @version 1.99.0
5
+ * @version 1.100.0
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/util/ObjectPath",
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  var mParams = {
34
34
  // Metadata string was retrieved by calling /sap/opu/odata/UI2/FDM_PAGE_RUNTIME_SRV/$metadata
35
35
  // eslint-disable-next-line
36
- metadataString: '<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData" Version="1.0"> <edmx:DataServices m:DataServiceVersion="2.0"> <Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" Namespace=".UI2.FDM_PAGE_REPOSITORY_SRV" xml:lang="en" sap:schema-version="1"> <EntityType Name="Page" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Page ID" sap:updatable="false"/> <Property Name="title" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description"/> <Property Name="description" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description"/> <NavigationProperty Name="sections" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section" FromRole="FromRole_Page_Section" ToRole="ToRole_Page_Section"/> <NavigationProperty Name="vizReferences" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences" FromRole="FromRole_Page_VizReferences" ToRole="ToRole_Page_VizReferences"/> <NavigationProperty Name="tileTypes" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes" FromRole="FromRole_Page_TileTypes" ToRole="ToRole_Page_TileTypes"/> </EntityType> <EntityType Name="Section" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Page Section ID" sap:updatable="false"/> <Property Name="title" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description" sap:filterable="false"/> <Property Name="sectionIndex" Type="Edm.Int16" Nullable="false" sap:unicode="false" sap:label="Page Section Index" sap:filterable="false"/> <NavigationProperty Name="viz" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz" FromRole="FromRole_Section_Viz" ToRole="ToRole_Section_Viz"/> </EntityType> <EntityType Name="Viz" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="displayFormatHint" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Display Hint" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Assignment Item ID" sap:updatable="false"/> <Property Name="itemIndex" Type="Edm.Int16" Nullable="false" sap:unicode="false" sap:label="Assignment Index"/> <Property Name="targetMappingId" Type="Edm.String" sap:unicode="false" sap:label="Target Mapping Compound String"/> <Property Name="catalogTileId" Type="Edm.String" sap:unicode="false" sap:label="Catalog Tile Compound String"/> <NavigationProperty Name="vizReference" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference" FromRole="FromRole_Viz_VizReference" ToRole="ToRole_Viz_VizReference"/> </EntityType> <EntityType Name="VizReference" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="catalogDisplayId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Display ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="title" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Title" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="subTitle" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Subtitle" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="iconUrl" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Icon URL" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="targetMappingId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Item ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="semanticObject" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Semantic Object" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="semanticAction" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Action" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="id" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Tile ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="deviceDesktop" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Desktop" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="deviceTablet" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Tablet" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="devicePhone" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Phone" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="tileType" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Type" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="catalogTileId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Tile ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="parameters" Type="Edm.String" sap:label="PARAMETERS"/> <Property Name="configuration" Type="Edm.String" sap:label="CONFIGURATION"/> <NavigationProperty Name="chipBags" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag" FromRole="FromRole_VizReference_ChipBag" ToRole="ToRole_VizReference_ChipBag"/> <NavigationProperty Name="tileTypeRef" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType" FromRole="FromRole_VizReference_TileType" ToRole="ToRole_VizReference_TileType"/> </EntityType> <EntityType Name="TileType" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="url" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <NavigationProperty Name="vizOptions" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption" FromRole="FromRole_TileType_VizOption" ToRole="ToRole_TileType_VizOption"/> </EntityType> <EntityType Name="VizOption" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <NavigationProperty Name="displayFormats" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption" FromRole="FromRole_VizOption_DisplayOption" ToRole="ToRole_VizOption_DisplayOption"/> </EntityType> <EntityType Name="DisplayOption" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="preferred" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <NavigationProperty Name="supported" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat" FromRole="FromRole_DisplayOption_DisplayFormat" ToRole="ToRole_DisplayOption_DisplayFormat"/> </EntityType> <EntityType Name="DisplayFormat" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> </EntityType> <EntityType Name="ChipBag" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <NavigationProperty Name="properties" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties" FromRole="FromRole_ChipBag_ChipBagProperties" ToRole="ToRole_ChipBag_ChipBagProperties"/> </EntityType> <EntityType Name="ChipBagProperty" sap:content-version="1"> <Key> <PropertyRef Name="id"/> </Key> <Property Name="id" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="value" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> <Property Name="translatable" Type="Edm.Boolean" Nullable="false" sap:label="Indicator" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/> </EntityType> <Association Name="VizOption_DisplayOption" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" Multiplicity="1" Role="FromRole_VizOption_DisplayOption"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" Multiplicity="1" Role="ToRole_VizOption_DisplayOption"/> </Association> <Association Name="Viz_VizReference" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" Multiplicity="*" Role="FromRole_Viz_VizReference"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="1" Role="ToRole_Viz_VizReference"/> </Association> <Association Name="ChipBag_ChipBagProperties" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" Multiplicity="1" Role="FromRole_ChipBag_ChipBagProperties"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBagProperty" Multiplicity="*" Role="ToRole_ChipBag_ChipBagProperties"/> </Association> <Association Name="Page_VizReferences" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_VizReferences"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="*" Role="ToRole_Page_VizReferences"/> </Association> <Association Name="Page_TileTypes" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_TileTypes"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="*" Role="ToRole_Page_TileTypes"/> </Association> <Association Name="Page_Section" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_Section"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" Multiplicity="*" Role="ToRole_Page_Section"/> </Association> <Association Name="VizReference_ChipBag" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="1" Role="FromRole_VizReference_ChipBag"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" Multiplicity="*" Role="ToRole_VizReference_ChipBag"/> </Association> <Association Name="VizReference_TileType" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="*" Role="FromRole_VizReference_TileType"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="1" Role="ToRole_VizReference_TileType"/> </Association> <Association Name="Section_Viz" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" Multiplicity="1" Role="FromRole_Section_Viz"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" Multiplicity="*" Role="ToRole_Section_Viz"/> </Association> <Association Name="TileType_VizOption" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="1" Role="FromRole_TileType_VizOption"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" Multiplicity="1" Role="ToRole_TileType_VizOption"/> <ReferentialConstraint> <Principal Role="FromRole_TileType_VizOption"> <PropertyRef Name="id"/> </Principal> <Dependent Role="ToRole_TileType_VizOption"> <PropertyRef Name="id"/> </Dependent> </ReferentialConstraint> </Association> <Association Name="DisplayOption_DisplayFormat" sap:content-version="1"> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" Multiplicity="1" Role="FromRole_DisplayOption_DisplayFormat"/> <End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayFormat" Multiplicity="*" Role="ToRole_DisplayOption_DisplayFormat"/> </Association> <EntityContainer Name="_UI2_FDM_PAGE_REPOSITORY_SRV_Entities" m:IsDefaultEntityContainer="true" sap:supported-formats="atom json xlsx"> <EntitySet Name="chipBagSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/> <EntitySet Name="chipBagPropertySet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBagProperty" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/> <EntitySet Name="pageSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" sap:searchable="true" sap:content-version="1"/> <EntitySet Name="sectionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/> <EntitySet Name="vizSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/> <EntitySet Name="vizReferenceSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/> <EntitySet Name="tileTypeSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/> <EntitySet Name="vizOptionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/> <EntitySet Name="displayOptionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/> <EntitySet Name="displayFormatSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayFormat" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/> <AssociationSet Name="TileType_VizOptionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="tileTypeSet" Role="FromRole_TileType_VizOption"/> <End EntitySet="vizOptionSet" Role="ToRole_TileType_VizOption"/> </AssociationSet> <AssociationSet Name="Page_SectionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="pageSet" Role="FromRole_Page_Section"/> <End EntitySet="sectionSet" Role="ToRole_Page_Section"/> </AssociationSet> <AssociationSet Name="VizReference_TileTypeSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="vizReferenceSet" Role="FromRole_VizReference_TileType"/> <End EntitySet="tileTypeSet" Role="ToRole_VizReference_TileType"/> </AssociationSet> <AssociationSet Name="Page_TileTypesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="pageSet" Role="FromRole_Page_TileTypes"/> <End EntitySet="tileTypeSet" Role="ToRole_Page_TileTypes"/> </AssociationSet> <AssociationSet Name="VizOption_DisplayOptionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="vizOptionSet" Role="FromRole_VizOption_DisplayOption"/> <End EntitySet="displayOptionSet" Role="ToRole_VizOption_DisplayOption"/> </AssociationSet> <AssociationSet Name="Section_VizSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="sectionSet" Role="FromRole_Section_Viz"/> <End EntitySet="vizSet" Role="ToRole_Section_Viz"/> </AssociationSet> <AssociationSet Name="DisplayOption_DisplayFormatSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="displayOptionSet" Role="FromRole_DisplayOption_DisplayFormat"/> <End EntitySet="displayFormatSet" Role="ToRole_DisplayOption_DisplayFormat"/> </AssociationSet> <AssociationSet Name="ChipBag_ChipBagPropertiesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="chipBagSet" Role="FromRole_ChipBag_ChipBagProperties"/> <End EntitySet="chipBagPropertySet" Role="ToRole_ChipBag_ChipBagProperties"/> </AssociationSet> <AssociationSet Name="VizReference_ChipBagSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="vizReferenceSet" Role="FromRole_VizReference_ChipBag"/> <End EntitySet="chipBagSet" Role="ToRole_VizReference_ChipBag"/> </AssociationSet> <AssociationSet Name="Page_VizReferencesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="pageSet" Role="FromRole_Page_VizReferences"/> <End EntitySet="vizReferenceSet" Role="ToRole_Page_VizReferences"/> </AssociationSet> <AssociationSet Name="Viz_VizReferenceSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"> <End EntitySet="vizSet" Role="FromRole_Viz_VizReference"/> <End EntitySet="vizReferenceSet" Role="ToRole_Viz_VizReference"/> </AssociationSet> </EntityContainer> <atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="self" href="/sap/opu/odata/UI2/FDM_PAGE_RUNTIME_SRV/$metadata"/> <atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="latest-version" href="/sap/opu/odata/UI2/FDM_PAGE_RUNTIME_SRV/$metadata"/> </Schema> </edmx:DataServices> </edmx:Edmx>',
36
+ metadataString: '<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData"><edmx:DataServices m:DataServiceVersion="2.0"><Schema Namespace=".UI2.FDM_PAGE_REPOSITORY_SRV" xml:lang="en" sap:schema-version="1" xmlns="http://schemas.microsoft.com/ado/2008/09/edm"><Annotation Term="Core.SchemaVersion" String="1.0.0" xmlns="http://docs.oasis-open.org/odata/ns/edm"/><EntityType Name="Page" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Page ID" sap:updatable="false"/><Property Name="title" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description"/><Property Name="description" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description"/><NavigationProperty Name="sections" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section" FromRole="FromRole_Page_Section" ToRole="ToRole_Page_Section"/><NavigationProperty Name="tileTypes" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes" FromRole="FromRole_Page_TileTypes" ToRole="ToRole_Page_TileTypes"/><NavigationProperty Name="vizReferences" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences" FromRole="FromRole_Page_VizReferences" ToRole="ToRole_Page_VizReferences"/></EntityType><EntityType Name="Section" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Page Section ID" sap:updatable="false"/><Property Name="title" Type="Edm.String" MaxLength="100" sap:unicode="false" sap:label="Page Description" sap:filterable="false"/><Property Name="sectionIndex" Type="Edm.Int16" Nullable="false" sap:unicode="false" sap:label="Page Section Index" sap:filterable="false"/><NavigationProperty Name="viz" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz" FromRole="FromRole_Section_Viz" ToRole="ToRole_Section_Viz"/></EntityType><EntityType Name="Viz" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="catalogTileIdStable" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="STABLE_VIZ_ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="targetMappingIdStable" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="STABLE_TM_ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="displayFormatHint" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Display Hint" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="35" sap:unicode="false" sap:label="Assignment Item ID" sap:updatable="false"/><Property Name="itemIndex" Type="Edm.Int16" Nullable="false" sap:unicode="false" sap:label="Assignment Index"/><Property Name="targetMappingId" Type="Edm.String" sap:unicode="false" sap:label="Target Mapping Compound String"/><Property Name="catalogTileId" Type="Edm.String" sap:unicode="false" sap:label="Catalog Tile Compound String"/><NavigationProperty Name="vizReference" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference" FromRole="FromRole_Viz_VizReference" ToRole="ToRole_Viz_VizReference"/></EntityType><EntityType Name="VizReference" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="catalogDisplayId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Display ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="catalogTileIdStable" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="STABLE_VIZ_ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="title" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Title" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="targetMappingIdStable" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="STABLE_TM_ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="subTitle" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Subtitle" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="iconUrl" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Icon URL" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="targetMappingId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Item ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="semanticObject" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Semantic Object" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="semanticAction" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Action" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="id" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Tile ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="deviceDesktop" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Desktop" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="deviceTablet" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Tablet" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="devicePhone" Type="Edm.Boolean" Nullable="false" sap:unicode="false" sap:label="Device Type Phone" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="tileType" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Tile Type" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="catalogTileId" Type="Edm.String" Nullable="false" sap:unicode="false" sap:label="Catalog Tile ID" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="fromPersonalization" Type="Edm.Boolean" Nullable="false" sap:label="Reference from Personalization" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="parameters" Type="Edm.String" sap:label="PARAMETERS"/><Property Name="configuration" Type="Edm.String" sap:label="CONFIGURATION"/><NavigationProperty Name="chipBags" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag" FromRole="FromRole_VizReference_ChipBag" ToRole="ToRole_VizReference_ChipBag"/></EntityType><EntityType Name="TileType" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="url" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><NavigationProperty Name="vizOptions" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption" FromRole="FromRole_TileType_VizOption" ToRole="ToRole_TileType_VizOption"/></EntityType><EntityType Name="VizOption" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><NavigationProperty Name="displayFormats" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption" FromRole="FromRole_VizOption_DisplayOption" ToRole="ToRole_VizOption_DisplayOption"/></EntityType><EntityType Name="DisplayOption" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="preferred" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="id" Type="Edm.String" Nullable="false" MaxLength="255" sap:unicode="false" sap:label="CHIP Name" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><NavigationProperty Name="supported" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat" FromRole="FromRole_DisplayOption_DisplayFormat" ToRole="ToRole_DisplayOption_DisplayFormat"/></EntityType><EntityType Name="DisplayFormat" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" sap:unicode="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/></EntityType><EntityType Name="ChipBag" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><NavigationProperty Name="properties" Relationship=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties" FromRole="FromRole_ChipBag_ChipBagProperties" ToRole="ToRole_ChipBag_ChipBagProperties"/></EntityType><EntityType Name="ChipBagProperty" sap:content-version="1"><Key><PropertyRef Name="id"/></Key><Property Name="id" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="value" Type="Edm.String" Nullable="false" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/><Property Name="translatable" Type="Edm.Boolean" Nullable="false" sap:label="Indicator" sap:creatable="false" sap:updatable="false" sap:sortable="false" sap:filterable="false"/></EntityType><Association Name="VizOption_DisplayOption" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" Multiplicity="1" Role="FromRole_VizOption_DisplayOption"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" Multiplicity="1" Role="ToRole_VizOption_DisplayOption"/></Association><Association Name="Viz_VizReference" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" Multiplicity="*" Role="FromRole_Viz_VizReference"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="1" Role="ToRole_Viz_VizReference"/></Association><Association Name="ChipBag_ChipBagProperties" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" Multiplicity="1" Role="FromRole_ChipBag_ChipBagProperties"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBagProperty" Multiplicity="*" Role="ToRole_ChipBag_ChipBagProperties"/></Association><Association Name="Page_VizReferences" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_VizReferences"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="*" Role="ToRole_Page_VizReferences"/></Association><Association Name="Page_TileTypes" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_TileTypes"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="*" Role="ToRole_Page_TileTypes"/></Association><Association Name="Page_Section" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" Multiplicity="1" Role="FromRole_Page_Section"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" Multiplicity="*" Role="ToRole_Page_Section"/></Association><Association Name="VizReference_TileType" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="*" Role="FromRole_VizReference_TileType"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="1" Role="ToRole_VizReference_TileType"/></Association><Association Name="VizReference_ChipBag" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" Multiplicity="1" Role="FromRole_VizReference_ChipBag"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" Multiplicity="*" Role="ToRole_VizReference_ChipBag"/></Association><Association Name="Section_Viz" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" Multiplicity="1" Role="FromRole_Section_Viz"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" Multiplicity="*" Role="ToRole_Section_Viz"/></Association><Association Name="TileType_VizOption" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" Multiplicity="1" Role="FromRole_TileType_VizOption"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" Multiplicity="1" Role="ToRole_TileType_VizOption"/><ReferentialConstraint><Principal Role="FromRole_TileType_VizOption"><PropertyRef Name="id"/></Principal><Dependent Role="ToRole_TileType_VizOption"><PropertyRef Name="id"/></Dependent></ReferentialConstraint></Association><Association Name="DisplayOption_DisplayFormat" sap:content-version="1"><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" Multiplicity="1" Role="FromRole_DisplayOption_DisplayFormat"/><End Type=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayFormat" Multiplicity="*" Role="ToRole_DisplayOption_DisplayFormat"/></Association><EntityContainer Name="_UI2_FDM_PAGE_REPOSITORY_SRV_Entities" m:IsDefaultEntityContainer="true" sap:supported-formats="atom json xlsx"><EntitySet Name="chipBagSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/><EntitySet Name="chipBagPropertySet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBagProperty" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/><EntitySet Name="pageSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Page" sap:searchable="true" sap:content-version="1"/><EntitySet Name="sectionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Section" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/><EntitySet Name="vizSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/><EntitySet Name="vizReferenceSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/><EntitySet Name="tileTypeSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:content-version="1"/><EntitySet Name="vizOptionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/><EntitySet Name="displayOptionSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/><EntitySet Name="displayFormatSet" EntityType=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayFormat" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" sap:content-version="1"/><AssociationSet Name="TileType_VizOptionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="tileTypeSet" Role="FromRole_TileType_VizOption"/><End EntitySet="vizOptionSet" Role="ToRole_TileType_VizOption"/></AssociationSet><AssociationSet Name="Page_SectionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="pageSet" Role="FromRole_Page_Section"/><End EntitySet="sectionSet" Role="ToRole_Page_Section"/></AssociationSet><AssociationSet Name="Page_TileTypesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="pageSet" Role="FromRole_Page_TileTypes"/><End EntitySet="tileTypeSet" Role="ToRole_Page_TileTypes"/></AssociationSet><AssociationSet Name="VizOption_DisplayOptionSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="vizOptionSet" Role="FromRole_VizOption_DisplayOption"/><End EntitySet="displayOptionSet" Role="ToRole_VizOption_DisplayOption"/></AssociationSet><AssociationSet Name="Section_VizSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="sectionSet" Role="FromRole_Section_Viz"/><End EntitySet="vizSet" Role="ToRole_Section_Viz"/></AssociationSet><AssociationSet Name="DisplayOption_DisplayFormatSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="displayOptionSet" Role="FromRole_DisplayOption_DisplayFormat"/><End EntitySet="displayFormatSet" Role="ToRole_DisplayOption_DisplayFormat"/></AssociationSet><AssociationSet Name="ChipBag_ChipBagPropertiesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="chipBagSet" Role="FromRole_ChipBag_ChipBagProperties"/><End EntitySet="chipBagPropertySet" Role="ToRole_ChipBag_ChipBagProperties"/></AssociationSet><AssociationSet Name="VizReference_ChipBagSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="vizReferenceSet" Role="FromRole_VizReference_ChipBag"/><End EntitySet="chipBagSet" Role="ToRole_VizReference_ChipBag"/></AssociationSet><AssociationSet Name="VizReference_TileTypeSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="vizReferenceSet" Role="FromRole_VizReference_TileType"/><End EntitySet="tileTypeSet" Role="ToRole_VizReference_TileType"/></AssociationSet><AssociationSet Name="Page_VizReferencesSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="pageSet" Role="FromRole_Page_VizReferences"/><End EntitySet="vizReferenceSet" Role="ToRole_Page_VizReferences"/></AssociationSet><AssociationSet Name="Viz_VizReferenceSet" Association=".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1"><End EntitySet="vizSet" Role="FromRole_Viz_VizReference"/><End EntitySet="vizReferenceSet" Role="ToRole_Viz_VizReference"/></AssociationSet></EntityContainer><atom:link rel="self" xmlns:atom="http://www.w3.org/2005/Atom"/><atom:link rel="latest-version" xmlns:atom="http://www.w3.org/2005/Atom"/></Schema></edmx:DataServices></edmx:Edmx>',
37
37
  lastModified: "Sat, 31 Oct 2020 12:09:53 GMT"
38
38
  };
39
39
  // Metadata json was retrieved by creating the ODataModel manually in the console and calling .getMetaModel().oMetadata.oMetadata
@@ -139,7 +139,29 @@ sap.ui.define([
139
139
  value: "1",
140
140
  namespace: "http://www.sap.com/Protocols/SAPData"
141
141
  }
142
- ]
142
+ ],
143
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
144
+ entityType: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page",
145
+ __navigationPropertiesMap: {
146
+ sections: {
147
+ name: "sections",
148
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section",
149
+ fromRole: "FromRole_Page_Section",
150
+ toRole: "ToRole_Page_Section"
151
+ },
152
+ vizReferences: {
153
+ name: "vizReferences",
154
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences",
155
+ fromRole: "FromRole_Page_VizReferences",
156
+ toRole: "ToRole_Page_VizReferences"
157
+ },
158
+ tileTypes: {
159
+ name: "tileTypes",
160
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes",
161
+ fromRole: "FromRole_Page_TileTypes",
162
+ toRole: "ToRole_Page_TileTypes"
163
+ }
164
+ }
143
165
  },
144
166
  {
145
167
  name: "Section",
@@ -233,7 +255,16 @@ sap.ui.define([
233
255
  value: "1",
234
256
  namespace: "http://www.sap.com/Protocols/SAPData"
235
257
  }
236
- ]
258
+ ],
259
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
260
+ __navigationPropertiesMap: {
261
+ viz: {
262
+ name: "viz",
263
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz",
264
+ fromRole: "FromRole_Section_Viz",
265
+ toRole: "ToRole_Section_Viz"
266
+ }
267
+ }
237
268
  },
238
269
  {
239
270
  name: "Viz",
@@ -369,7 +400,16 @@ sap.ui.define([
369
400
  value: "1",
370
401
  namespace: "http://www.sap.com/Protocols/SAPData"
371
402
  }
372
- ]
403
+ ],
404
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
405
+ __navigationPropertiesMap: {
406
+ vizReference: {
407
+ name: "vizReference",
408
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference",
409
+ fromRole: "FromRole_Viz_VizReference",
410
+ toRole: "ToRole_Viz_VizReference"
411
+ }
412
+ }
373
413
  },
374
414
  {
375
415
  name: "VizReference",
@@ -905,7 +945,22 @@ sap.ui.define([
905
945
  value: "1",
906
946
  namespace: "http://www.sap.com/Protocols/SAPData"
907
947
  }
908
- ]
948
+ ],
949
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
950
+ __navigationPropertiesMap: {
951
+ chipBags: {
952
+ name: "chipBags",
953
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag",
954
+ fromRole: "FromRole_VizReference_ChipBag",
955
+ toRole: "ToRole_VizReference_ChipBag"
956
+ },
957
+ tileTypeRef: {
958
+ name: "tileTypeRef",
959
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType",
960
+ fromRole: "FromRole_VizReference_TileType",
961
+ toRole: "ToRole_VizReference_TileType"
962
+ }
963
+ }
909
964
  },
910
965
  {
911
966
  name: "TileType",
@@ -1002,7 +1057,16 @@ sap.ui.define([
1002
1057
  value: "1",
1003
1058
  namespace: "http://www.sap.com/Protocols/SAPData"
1004
1059
  }
1005
- ]
1060
+ ],
1061
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1062
+ __navigationPropertiesMap: {
1063
+ vizOptions: {
1064
+ name: "vizOptions",
1065
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption",
1066
+ fromRole: "FromRole_TileType_VizOption",
1067
+ toRole: "ToRole_TileType_VizOption"
1068
+ }
1069
+ }
1006
1070
  },
1007
1071
  {
1008
1072
  name: "VizOption",
@@ -1067,7 +1131,16 @@ sap.ui.define([
1067
1131
  value: "1",
1068
1132
  namespace: "http://www.sap.com/Protocols/SAPData"
1069
1133
  }
1070
- ]
1134
+ ],
1135
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1136
+ __navigationPropertiesMap: {
1137
+ displayFormats: {
1138
+ name: "displayFormats",
1139
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption",
1140
+ fromRole: "FromRole_VizOption_DisplayOption",
1141
+ toRole: "ToRole_VizOption_DisplayOption"
1142
+ }
1143
+ }
1071
1144
  },
1072
1145
  {
1073
1146
  name: "DisplayOption",
@@ -1164,7 +1237,16 @@ sap.ui.define([
1164
1237
  value: "1",
1165
1238
  namespace: "http://www.sap.com/Protocols/SAPData"
1166
1239
  }
1167
- ]
1240
+ ],
1241
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1242
+ __navigationPropertiesMap: {
1243
+ supported: {
1244
+ name: "supported",
1245
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat",
1246
+ fromRole: "FromRole_DisplayOption_DisplayFormat",
1247
+ toRole: "ToRole_DisplayOption_DisplayFormat"
1248
+ }
1249
+ }
1168
1250
  },
1169
1251
  {
1170
1252
  name: "DisplayFormat",
@@ -1215,7 +1297,9 @@ sap.ui.define([
1215
1297
  value: "1",
1216
1298
  namespace: "http://www.sap.com/Protocols/SAPData"
1217
1299
  }
1218
- ]
1300
+ ],
1301
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1302
+ __navigationPropertiesMap: {}
1219
1303
  },
1220
1304
  {
1221
1305
  name: "ChipBag",
@@ -1269,7 +1353,16 @@ sap.ui.define([
1269
1353
  value: "1",
1270
1354
  namespace: "http://www.sap.com/Protocols/SAPData"
1271
1355
  }
1272
- ]
1356
+ ],
1357
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1358
+ __navigationPropertiesMap: {
1359
+ properties: {
1360
+ name: "properties",
1361
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties",
1362
+ fromRole: "FromRole_ChipBag_ChipBagProperties",
1363
+ toRole: "ToRole_ChipBag_ChipBagProperties"
1364
+ }
1365
+ }
1273
1366
  },
1274
1367
  {
1275
1368
  name: "ChipBagProperty",
@@ -1374,7 +1467,9 @@ sap.ui.define([
1374
1467
  value: "1",
1375
1468
  namespace: "http://www.sap.com/Protocols/SAPData"
1376
1469
  }
1377
- ]
1470
+ ],
1471
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1472
+ __navigationPropertiesMap: {}
1378
1473
  }
1379
1474
  ],
1380
1475
  association: [
@@ -1678,7 +1773,70 @@ sap.ui.define([
1678
1773
  value: "1",
1679
1774
  namespace: "http://www.sap.com/Protocols/SAPData"
1680
1775
  }
1681
- ]
1776
+ ],
1777
+ __entityType: {
1778
+ name: "ChipBag",
1779
+ key: {
1780
+ propertyRef: [
1781
+ {
1782
+ name: "id"
1783
+ }
1784
+ ]
1785
+ },
1786
+ property: [
1787
+ {
1788
+ name: "id",
1789
+ type: "Edm.String",
1790
+ nullable: "false",
1791
+ extensions: [
1792
+ {
1793
+ name: "creatable",
1794
+ value: "false",
1795
+ namespace: "http://www.sap.com/Protocols/SAPData"
1796
+ },
1797
+ {
1798
+ name: "updatable",
1799
+ value: "false",
1800
+ namespace: "http://www.sap.com/Protocols/SAPData"
1801
+ },
1802
+ {
1803
+ name: "sortable",
1804
+ value: "false",
1805
+ namespace: "http://www.sap.com/Protocols/SAPData"
1806
+ },
1807
+ {
1808
+ name: "filterable",
1809
+ value: "false",
1810
+ namespace: "http://www.sap.com/Protocols/SAPData"
1811
+ }
1812
+ ]
1813
+ }
1814
+ ],
1815
+ navigationProperty: [
1816
+ {
1817
+ name: "properties",
1818
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties",
1819
+ fromRole: "FromRole_ChipBag_ChipBagProperties",
1820
+ toRole: "ToRole_ChipBag_ChipBagProperties"
1821
+ }
1822
+ ],
1823
+ extensions: [
1824
+ {
1825
+ name: "content-version",
1826
+ value: "1",
1827
+ namespace: "http://www.sap.com/Protocols/SAPData"
1828
+ }
1829
+ ],
1830
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1831
+ __navigationPropertiesMap: {
1832
+ properties: {
1833
+ name: "properties",
1834
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.ChipBag_ChipBagProperties",
1835
+ fromRole: "FromRole_ChipBag_ChipBagProperties",
1836
+ toRole: "ToRole_ChipBag_ChipBagProperties"
1837
+ }
1838
+ }
1839
+ }
1682
1840
  },
1683
1841
  {
1684
1842
  name: "chipBagPropertySet",
@@ -1714,7 +1872,114 @@ sap.ui.define([
1714
1872
  value: "1",
1715
1873
  namespace: "http://www.sap.com/Protocols/SAPData"
1716
1874
  }
1717
- ]
1875
+ ],
1876
+ __entityType: {
1877
+ name: "ChipBagProperty",
1878
+ key: {
1879
+ propertyRef: [
1880
+ {
1881
+ name: "id"
1882
+ }
1883
+ ]
1884
+ },
1885
+ property: [
1886
+ {
1887
+ name: "id",
1888
+ type: "Edm.String",
1889
+ nullable: "false",
1890
+ extensions: [
1891
+ {
1892
+ name: "creatable",
1893
+ value: "false",
1894
+ namespace: "http://www.sap.com/Protocols/SAPData"
1895
+ },
1896
+ {
1897
+ name: "updatable",
1898
+ value: "false",
1899
+ namespace: "http://www.sap.com/Protocols/SAPData"
1900
+ },
1901
+ {
1902
+ name: "sortable",
1903
+ value: "false",
1904
+ namespace: "http://www.sap.com/Protocols/SAPData"
1905
+ },
1906
+ {
1907
+ name: "filterable",
1908
+ value: "false",
1909
+ namespace: "http://www.sap.com/Protocols/SAPData"
1910
+ }
1911
+ ]
1912
+ },
1913
+ {
1914
+ name: "value",
1915
+ type: "Edm.String",
1916
+ nullable: "false",
1917
+ extensions: [
1918
+ {
1919
+ name: "creatable",
1920
+ value: "false",
1921
+ namespace: "http://www.sap.com/Protocols/SAPData"
1922
+ },
1923
+ {
1924
+ name: "updatable",
1925
+ value: "false",
1926
+ namespace: "http://www.sap.com/Protocols/SAPData"
1927
+ },
1928
+ {
1929
+ name: "sortable",
1930
+ value: "false",
1931
+ namespace: "http://www.sap.com/Protocols/SAPData"
1932
+ },
1933
+ {
1934
+ name: "filterable",
1935
+ value: "false",
1936
+ namespace: "http://www.sap.com/Protocols/SAPData"
1937
+ }
1938
+ ]
1939
+ },
1940
+ {
1941
+ name: "translatable",
1942
+ type: "Edm.Boolean",
1943
+ nullable: "false",
1944
+ extensions: [
1945
+ {
1946
+ name: "label",
1947
+ value: "Indicator",
1948
+ namespace: "http://www.sap.com/Protocols/SAPData"
1949
+ },
1950
+ {
1951
+ name: "creatable",
1952
+ value: "false",
1953
+ namespace: "http://www.sap.com/Protocols/SAPData"
1954
+ },
1955
+ {
1956
+ name: "updatable",
1957
+ value: "false",
1958
+ namespace: "http://www.sap.com/Protocols/SAPData"
1959
+ },
1960
+ {
1961
+ name: "sortable",
1962
+ value: "false",
1963
+ namespace: "http://www.sap.com/Protocols/SAPData"
1964
+ },
1965
+ {
1966
+ name: "filterable",
1967
+ value: "false",
1968
+ namespace: "http://www.sap.com/Protocols/SAPData"
1969
+ }
1970
+ ]
1971
+ }
1972
+ ],
1973
+ extensions: [
1974
+ {
1975
+ name: "content-version",
1976
+ value: "1",
1977
+ namespace: "http://www.sap.com/Protocols/SAPData"
1978
+ }
1979
+ ],
1980
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
1981
+ __navigationPropertiesMap: {}
1982
+ }
1718
1983
  },
1719
1984
  {
1720
1985
  name: "pageSet",
@@ -1730,7 +1995,125 @@ sap.ui.define([
1730
1995
  value: "1",
1731
1996
  namespace: "http://www.sap.com/Protocols/SAPData"
1732
1997
  }
1733
- ]
1998
+ ],
1999
+ __entityType: {
2000
+ name: "Page",
2001
+ key: {
2002
+ propertyRef: [
2003
+ {
2004
+ name: "id"
2005
+ }
2006
+ ]
2007
+ },
2008
+ property: [
2009
+ {
2010
+ name: "id",
2011
+ type: "Edm.String",
2012
+ nullable: "false",
2013
+ maxLength: "35",
2014
+ extensions: [
2015
+ {
2016
+ name: "unicode",
2017
+ value: "false",
2018
+ namespace: "http://www.sap.com/Protocols/SAPData"
2019
+ },
2020
+ {
2021
+ name: "label",
2022
+ value: "Page ID",
2023
+ namespace: "http://www.sap.com/Protocols/SAPData"
2024
+ },
2025
+ {
2026
+ name: "updatable",
2027
+ value: "false",
2028
+ namespace: "http://www.sap.com/Protocols/SAPData"
2029
+ }
2030
+ ]
2031
+ },
2032
+ {
2033
+ name: "title",
2034
+ type: "Edm.String",
2035
+ maxLength: "100",
2036
+ extensions: [
2037
+ {
2038
+ name: "unicode",
2039
+ value: "false",
2040
+ namespace: "http://www.sap.com/Protocols/SAPData"
2041
+ },
2042
+ {
2043
+ name: "label",
2044
+ value: "Page Description",
2045
+ namespace: "http://www.sap.com/Protocols/SAPData"
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ name: "description",
2051
+ type: "Edm.String",
2052
+ maxLength: "100",
2053
+ extensions: [
2054
+ {
2055
+ name: "unicode",
2056
+ value: "false",
2057
+ namespace: "http://www.sap.com/Protocols/SAPData"
2058
+ },
2059
+ {
2060
+ name: "label",
2061
+ value: "Page Description",
2062
+ namespace: "http://www.sap.com/Protocols/SAPData"
2063
+ }
2064
+ ]
2065
+ }
2066
+ ],
2067
+ navigationProperty: [
2068
+ {
2069
+ name: "sections",
2070
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section",
2071
+ fromRole: "FromRole_Page_Section",
2072
+ toRole: "ToRole_Page_Section"
2073
+ },
2074
+ {
2075
+ name: "vizReferences",
2076
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences",
2077
+ fromRole: "FromRole_Page_VizReferences",
2078
+ toRole: "ToRole_Page_VizReferences"
2079
+ },
2080
+ {
2081
+ name: "tileTypes",
2082
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes",
2083
+ fromRole: "FromRole_Page_TileTypes",
2084
+ toRole: "ToRole_Page_TileTypes"
2085
+ }
2086
+ ],
2087
+ extensions: [
2088
+ {
2089
+ name: "content-version",
2090
+ value: "1",
2091
+ namespace: "http://www.sap.com/Protocols/SAPData"
2092
+ }
2093
+ ],
2094
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
2095
+ entityType: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page",
2096
+ __navigationPropertiesMap: {
2097
+ sections: {
2098
+ name: "sections",
2099
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_Section",
2100
+ fromRole: "FromRole_Page_Section",
2101
+ toRole: "ToRole_Page_Section"
2102
+ },
2103
+ vizReferences: {
2104
+ name: "vizReferences",
2105
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_VizReferences",
2106
+ fromRole: "FromRole_Page_VizReferences",
2107
+ toRole: "ToRole_Page_VizReferences"
2108
+ },
2109
+ tileTypes: {
2110
+ name: "tileTypes",
2111
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Page_TileTypes",
2112
+ fromRole: "FromRole_Page_TileTypes",
2113
+ toRole: "ToRole_Page_TileTypes"
2114
+ }
2115
+ }
2116
+ }
1734
2117
  },
1735
2118
  {
1736
2119
  name: "sectionSet",
@@ -1761,7 +2144,110 @@ sap.ui.define([
1761
2144
  value: "1",
1762
2145
  namespace: "http://www.sap.com/Protocols/SAPData"
1763
2146
  }
1764
- ]
2147
+ ],
2148
+ __entityType: {
2149
+ name: "Section",
2150
+ key: {
2151
+ propertyRef: [
2152
+ {
2153
+ name: "id"
2154
+ }
2155
+ ]
2156
+ },
2157
+ property: [
2158
+ {
2159
+ name: "id",
2160
+ type: "Edm.String",
2161
+ nullable: "false",
2162
+ maxLength: "35",
2163
+ extensions: [
2164
+ {
2165
+ name: "unicode",
2166
+ value: "false",
2167
+ namespace: "http://www.sap.com/Protocols/SAPData"
2168
+ },
2169
+ {
2170
+ name: "label",
2171
+ value: "Page Section ID",
2172
+ namespace: "http://www.sap.com/Protocols/SAPData"
2173
+ },
2174
+ {
2175
+ name: "updatable",
2176
+ value: "false",
2177
+ namespace: "http://www.sap.com/Protocols/SAPData"
2178
+ }
2179
+ ]
2180
+ },
2181
+ {
2182
+ name: "title",
2183
+ type: "Edm.String",
2184
+ maxLength: "100",
2185
+ extensions: [
2186
+ {
2187
+ name: "unicode",
2188
+ value: "false",
2189
+ namespace: "http://www.sap.com/Protocols/SAPData"
2190
+ },
2191
+ {
2192
+ name: "label",
2193
+ value: "Page Description",
2194
+ namespace: "http://www.sap.com/Protocols/SAPData"
2195
+ },
2196
+ {
2197
+ name: "filterable",
2198
+ value: "false",
2199
+ namespace: "http://www.sap.com/Protocols/SAPData"
2200
+ }
2201
+ ]
2202
+ },
2203
+ {
2204
+ name: "sectionIndex",
2205
+ type: "Edm.Int16",
2206
+ nullable: "false",
2207
+ extensions: [
2208
+ {
2209
+ name: "unicode",
2210
+ value: "false",
2211
+ namespace: "http://www.sap.com/Protocols/SAPData"
2212
+ },
2213
+ {
2214
+ name: "label",
2215
+ value: "Page Section Index",
2216
+ namespace: "http://www.sap.com/Protocols/SAPData"
2217
+ },
2218
+ {
2219
+ name: "filterable",
2220
+ value: "false",
2221
+ namespace: "http://www.sap.com/Protocols/SAPData"
2222
+ }
2223
+ ]
2224
+ }
2225
+ ],
2226
+ navigationProperty: [
2227
+ {
2228
+ name: "viz",
2229
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz",
2230
+ fromRole: "FromRole_Section_Viz",
2231
+ toRole: "ToRole_Section_Viz"
2232
+ }
2233
+ ],
2234
+ extensions: [
2235
+ {
2236
+ name: "content-version",
2237
+ value: "1",
2238
+ namespace: "http://www.sap.com/Protocols/SAPData"
2239
+ }
2240
+ ],
2241
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
2242
+ __navigationPropertiesMap: {
2243
+ viz: {
2244
+ name: "viz",
2245
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Section_Viz",
2246
+ fromRole: "FromRole_Section_Viz",
2247
+ toRole: "ToRole_Section_Viz"
2248
+ }
2249
+ }
2250
+ }
1765
2251
  },
1766
2252
  {
1767
2253
  name: "vizSet",
@@ -1792,7 +2278,152 @@ sap.ui.define([
1792
2278
  value: "1",
1793
2279
  namespace: "http://www.sap.com/Protocols/SAPData"
1794
2280
  }
1795
- ]
2281
+ ],
2282
+ __entityType: {
2283
+ name: "Viz",
2284
+ key: {
2285
+ propertyRef: [
2286
+ {
2287
+ name: "id"
2288
+ }
2289
+ ]
2290
+ },
2291
+ property: [
2292
+ {
2293
+ name: "displayFormatHint",
2294
+ type: "Edm.String",
2295
+ nullable: "false",
2296
+ extensions: [
2297
+ {
2298
+ name: "unicode",
2299
+ value: "false",
2300
+ namespace: "http://www.sap.com/Protocols/SAPData"
2301
+ },
2302
+ {
2303
+ name: "label",
2304
+ value: "Display Hint",
2305
+ namespace: "http://www.sap.com/Protocols/SAPData"
2306
+ },
2307
+ {
2308
+ name: "creatable",
2309
+ value: "false",
2310
+ namespace: "http://www.sap.com/Protocols/SAPData"
2311
+ },
2312
+ {
2313
+ name: "updatable",
2314
+ value: "false",
2315
+ namespace: "http://www.sap.com/Protocols/SAPData"
2316
+ },
2317
+ {
2318
+ name: "sortable",
2319
+ value: "false",
2320
+ namespace: "http://www.sap.com/Protocols/SAPData"
2321
+ },
2322
+ {
2323
+ name: "filterable",
2324
+ value: "false",
2325
+ namespace: "http://www.sap.com/Protocols/SAPData"
2326
+ }
2327
+ ]
2328
+ },
2329
+ {
2330
+ name: "id",
2331
+ type: "Edm.String",
2332
+ nullable: "false",
2333
+ maxLength: "35",
2334
+ extensions: [
2335
+ {
2336
+ name: "unicode",
2337
+ value: "false",
2338
+ namespace: "http://www.sap.com/Protocols/SAPData"
2339
+ },
2340
+ {
2341
+ name: "label",
2342
+ value: "Assignment Item ID",
2343
+ namespace: "http://www.sap.com/Protocols/SAPData"
2344
+ },
2345
+ {
2346
+ name: "updatable",
2347
+ value: "false",
2348
+ namespace: "http://www.sap.com/Protocols/SAPData"
2349
+ }
2350
+ ]
2351
+ },
2352
+ {
2353
+ name: "itemIndex",
2354
+ type: "Edm.Int16",
2355
+ nullable: "false",
2356
+ extensions: [
2357
+ {
2358
+ name: "unicode",
2359
+ value: "false",
2360
+ namespace: "http://www.sap.com/Protocols/SAPData"
2361
+ },
2362
+ {
2363
+ name: "label",
2364
+ value: "Assignment Index",
2365
+ namespace: "http://www.sap.com/Protocols/SAPData"
2366
+ }
2367
+ ]
2368
+ },
2369
+ {
2370
+ name: "targetMappingId",
2371
+ type: "Edm.String",
2372
+ extensions: [
2373
+ {
2374
+ name: "unicode",
2375
+ value: "false",
2376
+ namespace: "http://www.sap.com/Protocols/SAPData"
2377
+ },
2378
+ {
2379
+ name: "label",
2380
+ value: "Target Mapping Compound String",
2381
+ namespace: "http://www.sap.com/Protocols/SAPData"
2382
+ }
2383
+ ]
2384
+ },
2385
+ {
2386
+ name: "catalogTileId",
2387
+ type: "Edm.String",
2388
+ extensions: [
2389
+ {
2390
+ name: "unicode",
2391
+ value: "false",
2392
+ namespace: "http://www.sap.com/Protocols/SAPData"
2393
+ },
2394
+ {
2395
+ name: "label",
2396
+ value: "Catalog Tile Compound String",
2397
+ namespace: "http://www.sap.com/Protocols/SAPData"
2398
+ }
2399
+ ]
2400
+ }
2401
+ ],
2402
+ navigationProperty: [
2403
+ {
2404
+ name: "vizReference",
2405
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference",
2406
+ fromRole: "FromRole_Viz_VizReference",
2407
+ toRole: "ToRole_Viz_VizReference"
2408
+ }
2409
+ ],
2410
+ extensions: [
2411
+ {
2412
+ name: "content-version",
2413
+ value: "1",
2414
+ namespace: "http://www.sap.com/Protocols/SAPData"
2415
+ }
2416
+ ],
2417
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
2418
+ __navigationPropertiesMap: {
2419
+ vizReference: {
2420
+ name: "vizReference",
2421
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.Viz_VizReference",
2422
+ fromRole: "FromRole_Viz_VizReference",
2423
+ toRole: "ToRole_Viz_VizReference"
2424
+ }
2425
+ }
2426
+ }
1796
2427
  },
1797
2428
  {
1798
2429
  name: "vizReferenceSet",
@@ -1823,7 +2454,558 @@ sap.ui.define([
1823
2454
  value: "1",
1824
2455
  namespace: "http://www.sap.com/Protocols/SAPData"
1825
2456
  }
1826
- ]
2457
+ ],
2458
+ __entityType: {
2459
+ name: "VizReference",
2460
+ key: {
2461
+ propertyRef: [
2462
+ {
2463
+ name: "id"
2464
+ }
2465
+ ]
2466
+ },
2467
+ property: [
2468
+ {
2469
+ name: "catalogDisplayId",
2470
+ type: "Edm.String",
2471
+ nullable: "false",
2472
+ extensions: [
2473
+ {
2474
+ name: "unicode",
2475
+ value: "false",
2476
+ namespace: "http://www.sap.com/Protocols/SAPData"
2477
+ },
2478
+ {
2479
+ name: "label",
2480
+ value: "Catalog Display ID",
2481
+ namespace: "http://www.sap.com/Protocols/SAPData"
2482
+ },
2483
+ {
2484
+ name: "creatable",
2485
+ value: "false",
2486
+ namespace: "http://www.sap.com/Protocols/SAPData"
2487
+ },
2488
+ {
2489
+ name: "updatable",
2490
+ value: "false",
2491
+ namespace: "http://www.sap.com/Protocols/SAPData"
2492
+ },
2493
+ {
2494
+ name: "sortable",
2495
+ value: "false",
2496
+ namespace: "http://www.sap.com/Protocols/SAPData"
2497
+ },
2498
+ {
2499
+ name: "filterable",
2500
+ value: "false",
2501
+ namespace: "http://www.sap.com/Protocols/SAPData"
2502
+ }
2503
+ ]
2504
+ },
2505
+ {
2506
+ name: "title",
2507
+ type: "Edm.String",
2508
+ nullable: "false",
2509
+ extensions: [
2510
+ {
2511
+ name: "unicode",
2512
+ value: "false",
2513
+ namespace: "http://www.sap.com/Protocols/SAPData"
2514
+ },
2515
+ {
2516
+ name: "label",
2517
+ value: "Tile Title",
2518
+ namespace: "http://www.sap.com/Protocols/SAPData"
2519
+ },
2520
+ {
2521
+ name: "creatable",
2522
+ value: "false",
2523
+ namespace: "http://www.sap.com/Protocols/SAPData"
2524
+ },
2525
+ {
2526
+ name: "updatable",
2527
+ value: "false",
2528
+ namespace: "http://www.sap.com/Protocols/SAPData"
2529
+ },
2530
+ {
2531
+ name: "sortable",
2532
+ value: "false",
2533
+ namespace: "http://www.sap.com/Protocols/SAPData"
2534
+ },
2535
+ {
2536
+ name: "filterable",
2537
+ value: "false",
2538
+ namespace: "http://www.sap.com/Protocols/SAPData"
2539
+ }
2540
+ ]
2541
+ },
2542
+ {
2543
+ name: "subTitle",
2544
+ type: "Edm.String",
2545
+ nullable: "false",
2546
+ extensions: [
2547
+ {
2548
+ name: "unicode",
2549
+ value: "false",
2550
+ namespace: "http://www.sap.com/Protocols/SAPData"
2551
+ },
2552
+ {
2553
+ name: "label",
2554
+ value: "Tile Subtitle",
2555
+ namespace: "http://www.sap.com/Protocols/SAPData"
2556
+ },
2557
+ {
2558
+ name: "creatable",
2559
+ value: "false",
2560
+ namespace: "http://www.sap.com/Protocols/SAPData"
2561
+ },
2562
+ {
2563
+ name: "updatable",
2564
+ value: "false",
2565
+ namespace: "http://www.sap.com/Protocols/SAPData"
2566
+ },
2567
+ {
2568
+ name: "sortable",
2569
+ value: "false",
2570
+ namespace: "http://www.sap.com/Protocols/SAPData"
2571
+ },
2572
+ {
2573
+ name: "filterable",
2574
+ value: "false",
2575
+ namespace: "http://www.sap.com/Protocols/SAPData"
2576
+ }
2577
+ ]
2578
+ },
2579
+ {
2580
+ name: "iconUrl",
2581
+ type: "Edm.String",
2582
+ nullable: "false",
2583
+ extensions: [
2584
+ {
2585
+ name: "unicode",
2586
+ value: "false",
2587
+ namespace: "http://www.sap.com/Protocols/SAPData"
2588
+ },
2589
+ {
2590
+ name: "label",
2591
+ value: "Tile Icon URL",
2592
+ namespace: "http://www.sap.com/Protocols/SAPData"
2593
+ },
2594
+ {
2595
+ name: "creatable",
2596
+ value: "false",
2597
+ namespace: "http://www.sap.com/Protocols/SAPData"
2598
+ },
2599
+ {
2600
+ name: "updatable",
2601
+ value: "false",
2602
+ namespace: "http://www.sap.com/Protocols/SAPData"
2603
+ },
2604
+ {
2605
+ name: "sortable",
2606
+ value: "false",
2607
+ namespace: "http://www.sap.com/Protocols/SAPData"
2608
+ },
2609
+ {
2610
+ name: "filterable",
2611
+ value: "false",
2612
+ namespace: "http://www.sap.com/Protocols/SAPData"
2613
+ }
2614
+ ]
2615
+ },
2616
+ {
2617
+ name: "targetMappingId",
2618
+ type: "Edm.String",
2619
+ nullable: "false",
2620
+ extensions: [
2621
+ {
2622
+ name: "unicode",
2623
+ value: "false",
2624
+ namespace: "http://www.sap.com/Protocols/SAPData"
2625
+ },
2626
+ {
2627
+ name: "label",
2628
+ value: "Item ID",
2629
+ namespace: "http://www.sap.com/Protocols/SAPData"
2630
+ },
2631
+ {
2632
+ name: "creatable",
2633
+ value: "false",
2634
+ namespace: "http://www.sap.com/Protocols/SAPData"
2635
+ },
2636
+ {
2637
+ name: "updatable",
2638
+ value: "false",
2639
+ namespace: "http://www.sap.com/Protocols/SAPData"
2640
+ },
2641
+ {
2642
+ name: "sortable",
2643
+ value: "false",
2644
+ namespace: "http://www.sap.com/Protocols/SAPData"
2645
+ },
2646
+ {
2647
+ name: "filterable",
2648
+ value: "false",
2649
+ namespace: "http://www.sap.com/Protocols/SAPData"
2650
+ }
2651
+ ]
2652
+ },
2653
+ {
2654
+ name: "semanticObject",
2655
+ type: "Edm.String",
2656
+ nullable: "false",
2657
+ extensions: [
2658
+ {
2659
+ name: "unicode",
2660
+ value: "false",
2661
+ namespace: "http://www.sap.com/Protocols/SAPData"
2662
+ },
2663
+ {
2664
+ name: "label",
2665
+ value: "Semantic Object",
2666
+ namespace: "http://www.sap.com/Protocols/SAPData"
2667
+ },
2668
+ {
2669
+ name: "creatable",
2670
+ value: "false",
2671
+ namespace: "http://www.sap.com/Protocols/SAPData"
2672
+ },
2673
+ {
2674
+ name: "updatable",
2675
+ value: "false",
2676
+ namespace: "http://www.sap.com/Protocols/SAPData"
2677
+ },
2678
+ {
2679
+ name: "sortable",
2680
+ value: "false",
2681
+ namespace: "http://www.sap.com/Protocols/SAPData"
2682
+ },
2683
+ {
2684
+ name: "filterable",
2685
+ value: "false",
2686
+ namespace: "http://www.sap.com/Protocols/SAPData"
2687
+ }
2688
+ ]
2689
+ },
2690
+ {
2691
+ name: "semanticAction",
2692
+ type: "Edm.String",
2693
+ nullable: "false",
2694
+ extensions: [
2695
+ {
2696
+ name: "unicode",
2697
+ value: "false",
2698
+ namespace: "http://www.sap.com/Protocols/SAPData"
2699
+ },
2700
+ {
2701
+ name: "label",
2702
+ value: "Action",
2703
+ namespace: "http://www.sap.com/Protocols/SAPData"
2704
+ },
2705
+ {
2706
+ name: "creatable",
2707
+ value: "false",
2708
+ namespace: "http://www.sap.com/Protocols/SAPData"
2709
+ },
2710
+ {
2711
+ name: "updatable",
2712
+ value: "false",
2713
+ namespace: "http://www.sap.com/Protocols/SAPData"
2714
+ },
2715
+ {
2716
+ name: "sortable",
2717
+ value: "false",
2718
+ namespace: "http://www.sap.com/Protocols/SAPData"
2719
+ },
2720
+ {
2721
+ name: "filterable",
2722
+ value: "false",
2723
+ namespace: "http://www.sap.com/Protocols/SAPData"
2724
+ }
2725
+ ]
2726
+ },
2727
+ {
2728
+ name: "id",
2729
+ type: "Edm.String",
2730
+ nullable: "false",
2731
+ extensions: [
2732
+ {
2733
+ name: "unicode",
2734
+ value: "false",
2735
+ namespace: "http://www.sap.com/Protocols/SAPData"
2736
+ },
2737
+ {
2738
+ name: "label",
2739
+ value: "Catalog Tile ID",
2740
+ namespace: "http://www.sap.com/Protocols/SAPData"
2741
+ },
2742
+ {
2743
+ name: "creatable",
2744
+ value: "false",
2745
+ namespace: "http://www.sap.com/Protocols/SAPData"
2746
+ },
2747
+ {
2748
+ name: "updatable",
2749
+ value: "false",
2750
+ namespace: "http://www.sap.com/Protocols/SAPData"
2751
+ },
2752
+ {
2753
+ name: "sortable",
2754
+ value: "false",
2755
+ namespace: "http://www.sap.com/Protocols/SAPData"
2756
+ },
2757
+ {
2758
+ name: "filterable",
2759
+ value: "false",
2760
+ namespace: "http://www.sap.com/Protocols/SAPData"
2761
+ }
2762
+ ]
2763
+ },
2764
+ {
2765
+ name: "deviceDesktop",
2766
+ type: "Edm.Boolean",
2767
+ nullable: "false",
2768
+ extensions: [
2769
+ {
2770
+ name: "unicode",
2771
+ value: "false",
2772
+ namespace: "http://www.sap.com/Protocols/SAPData"
2773
+ },
2774
+ {
2775
+ name: "label",
2776
+ value: "Device Type Desktop",
2777
+ namespace: "http://www.sap.com/Protocols/SAPData"
2778
+ },
2779
+ {
2780
+ name: "creatable",
2781
+ value: "false",
2782
+ namespace: "http://www.sap.com/Protocols/SAPData"
2783
+ },
2784
+ {
2785
+ name: "updatable",
2786
+ value: "false",
2787
+ namespace: "http://www.sap.com/Protocols/SAPData"
2788
+ },
2789
+ {
2790
+ name: "sortable",
2791
+ value: "false",
2792
+ namespace: "http://www.sap.com/Protocols/SAPData"
2793
+ },
2794
+ {
2795
+ name: "filterable",
2796
+ value: "false",
2797
+ namespace: "http://www.sap.com/Protocols/SAPData"
2798
+ }
2799
+ ]
2800
+ },
2801
+ {
2802
+ name: "deviceTablet",
2803
+ type: "Edm.Boolean",
2804
+ nullable: "false",
2805
+ extensions: [
2806
+ {
2807
+ name: "unicode",
2808
+ value: "false",
2809
+ namespace: "http://www.sap.com/Protocols/SAPData"
2810
+ },
2811
+ {
2812
+ name: "label",
2813
+ value: "Device Type Tablet",
2814
+ namespace: "http://www.sap.com/Protocols/SAPData"
2815
+ },
2816
+ {
2817
+ name: "creatable",
2818
+ value: "false",
2819
+ namespace: "http://www.sap.com/Protocols/SAPData"
2820
+ },
2821
+ {
2822
+ name: "updatable",
2823
+ value: "false",
2824
+ namespace: "http://www.sap.com/Protocols/SAPData"
2825
+ },
2826
+ {
2827
+ name: "sortable",
2828
+ value: "false",
2829
+ namespace: "http://www.sap.com/Protocols/SAPData"
2830
+ },
2831
+ {
2832
+ name: "filterable",
2833
+ value: "false",
2834
+ namespace: "http://www.sap.com/Protocols/SAPData"
2835
+ }
2836
+ ]
2837
+ },
2838
+ {
2839
+ name: "devicePhone",
2840
+ type: "Edm.Boolean",
2841
+ nullable: "false",
2842
+ extensions: [
2843
+ {
2844
+ name: "unicode",
2845
+ value: "false",
2846
+ namespace: "http://www.sap.com/Protocols/SAPData"
2847
+ },
2848
+ {
2849
+ name: "label",
2850
+ value: "Device Type Phone",
2851
+ namespace: "http://www.sap.com/Protocols/SAPData"
2852
+ },
2853
+ {
2854
+ name: "creatable",
2855
+ value: "false",
2856
+ namespace: "http://www.sap.com/Protocols/SAPData"
2857
+ },
2858
+ {
2859
+ name: "updatable",
2860
+ value: "false",
2861
+ namespace: "http://www.sap.com/Protocols/SAPData"
2862
+ },
2863
+ {
2864
+ name: "sortable",
2865
+ value: "false",
2866
+ namespace: "http://www.sap.com/Protocols/SAPData"
2867
+ },
2868
+ {
2869
+ name: "filterable",
2870
+ value: "false",
2871
+ namespace: "http://www.sap.com/Protocols/SAPData"
2872
+ }
2873
+ ]
2874
+ },
2875
+ {
2876
+ name: "tileType",
2877
+ type: "Edm.String",
2878
+ nullable: "false",
2879
+ extensions: [
2880
+ {
2881
+ name: "unicode",
2882
+ value: "false",
2883
+ namespace: "http://www.sap.com/Protocols/SAPData"
2884
+ },
2885
+ {
2886
+ name: "label",
2887
+ value: "Tile Type",
2888
+ namespace: "http://www.sap.com/Protocols/SAPData"
2889
+ },
2890
+ {
2891
+ name: "creatable",
2892
+ value: "false",
2893
+ namespace: "http://www.sap.com/Protocols/SAPData"
2894
+ },
2895
+ {
2896
+ name: "updatable",
2897
+ value: "false",
2898
+ namespace: "http://www.sap.com/Protocols/SAPData"
2899
+ },
2900
+ {
2901
+ name: "sortable",
2902
+ value: "false",
2903
+ namespace: "http://www.sap.com/Protocols/SAPData"
2904
+ },
2905
+ {
2906
+ name: "filterable",
2907
+ value: "false",
2908
+ namespace: "http://www.sap.com/Protocols/SAPData"
2909
+ }
2910
+ ]
2911
+ },
2912
+ {
2913
+ name: "catalogTileId",
2914
+ type: "Edm.String",
2915
+ nullable: "false",
2916
+ extensions: [
2917
+ {
2918
+ name: "unicode",
2919
+ value: "false",
2920
+ namespace: "http://www.sap.com/Protocols/SAPData"
2921
+ },
2922
+ {
2923
+ name: "label",
2924
+ value: "Catalog Tile ID",
2925
+ namespace: "http://www.sap.com/Protocols/SAPData"
2926
+ },
2927
+ {
2928
+ name: "creatable",
2929
+ value: "false",
2930
+ namespace: "http://www.sap.com/Protocols/SAPData"
2931
+ },
2932
+ {
2933
+ name: "updatable",
2934
+ value: "false",
2935
+ namespace: "http://www.sap.com/Protocols/SAPData"
2936
+ },
2937
+ {
2938
+ name: "sortable",
2939
+ value: "false",
2940
+ namespace: "http://www.sap.com/Protocols/SAPData"
2941
+ },
2942
+ {
2943
+ name: "filterable",
2944
+ value: "false",
2945
+ namespace: "http://www.sap.com/Protocols/SAPData"
2946
+ }
2947
+ ]
2948
+ },
2949
+ {
2950
+ name: "parameters",
2951
+ type: "Edm.String",
2952
+ extensions: [
2953
+ {
2954
+ name: "label",
2955
+ value: "PARAMETERS",
2956
+ namespace: "http://www.sap.com/Protocols/SAPData"
2957
+ }
2958
+ ]
2959
+ },
2960
+ {
2961
+ name: "configuration",
2962
+ type: "Edm.String",
2963
+ extensions: [
2964
+ {
2965
+ name: "label",
2966
+ value: "CONFIGURATION",
2967
+ namespace: "http://www.sap.com/Protocols/SAPData"
2968
+ }
2969
+ ]
2970
+ }
2971
+ ],
2972
+ navigationProperty: [
2973
+ {
2974
+ name: "chipBags",
2975
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag",
2976
+ fromRole: "FromRole_VizReference_ChipBag",
2977
+ toRole: "ToRole_VizReference_ChipBag"
2978
+ },
2979
+ {
2980
+ name: "tileTypeRef",
2981
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType",
2982
+ fromRole: "FromRole_VizReference_TileType",
2983
+ toRole: "ToRole_VizReference_TileType"
2984
+ }
2985
+ ],
2986
+ extensions: [
2987
+ {
2988
+ name: "content-version",
2989
+ value: "1",
2990
+ namespace: "http://www.sap.com/Protocols/SAPData"
2991
+ }
2992
+ ],
2993
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
2994
+ __navigationPropertiesMap: {
2995
+ chipBags: {
2996
+ name: "chipBags",
2997
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_ChipBag",
2998
+ fromRole: "FromRole_VizReference_ChipBag",
2999
+ toRole: "ToRole_VizReference_ChipBag"
3000
+ },
3001
+ tileTypeRef: {
3002
+ name: "tileTypeRef",
3003
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizReference_TileType",
3004
+ fromRole: "FromRole_VizReference_TileType",
3005
+ toRole: "ToRole_VizReference_TileType"
3006
+ }
3007
+ }
3008
+ }
1827
3009
  },
1828
3010
  {
1829
3011
  name: "tileTypeSet",
@@ -1854,7 +3036,113 @@ sap.ui.define([
1854
3036
  value: "1",
1855
3037
  namespace: "http://www.sap.com/Protocols/SAPData"
1856
3038
  }
1857
- ]
3039
+ ],
3040
+ __entityType: {
3041
+ name: "TileType",
3042
+ key: {
3043
+ propertyRef: [
3044
+ {
3045
+ name: "id"
3046
+ }
3047
+ ]
3048
+ },
3049
+ property: [
3050
+ {
3051
+ name: "id",
3052
+ type: "Edm.String",
3053
+ nullable: "false",
3054
+ maxLength: "255",
3055
+ extensions: [
3056
+ {
3057
+ name: "unicode",
3058
+ value: "false",
3059
+ namespace: "http://www.sap.com/Protocols/SAPData"
3060
+ },
3061
+ {
3062
+ name: "label",
3063
+ value: "CHIP Name",
3064
+ namespace: "http://www.sap.com/Protocols/SAPData"
3065
+ },
3066
+ {
3067
+ name: "creatable",
3068
+ value: "false",
3069
+ namespace: "http://www.sap.com/Protocols/SAPData"
3070
+ },
3071
+ {
3072
+ name: "updatable",
3073
+ value: "false",
3074
+ namespace: "http://www.sap.com/Protocols/SAPData"
3075
+ },
3076
+ {
3077
+ name: "sortable",
3078
+ value: "false",
3079
+ namespace: "http://www.sap.com/Protocols/SAPData"
3080
+ },
3081
+ {
3082
+ name: "filterable",
3083
+ value: "false",
3084
+ namespace: "http://www.sap.com/Protocols/SAPData"
3085
+ }
3086
+ ]
3087
+ },
3088
+ {
3089
+ name: "url",
3090
+ type: "Edm.String",
3091
+ nullable: "false",
3092
+ extensions: [
3093
+ {
3094
+ name: "unicode",
3095
+ value: "false",
3096
+ namespace: "http://www.sap.com/Protocols/SAPData"
3097
+ },
3098
+ {
3099
+ name: "creatable",
3100
+ value: "false",
3101
+ namespace: "http://www.sap.com/Protocols/SAPData"
3102
+ },
3103
+ {
3104
+ name: "updatable",
3105
+ value: "false",
3106
+ namespace: "http://www.sap.com/Protocols/SAPData"
3107
+ },
3108
+ {
3109
+ name: "sortable",
3110
+ value: "false",
3111
+ namespace: "http://www.sap.com/Protocols/SAPData"
3112
+ },
3113
+ {
3114
+ name: "filterable",
3115
+ value: "false",
3116
+ namespace: "http://www.sap.com/Protocols/SAPData"
3117
+ }
3118
+ ]
3119
+ }
3120
+ ],
3121
+ navigationProperty: [
3122
+ {
3123
+ name: "vizOptions",
3124
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption",
3125
+ fromRole: "FromRole_TileType_VizOption",
3126
+ toRole: "ToRole_TileType_VizOption"
3127
+ }
3128
+ ],
3129
+ extensions: [
3130
+ {
3131
+ name: "content-version",
3132
+ value: "1",
3133
+ namespace: "http://www.sap.com/Protocols/SAPData"
3134
+ }
3135
+ ],
3136
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
3137
+ __navigationPropertiesMap: {
3138
+ vizOptions: {
3139
+ name: "vizOptions",
3140
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.TileType_VizOption",
3141
+ fromRole: "FromRole_TileType_VizOption",
3142
+ toRole: "ToRole_TileType_VizOption"
3143
+ }
3144
+ }
3145
+ }
1858
3146
  },
1859
3147
  {
1860
3148
  name: "vizOptionSet",
@@ -1890,7 +3178,81 @@ sap.ui.define([
1890
3178
  value: "1",
1891
3179
  namespace: "http://www.sap.com/Protocols/SAPData"
1892
3180
  }
1893
- ]
3181
+ ],
3182
+ __entityType: {
3183
+ name: "VizOption",
3184
+ key: {
3185
+ propertyRef: [
3186
+ {
3187
+ name: "id"
3188
+ }
3189
+ ]
3190
+ },
3191
+ property: [
3192
+ {
3193
+ name: "id",
3194
+ type: "Edm.String",
3195
+ nullable: "false",
3196
+ maxLength: "255",
3197
+ extensions: [
3198
+ {
3199
+ name: "unicode",
3200
+ value: "false",
3201
+ namespace: "http://www.sap.com/Protocols/SAPData"
3202
+ },
3203
+ {
3204
+ name: "label",
3205
+ value: "CHIP Name",
3206
+ namespace: "http://www.sap.com/Protocols/SAPData"
3207
+ },
3208
+ {
3209
+ name: "creatable",
3210
+ value: "false",
3211
+ namespace: "http://www.sap.com/Protocols/SAPData"
3212
+ },
3213
+ {
3214
+ name: "updatable",
3215
+ value: "false",
3216
+ namespace: "http://www.sap.com/Protocols/SAPData"
3217
+ },
3218
+ {
3219
+ name: "sortable",
3220
+ value: "false",
3221
+ namespace: "http://www.sap.com/Protocols/SAPData"
3222
+ },
3223
+ {
3224
+ name: "filterable",
3225
+ value: "false",
3226
+ namespace: "http://www.sap.com/Protocols/SAPData"
3227
+ }
3228
+ ]
3229
+ }
3230
+ ],
3231
+ navigationProperty: [
3232
+ {
3233
+ name: "displayFormats",
3234
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption",
3235
+ fromRole: "FromRole_VizOption_DisplayOption",
3236
+ toRole: "ToRole_VizOption_DisplayOption"
3237
+ }
3238
+ ],
3239
+ extensions: [
3240
+ {
3241
+ name: "content-version",
3242
+ value: "1",
3243
+ namespace: "http://www.sap.com/Protocols/SAPData"
3244
+ }
3245
+ ],
3246
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
3247
+ __navigationPropertiesMap: {
3248
+ displayFormats: {
3249
+ name: "displayFormats",
3250
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.VizOption_DisplayOption",
3251
+ fromRole: "FromRole_VizOption_DisplayOption",
3252
+ toRole: "ToRole_VizOption_DisplayOption"
3253
+ }
3254
+ }
3255
+ }
1894
3256
  },
1895
3257
  {
1896
3258
  name: "displayOptionSet",
@@ -1926,7 +3288,113 @@ sap.ui.define([
1926
3288
  value: "1",
1927
3289
  namespace: "http://www.sap.com/Protocols/SAPData"
1928
3290
  }
1929
- ]
3291
+ ],
3292
+ __entityType: {
3293
+ name: "DisplayOption",
3294
+ key: {
3295
+ propertyRef: [
3296
+ {
3297
+ name: "id"
3298
+ }
3299
+ ]
3300
+ },
3301
+ property: [
3302
+ {
3303
+ name: "preferred",
3304
+ type: "Edm.String",
3305
+ nullable: "false",
3306
+ extensions: [
3307
+ {
3308
+ name: "unicode",
3309
+ value: "false",
3310
+ namespace: "http://www.sap.com/Protocols/SAPData"
3311
+ },
3312
+ {
3313
+ name: "creatable",
3314
+ value: "false",
3315
+ namespace: "http://www.sap.com/Protocols/SAPData"
3316
+ },
3317
+ {
3318
+ name: "updatable",
3319
+ value: "false",
3320
+ namespace: "http://www.sap.com/Protocols/SAPData"
3321
+ },
3322
+ {
3323
+ name: "sortable",
3324
+ value: "false",
3325
+ namespace: "http://www.sap.com/Protocols/SAPData"
3326
+ },
3327
+ {
3328
+ name: "filterable",
3329
+ value: "false",
3330
+ namespace: "http://www.sap.com/Protocols/SAPData"
3331
+ }
3332
+ ]
3333
+ },
3334
+ {
3335
+ name: "id",
3336
+ type: "Edm.String",
3337
+ nullable: "false",
3338
+ maxLength: "255",
3339
+ extensions: [
3340
+ {
3341
+ name: "unicode",
3342
+ value: "false",
3343
+ namespace: "http://www.sap.com/Protocols/SAPData"
3344
+ },
3345
+ {
3346
+ name: "label",
3347
+ value: "CHIP Name",
3348
+ namespace: "http://www.sap.com/Protocols/SAPData"
3349
+ },
3350
+ {
3351
+ name: "creatable",
3352
+ value: "false",
3353
+ namespace: "http://www.sap.com/Protocols/SAPData"
3354
+ },
3355
+ {
3356
+ name: "updatable",
3357
+ value: "false",
3358
+ namespace: "http://www.sap.com/Protocols/SAPData"
3359
+ },
3360
+ {
3361
+ name: "sortable",
3362
+ value: "false",
3363
+ namespace: "http://www.sap.com/Protocols/SAPData"
3364
+ },
3365
+ {
3366
+ name: "filterable",
3367
+ value: "false",
3368
+ namespace: "http://www.sap.com/Protocols/SAPData"
3369
+ }
3370
+ ]
3371
+ }
3372
+ ],
3373
+ navigationProperty: [
3374
+ {
3375
+ name: "supported",
3376
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat",
3377
+ fromRole: "FromRole_DisplayOption_DisplayFormat",
3378
+ toRole: "ToRole_DisplayOption_DisplayFormat"
3379
+ }
3380
+ ],
3381
+ extensions: [
3382
+ {
3383
+ name: "content-version",
3384
+ value: "1",
3385
+ namespace: "http://www.sap.com/Protocols/SAPData"
3386
+ }
3387
+ ],
3388
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
3389
+ __navigationPropertiesMap: {
3390
+ supported: {
3391
+ name: "supported",
3392
+ relationship: ".UI2.FDM_PAGE_REPOSITORY_SRV.DisplayOption_DisplayFormat",
3393
+ fromRole: "FromRole_DisplayOption_DisplayFormat",
3394
+ toRole: "ToRole_DisplayOption_DisplayFormat"
3395
+ }
3396
+ }
3397
+ }
1930
3398
  },
1931
3399
  {
1932
3400
  name: "displayFormatSet",
@@ -1962,7 +3430,60 @@ sap.ui.define([
1962
3430
  value: "1",
1963
3431
  namespace: "http://www.sap.com/Protocols/SAPData"
1964
3432
  }
1965
- ]
3433
+ ],
3434
+ __entityType: {
3435
+ name: "DisplayFormat",
3436
+ key: {
3437
+ propertyRef: [
3438
+ {
3439
+ name: "id"
3440
+ }
3441
+ ]
3442
+ },
3443
+ property: [
3444
+ {
3445
+ name: "id",
3446
+ type: "Edm.String",
3447
+ nullable: "false",
3448
+ extensions: [
3449
+ {
3450
+ name: "unicode",
3451
+ value: "false",
3452
+ namespace: "http://www.sap.com/Protocols/SAPData"
3453
+ },
3454
+ {
3455
+ name: "creatable",
3456
+ value: "false",
3457
+ namespace: "http://www.sap.com/Protocols/SAPData"
3458
+ },
3459
+ {
3460
+ name: "updatable",
3461
+ value: "false",
3462
+ namespace: "http://www.sap.com/Protocols/SAPData"
3463
+ },
3464
+ {
3465
+ name: "sortable",
3466
+ value: "false",
3467
+ namespace: "http://www.sap.com/Protocols/SAPData"
3468
+ },
3469
+ {
3470
+ name: "filterable",
3471
+ value: "false",
3472
+ namespace: "http://www.sap.com/Protocols/SAPData"
3473
+ }
3474
+ ]
3475
+ }
3476
+ ],
3477
+ extensions: [
3478
+ {
3479
+ name: "content-version",
3480
+ value: "1",
3481
+ namespace: "http://www.sap.com/Protocols/SAPData"
3482
+ }
3483
+ ],
3484
+ namespace: ".UI2.FDM_PAGE_REPOSITORY_SRV",
3485
+ __navigationPropertiesMap: {}
3486
+ }
1966
3487
  }
1967
3488
  ],
1968
3489
  associationSet: [