I_UtilsInstIntAndExtPtOfDeliv
Internal and External PoD for Utilities Installation
I_UtilsInstIntAndExtPtOfDeliv is a Composite CDS View that provides data about "Internal and External PoD for Utilities Installation" in SAP S/4HANA. It reads from 2 data sources (I_UtilsAllocOfExtToIntPoD, I_UtilsAllocOfInstToPoD) and exposes 8 fields with key fields UtilsInternalPointOfDelivery, UtilitiesInstallation, UtilsPoDAllocValidityEndDate, UtilsPoDAllocValidityEndTime.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_UtilsAllocOfExtToIntPoD | UtilsAllocOfExtToIntPoD | inner |
| I_UtilsAllocOfInstToPoD | UtilsAllocOfInstToPoD | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Internal and External PoD for Utilities Installation | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.sqlViewName | IEUINSINTEXTPOD | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UtilsInternalPointOfDelivery | I_UtilsAllocOfInstToPoD | UtilsInternalPointOfDelivery | |
| KEY | UtilitiesInstallation | I_UtilsAllocOfInstToPoD | UtilitiesInstallation | |
| KEY | UtilsPoDAllocValidityEndDate | I_UtilsAllocOfExtToIntPoD | UtilsPoDAllocValidityEndDate | |
| KEY | UtilsPoDAllocValidityEndTime | I_UtilsAllocOfExtToIntPoD | UtilsPoDAllocValidityEndTime | |
| UtilsPoDAllocValidityStartDate | I_UtilsAllocOfExtToIntPoD | UtilsPoDAllocValidityStartDate | ||
| UtilsPoDAllocValidityStartTime | I_UtilsAllocOfExtToIntPoD | UtilsPoDAllocValidityStartTime | ||
| UtilsExternalPointOfDelivery | I_UtilsAllocOfExtToIntPoD | UtilsExternalPointOfDelivery | ||
| _UtilitiesInstallation | I_UtilsAllocOfInstToPoD | _UtilitiesInstallation |
@EndUserText.label: 'Internal and External PoD for Utilities Installation'
@VDM.viewType: #COMPOSITE
@AbapCatalog.sqlViewName: 'IEUINSINTEXTPOD'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_UtilsInstIntAndExtPtOfDeliv
as select from I_UtilsAllocOfInstToPoD as UtilsAllocOfInstToPoD
inner join I_UtilsAllocOfExtToIntPoD as UtilsAllocOfExtToIntPoD on UtilsAllocOfExtToIntPoD.UtilsInternalPointOfDelivery = UtilsAllocOfInstToPoD.UtilsInternalPointOfDelivery
{
key UtilsAllocOfInstToPoD.UtilsInternalPointOfDelivery,
@ObjectModel.foreignKey.association: '_UtilitiesInstallation'
key UtilsAllocOfInstToPoD.UtilitiesInstallation,
key UtilsAllocOfExtToIntPoD.UtilsPoDAllocValidityEndDate,
@Semantics.time: true
key UtilsAllocOfExtToIntPoD.UtilsPoDAllocValidityEndTime,
UtilsAllocOfExtToIntPoD.UtilsPoDAllocValidityStartDate,
UtilsAllocOfExtToIntPoD.UtilsPoDAllocValidityStartTime,
UtilsAllocOfExtToIntPoD.UtilsExternalPointOfDelivery,
/* Associations */
UtilsAllocOfInstToPoD._UtilitiesInstallation
}
where
UtilsAllocOfInstToPoD.UtilsPtOfDeliveryIsDeregulated = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UTILSALLOCOFEXTTOINTPOD",
"I_UTILSALLOCOFINSTTOPOD"
],
"ASSOCIATED":
[
"I_UTILITIESINSTALLATION"
],
"BASE":
[
"I_UTILSALLOCOFINSTTOPOD"
],
"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