C_PT_DeliveryNote
PT Delivery Note Form
C_PT_DeliveryNote is a Consumption CDS View that provides data about "PT Delivery Note Form" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocument) and exposes 19 fields with key field DeliveryDocument. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocument | I_DeliveryDocument | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ShippingConditionText | _shipcond | $projection.ShippingCondition = _shipcond.ShippingCondition |
| [1..*] | C_PT_DeliveryNoteItem | _Delitem | $projection.DeliveryDocument = _Delitem.DeliveryDocument |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPTDELIVERYNOTE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #AUTOMATED | view | |
| EndUserText.label | PT Delivery Note Form | view |
Fields (19)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryDocument | DeliveryDocument | ||
| ShippingCondition | ShippingCondition | |||
| Language | _shipcond | Language | ||
| SDDocumentCategory | SDDocumentCategory | |||
| DeliveryDocumentType | DeliveryDocumentType | |||
| CreationDate | CreationDate | |||
| CreationTime | CreationTime | |||
| ShippingPoint | ShippingPoint | |||
| HeaderGrossWeight | HeaderGrossWeight | |||
| HeaderNetWeight | HeaderNetWeight | |||
| DocumentDate | DocumentDate | |||
| ShipToParty | ShipToParty | |||
| DeliveryDate | DeliveryDate | |||
| ActualGoodsMovementDate | ActualGoodsMovementDate | |||
| ActualGoodsMovementTime | ActualGoodsMovementTime | |||
| ShippingConditionName | _shipcond | ShippingConditionName | ||
| IncotermsClassification | IncotermsClassification | |||
| IncotermsTransferLocation | IncotermsTransferLocation | |||
| _Delitem | _Delitem |
@AbapCatalog.sqlViewName: 'CPTDELIVERYNOTE'
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality:#D
@ObjectModel.usageType.sizeCategory : #XL
@ObjectModel.usageType.dataClass:#MIXED
@ClientHandling.algorithm: #AUTOMATED
@EndUserText.label: 'PT Delivery Note Form'
define view C_PT_DeliveryNote
as select from I_DeliveryDocument
association [0..1] to I_ShippingConditionText as _shipcond on $projection.ShippingCondition = _shipcond.ShippingCondition
//association [1..*] to I_PT_DigitalSignature as _Digitalsig on $projection.DeliveryDocument = _Digitalsig.DeliveryDocument
association [1..*] to C_PT_DeliveryNoteItem as _Delitem on $projection.DeliveryDocument = _Delitem.DeliveryDocument
//and _shipcond.Language = 'E'
{
//I_DeliveryDocument
key DeliveryDocument,
ShippingCondition,
_shipcond.Language as Language,
SDDocumentCategory,
DeliveryDocumentType,
CreationDate,
CreationTime,
ShippingPoint,
HeaderGrossWeight,
HeaderNetWeight,
DocumentDate,
ShipToParty,
DeliveryDate,
ActualGoodsMovementDate,
ActualGoodsMovementTime,
_shipcond.ShippingConditionName,
//_Digitalsig.CompanyCode,
//_Digitalsig.Certification,
//_shipcond.ShippingConditionName as ShippingConditionName
IncotermsClassification,
IncotermsTransferLocation,
_Delitem
}
where
_shipcond.Language = 'E'
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