I_ENGAGEMENTPROJECTSRVCORG
Service Org of Engagement Project
I_ENGAGEMENTPROJECTSRVCORG is a CDS View in S/4HANA. Service Org of Engagement Project. It contains 3 fields. 13 CDS views read from this table.
CDS Views using this table (13)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_EngmntProjServiceOrg | view | from | BASIC | Service Organization |
| C_EngmntProjSrvcOrgDfltAssgmt | view | from | CONSUMPTION | Engagement Project Service Organization Default Assignment |
| C_EntProjSrvcOrgCntctCard | view_entity | from | CONSUMPTION | Contact Card for Ent Proj Service Org |
| C_ProjectServiceOrg | view | from | CONSUMPTION | Service Organization |
| C_RSHServiceOrganization | view | from | CONSUMPTION | Service Organizations |
| I_EngmntProjSrvcOrgDefValues | view | from | BASIC | Engmt Proj Service Org default Values |
| I_EngmntProjSrvcOrgStdVH | view | from | COMPOSITE | Engagement Project Service Organization |
| P_EngagementProjDeliveryOrg | view | from | COMPOSITE | Engagemen Project Service Organization |
| P_EngmntProjOrgDetails | view | from | COMPOSITE | Engagement Project Delivery Organisation Details |
| P_EngmntProjStfngSrchByPerson | view | inner | CONSUMPTION | Employee Person Search |
| P_EngmntProjStfngSrchByRole | view | inner | CONSUMPTION | Employee Role based search |
| P_EngmntProjStfngSrchBySkill | view | inner | CONSUMPTION | Employee Role Skill search |
| P_EngmtProjDeliveryOrg | view | from | COMPOSITE | Engagement Project Delivery Organisation Details |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | EngagementProjectServiceOrg | EngagementProjectServiceOrg | 3 |
| EngmtProjServiceOrgIsDelivery | EngmtProjServiceOrgIsDelivery | 1 | |
| EngmtProjServiceOrgIsSales | EngmtProjServiceOrgIsSales | 1 |
@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,
#EXTRACTION_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
}