C_AssignedStore_F4674
C_AssignedStore_F4674 is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_RetailStoreUserAssignment, I_Site) and exposes 2 fields with key field Store.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_RetailStoreUserAssignment | I_RetailStoreUserAssignment | from |
| I_Site | I_Site | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSASSGDSTORF4674 | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | Store | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Store | Store | ||
| StoreName |
@AbapCatalog.sqlViewName: 'CSASSGDSTORF4674'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
representativeKey: 'Store',
usageType.serviceQuality: #C,
usageType.sizeCategory: #S,
usageType.dataClass: #MASTER
}
define view C_AssignedStore_F4674
as select from I_RetailStoreUserAssignment
inner join I_Site on I_RetailStoreUserAssignment.Store = I_Site.Site
{
@UI.lineItem: [{ position: 20, importance: #HIGH }]
key Store,
@UI.lineItem: [{ position: 10, importance: #HIGH }]
cast(I_Site.SiteName as storename preserving type) as StoreName
}
where
AssignedUser = $session.user
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RETAILSTOREUSERASSIGNMENT",
"I_SITE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA