I_SiteValnAndInvtryManagement
Site Valuation and inventory mgmt
I_SiteValnAndInvtryManagement is a Basic CDS View that provides data about "Site Valuation and inventory mgmt" in SAP S/4HANA. It reads from 1 data source (wrf1) and exposes 4 fields with key field SiteCustomer. It has 2 associations to related views. Part of development package VDM_RFM_SITE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wrf1 | wrf1 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Site | _Site | $projection.SiteCustomer = _Site.SiteCustomer |
| [1..1] | I_Customer | _Customer | $projection.SiteCustomer = _Customer.Customer |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISTVALINVMGMT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | SiteCustomer | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Site Valuation and inventory mgmt | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SiteCustomer | locnr | ||
| ProfitCenter | prctr | |||
| _Site | _Site | |||
| _Customer | _Customer |
@AbapCatalog.sqlViewName: 'ISTVALINVMGMT'
@AbapCatalog: {
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
semanticKey: ['SiteCustomer'],
representativeKey: 'SiteCustomer',
usageType: {
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
}
@EndUserText.label: 'Site Valuation and inventory mgmt'
define view I_SiteValnAndInvtryManagement
as select from wrf1
association [1..1] to I_Site as _Site on $projection.SiteCustomer = _Site.SiteCustomer
association [1..1] to I_Customer as _Customer on $projection.SiteCustomer = _Customer.Customer
{
key locnr as SiteCustomer,
prctr as ProfitCenter,
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_Site,
_Customer
}
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