I_SiteToSiteProfile
CDS view for Site to Site Profile
I_SiteToSiteProfile is a Basic CDS View that provides data about "CDS view for Site to Site Profile" in SAP S/4HANA. It reads from 1 data source (t001w) and exposes 5 fields with key field Site. It has 2 associations to related views. Part of development package VDM_RFM_SITE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t001w | Plant | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SiteProfile | _SiteProfile | $projection.SiteProfile = _SiteProfile.SiteProfile |
| [0..1] | I_SiteMasterCustomizing | _SiteMasterCustomizing | $projection.Site = _SiteMasterCustomizing.Site |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISITETSP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | CDS view for Site to Site Profile | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
@AbapCatalog.sqlViewName: 'ISITETSP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'CDS view for Site to Site Profile'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel: {
usageType: {
dataClass: #MIXED,
sizeCategory: #M,
serviceQuality: #C
}
}
define view I_SiteToSiteProfile
as select from t001w as Plant
left outer to one join wrf1 as Site on Site.locnr = Plant.kunnr
association [0..1] to I_SiteProfile as _SiteProfile on $projection.SiteProfile = _SiteProfile.SiteProfile
association [0..1] to I_SiteMasterCustomizing as _SiteMasterCustomizing on $projection.Site = _SiteMasterCustomizing.Site
{
key Plant.werks as Site,
Site.locnr as SiteCustomer,
case when Site.betrp is not initial then Site.betrp
else _SiteMasterCustomizing.SiteProfile
end as SiteProfile,
_SiteProfile,
_SiteMasterCustomizing
}
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