I_StoreValueHelp
Store
I_StoreValueHelp is a Composite CDS View that provides data about "Store" in SAP S/4HANA. It reads from 1 data source (I_Site) and exposes 10 fields with key field Site.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Site | I_Site | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Store | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Consumption.ranked | true | view | |
| Search.searchable | true | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Site | Store ID | ||
| SiteName | SiteName | Store Name | ||
| SiteCustomer | ||||
| SalesOrganization | SalesOrganization | |||
| SalesOrganizationName | ||||
| DistributionChannel | DistributionChannel | |||
| DistributionChannelName | ||||
| _Customer | _Customer | |||
| _SalesOrganization | _SalesOrganization | |||
| _DistributionChannel | _DistributionChannel |
@EndUserText.label: 'Store'
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #NOT_REQUIRED
}
@VDM.viewType: #COMPOSITE
@ObjectModel: {
usageType.serviceQuality: #C,
usageType.sizeCategory: #S,
usageType.dataClass: #MASTER,
dataCategory: #VALUE_HELP
}
@Consumption.ranked: true
@Search.searchable: true
define view entity I_StoreValueHelp
as select from I_Site
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@EndUserText.label: 'Store ID'
key cast ( Site as rfm_asm_store preserving type ) as Site,
@Search.ranking: #LOW
@Semantics.text:true
@EndUserText.label: 'Store Name'
SiteName,
@Search.ranking: #LOW
cast ( SiteCustomer as rfm_asm_store_customer preserving type ) as SiteCustomer,
@Search.ranking: #LOW
@ObjectModel.text.element: ['SalesOrganizationName']
SalesOrganization,
@Semantics.text:true
@Search.ranking: #LOW
_SalesOrganization._Text[1:Language = $session.system_language].SalesOrganizationName,
@Search.ranking: #LOW
@ObjectModel.text.element: ['DistributionChannelName']
DistributionChannel,
@Semantics.text:true
@Search.ranking: #LOW
_DistributionChannel._Text[1:Language = $session.system_language].DistributionChannelName,
_Customer,
_SalesOrganization,
_DistributionChannel
}
where
SiteCategory = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DISTRIBUTIONCHANNEL",
"I_DISTRIBUTIONCHANNELTEXT",
"I_SALESORGANIZATION",
"I_SALESORGANIZATIONTEXT",
"I_SITE"
],
"ASSOCIATED":
[
"I_CUSTOMER",
"I_DISTRIBUTIONCHANNEL",
"I_SALESORGANIZATION"
],
"BASE":
[
"I_SITE"
],
"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