P_EngmtProjDeliveryOrg
P_EngmtProjDeliveryOrg is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_EngagementProjectSrvcOrg) and exposes 4 fields with key field EngagementProjectServiceOrg. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_EngagementProjectSrvcOrg | EngmtProjDeliveryOrg | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_EngagementProjectSrvcOrgDets | _EngagementProjectSrvcOrgDets | EngmtProjDeliveryOrg.EngagementProjectServiceOrg = _EngagementProjectSrvcOrgDets.EngagementProjectServiceOrg |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | PEPDELIVERYORG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EngagementProjectServiceOrg | I_EngagementProjectSrvcOrg | EngagementProjectServiceOrg | |
| ControllingArea | ||||
| CompanyCode | ||||
| CostCenter |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'PEPDELIVERYORG'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_EngmtProjDeliveryOrg
as select from I_EngagementProjectSrvcOrg as EngmtProjDeliveryOrg
// association [0..1] to P_DeliveryOrg2 as delvorg on delvorg.EngagementProjectServiceOrg = $projection.EngagementProjectServiceOrg
association [0..1] to I_EngagementProjectSrvcOrgDets as _EngagementProjectSrvcOrgDets on EngmtProjDeliveryOrg.EngagementProjectServiceOrg = _EngagementProjectSrvcOrgDets.EngagementProjectServiceOrg
{
key EngmtProjDeliveryOrg.EngagementProjectServiceOrg as EngagementProjectServiceOrg,
_EngagementProjectSrvcOrgDets[1: AssignedOrganisationType = 'CA' ].AssignedOrganisation as ControllingArea,
_EngagementProjectSrvcOrgDets[1: AssignedOrganisationType = 'CC' ].AssignedOrganisation as CompanyCode,
_EngagementProjectSrvcOrgDets[1: AssignedOrganisationType = 'CS' ].AssignedOrganisation as CostCenter
}
where
EngmtProjDeliveryOrg.EngmtProjServiceOrgIsDelivery = 'X'
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