I_ENGAGEMENTPROJECTBASIC
Header Information of Engagement Project
I_ENGAGEMENTPROJECTBASIC is a CDS View in S/4HANA. Header Information of Engagement Project. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_EngmntProjWithUserInvlmnt | view | from | COMPOSITE | Engagement Project with User Involvement |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | EngagementProjectUUID | ProjectUUID | 1 |
@AbapCatalog.sqlViewName: 'IENGMNTPROJBSC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Header Information of Engagement Project'
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.representativeKey: 'EngagementProject'
@Metadata.allowExtensions:true
@Analytics.internalName: #LOCAL
define view I_EngagementProjectBasic as select from /cpd/d_mp_hdr as EngagementProject
{
key cast(EngagementProject.mp_id as /cpd/eng_mp_id preserving type ) as EngagementProject,
cast(EngagementProject.db_key as /cpd/eng_db_key preserving type ) as EngagementProjectUUID,
cast(EngagementProject.mp_type as /cpd/eng_mp_type preserving type ) as EngagementProjectType,
EngagementProject.mp_stage as EngagementProjectStage,
EngagementProject.start_date as ProjectStartDate,
EngagementProject.end_date as ProjectEndDate,
EngagementProject.customer as Customer,
EngagementProject.org_id as EngagementProjectServiceOrg,
EngagementProject.confidential as ProjectVisibility,
// EngagementProject.proj_manager_id as ProjectManager,
cast(EngagementProject.project_type as /cpd/eng_proj_type preserving type ) as EngagementProjectCategory,
@Semantics.dateTime:true
@Semantics.systemDateTime.lastChangedAt:true
cast(EngagementProject.changed_on as /cpd/cpm_changedon) as LastChangeDateTime,
EngagementProject.changed_by as LastChangedByUser,
EngagementProject.created_by as CreatedByUser,
@Semantics.dateTime:true
@Semantics.systemDateTime.createdAt:true
cast(EngagementProject.created_on as /cpd/cpm_createdon) as CreationDateTime,
// EngagementProject.cost_center as CostCenter,
EngagementProject.profit_center as ProfitCenter,
data_model_version as EngmntProjectDataModelVersion
}