I_EngagementProjectSrvcOrg
Service Org of Engagement Project
I_EngagementProjectSrvcOrg is a Basic CDS View (Dimension) that provides data about "Service Org of Engagement Project" in SAP S/4HANA. It reads from 2 data sources (/cpd/pwsc_org_at, /cpd/pwsc_orgid) and exposes 10 fields with key field EngagementProjectServiceOrg. It has 5 associations to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| /cpd/pwsc_org_at | /cpd/pwsc_org_at | left_outer |
| /cpd/pwsc_orgid | /cpd/pwsc_orgid | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EngagementProjectSrvcOrgText | _Text | $projection.EngagementProjectServiceOrg = _Text.EngagementProjectServiceOrg |
| [0..*] | I_EngagementProjectSrvcOrgDets | _EngagementProjectSrvcOrgDets | $projection.EngagementProjectServiceOrg = _EngagementProjectSrvcOrgDets.EngagementProjectServiceOrg |
| [0..1] | I_EngagementProjectSrvcOrgDets | _CompanyCode | $projection.EngagementProjectServiceOrg = _CompanyCode.EngagementProjectServiceOrg and _CompanyCode.AssignedOrganisationIsDefault = 'X' and _CompanyCode.AssignedOrganisationType = 'CC' |
| [0..1] | I_EngagementProjectSrvcOrgDets | _ControllingArea | $projection.EngagementProjectServiceOrg = _ControllingArea.EngagementProjectServiceOrg and _ControllingArea.AssignedOrganisationIsDefault = 'X' and _ControllingArea.AssignedOrganisationType = 'CA' |
| [0..1] | I_EngmntProjServiceOrgDetails | _CompanyCodeAuth | $projection.EngagementProjectServiceOrg = _CompanyCodeAuth.EngagementProjectServiceOrg |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IEPSRVCORG | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | EngagementProjectServiceOrg | view | |
| ObjectModel.sapObjectNodeType.name | EngagementProjectServiceOrg | view | |
| EndUserText.label | Service Org of Engagement Project | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.numberOfKeyFields | 000 | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EngagementProjectServiceOrg | /cpd/pwsc_orgid | org_unit_id | |
| EngmtProjServiceOrgIsSales | /cpd/pwsc_orgid | sales_org | ||
| EngmtProjServiceOrgIsDelivery | /cpd/pwsc_orgid | delivery_org | ||
| TimePostingIsRestricted | /cpd/pwsc_org_at | restrict_time_posting | ||
| RestrictedTimePosting | /cpd/pwsc_org_at | restrict_time_posting | ||
| _Text | _Text | |||
| _EngagementProjectSrvcOrgDets | _EngagementProjectSrvcOrgDets | |||
| _CompanyCode | _CompanyCode | |||
| _ControllingArea | _ControllingArea | |||
| _CompanyCodeAuth | _CompanyCodeAuth |
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IEPSRVCORG'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'EngagementProjectServiceOrg'
@ObjectModel.sapObjectNodeType.name: 'EngagementProjectServiceOrg'
@EndUserText.label: 'Service Org of Engagement Project'
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.numberOfKeyFields: 000
@AbapCatalog.buffering.type: #FULL
@Metadata.allowExtensions:true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel: {modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE]
}
define view I_EngagementProjectSrvcOrg
as select from /cpd/pwsc_orgid
left outer join /cpd/pwsc_org_at on /cpd/pwsc_orgid.org_unit_id = /cpd/pwsc_org_at.org_unit_id
association [0..*] to I_EngagementProjectSrvcOrgText as _Text on $projection.EngagementProjectServiceOrg = _Text.EngagementProjectServiceOrg
association [0..*] to I_EngagementProjectSrvcOrgDets as _EngagementProjectSrvcOrgDets on $projection.EngagementProjectServiceOrg = _EngagementProjectSrvcOrgDets.EngagementProjectServiceOrg
association [0..1] to I_EngagementProjectSrvcOrgDets as _CompanyCode on $projection.EngagementProjectServiceOrg = _CompanyCode.EngagementProjectServiceOrg
and _CompanyCode.AssignedOrganisationIsDefault = 'X'
and _CompanyCode.AssignedOrganisationType = 'CC'
association [0..1] to I_EngagementProjectSrvcOrgDets as _ControllingArea on $projection.EngagementProjectServiceOrg = _ControllingArea.EngagementProjectServiceOrg
and _ControllingArea.AssignedOrganisationIsDefault = 'X'
and _ControllingArea.AssignedOrganisationType = 'CA'
association [0..1] to I_EngmntProjServiceOrgDetails as _CompanyCodeAuth on $projection.EngagementProjectServiceOrg = _CompanyCodeAuth.EngagementProjectServiceOrg
{
@ObjectModel.text.association: '_Text'
key /cpd/pwsc_orgid.org_unit_id as EngagementProjectServiceOrg,
@Semantics.booleanIndicator:true
/cpd/pwsc_orgid.sales_org as EngmtProjServiceOrgIsSales,
@Semantics.booleanIndicator:true
/cpd/pwsc_orgid.delivery_org as EngmtProjServiceOrgIsDelivery,
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'RestrictedTimePosting'
/cpd/pwsc_org_at.restrict_time_posting as TimePostingIsRestricted,
/cpd/pwsc_org_at.restrict_time_posting as RestrictedTimePosting,
_Text,
_EngagementProjectSrvcOrgDets,
_CompanyCode,
_ControllingArea,
@Consumption.hidden: true
_CompanyCodeAuth
}
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