C_StoreAssgblToExplctAsstmtMdl
Store Assignable to Assortment Module
C_StoreAssgblToExplctAsstmtMdl is a Consumption CDS View that provides data about "Store Assignable to Assortment Module" in SAP S/4HANA. It reads from 1 data source (I_StoreAssgblToExplctModuleTP) and exposes 12 fields with key field Site. It is exposed through 1 OData service (UI_RFM_USER_ASSIGN_EXPL_ASM).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StoreAssgblToExplctModuleTP | I_StoreAssgblToExplctModuleTP | projection |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Store Assignable to Assortment Module | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.sapObjectNodeType.name | RetailSite | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_RFM_USER_ASSIGN_EXPL_ASM | UI_RFM_USR_ASSIGN_EXPL_ASM | V2 | C1 | NOT_RELEASED |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Site | |||
| StoreName | SiteName | |||
| SiteCustomer | ||||
| StoreIsAssignedToAnyModule | StoreIsAssignedToAnyModule | |||
| SalesOrganization | SalesOrganization | |||
| DistributionChannel | DistributionChannel | |||
| PostalCode | PostalCode | |||
| Country | ||||
| CountryName | CountryName | |||
| _Customer | _Customer | |||
| _SalesOrganization | _SalesOrganization | |||
| _DistributionChannel | _DistributionChannel |
@EndUserText.label: 'Store Assignable to Assortment Module'
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@VDM: {
viewType: #CONSUMPTION,
usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE],
lifecycle: {
contract: {
type: #PUBLIC_LOCAL_API
}
}
}
@ObjectModel: {
usageType: {
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MASTER
},
sapObjectNodeType.name: 'RetailSite'
}
define root view entity C_StoreAssgblToExplctAsstmtMdl
provider contract transactional_query
as projection on I_StoreAssgblToExplctModuleTP
{
@ObjectModel.text.element: ['StoreName']
@Consumption: { semanticObject: 'Site' }
@Consumption.valueHelpDefinition: [ { entity: { name: 'I_StoreValueHelp' , element: 'Site' } } ]
// @EndUserText.quickInfo: 'Store'
key cast ( Site as rfm_asm_store preserving type ) as Site,
@Semantics.text: true
SiteName as StoreName,
@Consumption.filter.hidden: true
cast ( SiteCustomer as rfm_asm_store_customer preserving type ) as SiteCustomer,
StoreIsAssignedToAnyModule,
@Consumption.valueHelpDefinition: [ { entity: { name: 'C_SalesOrganizationValueHelp' , element: 'SalesOrganization' }} ]
SalesOrganization,
@Consumption.valueHelpDefinition: [ { entity: { name: 'C_SalesOrganizationDistrChnlVH' , element: 'DistributionChannel' },
additionalBinding: [{ element: 'SalesOrganization', localElement: 'SalesOrganization' } ] } ]
DistributionChannel,
PostalCode,
@ObjectModel.text.element: ['CountryName']
@Consumption.valueHelpDefinition: [ { entity: { name: 'I_CountryVH' , element: 'Country' } } ]
cast ( Country as rfm_asm_country preserving type ) as Country,
@Semantics.text: true
CountryName,
// Foreign Key Associations
_Customer,
_SalesOrganization,
_DistributionChannel,
_UsrToExplctAsstmtMdlAssgmt : redirected to C_UserToExplicitAsstmtMdl
} where SiteCustomer is not initial
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