P_HndlgUnitItmCmptblty_F4674
P_HndlgUnitItmCmptblty_F4674 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_DeliveryDocumentItem, I_HandlingUnitItem) and exposes 4 fields with key fields HandlingUnitInternalID, HandlingUnitItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocumentItem | DeliveryItem | inner |
| I_HandlingUnitItem | HandlingUnitItem | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PHUITMCOMPTF4674 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | HandlingUnitInternalID | HandlingUnitInternalID | ||
| KEY | HandlingUnitItem | |||
| PurchaseOrderItem | ||||
| HandlingUnitQuantity | HandlingUnitQuantity |
@AbapCatalog.sqlViewName: 'PHUITMCOMPTF4674'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view P_HndlgUnitItmCmptblty_F4674
as select from I_HandlingUnitItem as HandlingUnitItem
inner join I_DeliveryDocumentItem as DeliveryItem on DeliveryItem.DeliveryDocument = HandlingUnitItem.HandlingUnitReferenceDocument
and DeliveryItem.DeliveryDocumentItem = HandlingUnitItem.HandlingUnitRefDocumentItem
{
key HandlingUnitInternalID,
key cast(HandlingUnitItem as abap.int4) as HandlingUnitItem,
cast(right(DeliveryItem.ReferenceSDDocumentItem, 5) as ebelp) as PurchaseOrderItem,
HandlingUnitQuantity
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DELIVERYDOCUMENTITEM",
"I_HANDLINGUNITITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"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