APS_IAM_INFO_FSP_APP_TILES
Fiori Space - Application Tiles
APS_IAM_INFO_FSP_APP_TILES is a CDS View in S/4HANA. Fiori Space - Application Tiles. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| APS_IAM_INFO_FSP_APP_BASIC | view_entity | inner | Fiori Space - Application Basic |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| TileType | TileType | 1 |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Fiori Space - Application Tiles'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity APS_IAM_INFO_FSP_APP_TILES
as select from /ui2/pgsecaitic as PageTileAssignmentCust
{
key page_id as PageId,
key id as Id,
tile_catalog_id as TileCatalogId,
tile_catalog_type as TileCatalogType,
tile_id as TileId,
tm_catalog_id as TmCatalogId,
tm_catalog_type as TmCatalogType,
tm_id as TmId,
tile_display_format as TileDisplayFormat,
'C' as TileType,
concat( 'X-SAP-UI2-CATALOGPAGE:', tile_catalog_id ) as CatalogPageId,
concat(concat(concat( 'X-SAP-UI2-PAGE:X-SAP-UI2-CATALOGPAGE:', tile_catalog_id ), ':'), tile_id) as ChipId
}
union
select from /ui2/pgsecaiti as PageTileAssignmentSAP
{
key page_id as PageId,
key id as Id,
tile_catalog_id as TileCatalogId,
tile_catalog_type as TileCatalogType,
tile_id as TileId,
tm_catalog_id as TmCatalogId,
tm_catalog_type as TmCatalogType,
tm_id as TmId,
tile_display_format as TileDisplayFormat,
'S' as TileType,
concat( 'X-SAP-UI2-CATALOGPAGE:', tile_catalog_id ) as CatalogPageId,
concat(concat(concat( 'X-SAP-UI2-PAGE:X-SAP-UI2-CATALOGPAGE:', tile_catalog_id ), ':'), tile_id) as ChipId
}