C_CSPRAssignedStore
Count Products with RFID: Assigned Store
C_CSPRAssignedStore is a Consumption CDS View that provides data about "Count Products with RFID: Assigned Store" in SAP S/4HANA. It reads from 1 data source (I_RetailStoreUserAssignment) and exposes 2 fields with key field Store. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RetailStoreUserAssignment | I_RetailStoreUserAssignment | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | C_CSPRStore | _Store | $projection.Store = _Store.Store |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCSPRASSGDSTORE | view | |
| EndUserText.label | Count Products with RFID: Assigned Store | 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 | ||
| _Store | _Store |
@AbapCatalog.sqlViewName: 'CCSPRASSGDSTORE'
@EndUserText.label: 'Count Products with RFID: Assigned Store'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.privilegedAssociations: ['_Store']
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
representativeKey: 'Store',
usageType.serviceQuality: #C,
usageType.sizeCategory: #S,
usageType.dataClass: #MASTER
}
define view C_CSPRAssignedStore
as select from I_RetailStoreUserAssignment
association [1..1] to C_CSPRStore as _Store on $projection.Store = _Store.Store
{
key Store,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Store
}
where
AssignedUser = $session.user
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