C_ReExAssignProject
Project
C_ReExAssignProject is a Consumption CDS View that provides data about "Project" in SAP S/4HANA. It reads from 1 data source (I_Project) and exposes 23 fields with key field Project. Part of development package ODATA_RE_EX.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Project | I_Project | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | CREEXASSIGNPROJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Project | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Search.searchable | true | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Project | I_Project | Project | |
| ProjectInternalID | I_Project | ProjectInternalID | ||
| ProjectDescription | I_Project | ProjectDescription | ||
| ProjectObject | I_Project | ProjectObject | ||
| CompanyCode | I_Project | CompanyCode | ||
| BusinessArea | I_Project | BusinessArea | ||
| ControllingArea | I_Project | ControllingArea | ||
| ProfitCenter | I_Project | ProfitCenter | ||
| Currency | I_Project | Currency | ||
| PlannedStartDate | I_Project | PlannedStartDate | ||
| PlannedEndDate | I_Project | PlannedEndDate | ||
| Plant | I_Project | Plant | ||
| Language | I_Project | Language | ||
| CostCenter | I_Project | CostCenter | ||
| CostObject | I_Project | CostObject | ||
| BasicDatesLastScheduledDate | I_Project | BasicDatesLastScheduledDate | ||
| FcstdDatesLastScheduledDate | I_Project | FcstdDatesLastScheduledDate | ||
| FunctionalArea | I_Project | FunctionalArea | ||
| SalesOrganization | I_Project | SalesOrganization | ||
| DistributionChannel | I_Project | DistributionChannel | ||
| Division | I_Project | Division | ||
| ResponsiblePersonIsBlocked | _ResponsiblePerson | ResponsiblePersonIsBlocked | ||
| _EntProjProjectRespPersn | I_Project | _EntProjProjectRespPersn |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'CREEXASSIGNPROJ'
@AbapCatalog.compiler.compareFilter: true
@AccessControl: { authorizationCheck: #CHECK,
personalData.blocking: #REQUIRED }
@EndUserText.label: 'Project'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory : #XL
@ObjectModel.usageType.dataClass: #MIXED
@Search.searchable: true
define view C_ReExAssignProject as select from I_Project
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key I_Project.Project as Project,
I_Project.ProjectInternalID as ProjectInternalID,
@Semantics.text: true
I_Project.ProjectDescription as ProjectDescription,
I_Project.ProjectObject as ProjectObject,
@ObjectModel.text.element: 'ResponsiblePersonName'
// I_Project.ResponsiblePerson as ResponsiblePerson,
cast( case
when ResponsiblePerson = '00000000' or ResponsiblePerson is null
then _EntProjProjectRespPersn.PersonWorkAgreement
else
ResponsiblePerson
end as persno preserving type ) as ResponsiblePerson,
@Semantics.text: true
// I_Project.ResponsiblePersonName as ResponsiblePersonName,
cast( case
when ResponsiblePerson = '00000000' or ResponsiblePerson is null
then _EntProjProjectRespPersn._WorkforcePerson.PersonFullName
else
ResponsiblePersonName
end as ad_namtext preserving type ) as ResponsiblePersonName,
I_Project.CompanyCode as CompanyCode,
I_Project.BusinessArea as BusinessArea,
I_Project.ControllingArea as ControllingArea,
I_Project.ProfitCenter as ProfitCenter,
I_Project.Currency as Currency,
@Semantics.calendar.dayOfMonth: true
I_Project.PlannedStartDate as PlannedStartDate,
@Semantics.calendar.dayOfMonth: true
I_Project.PlannedEndDate as PlannedEndDate,
I_Project.Plant as Plant,
@Semantics.language
I_Project.Language as Language,
I_Project.CostCenter as CostCenter,
I_Project.CostObject as CostObject,
@Semantics.calendar.dayOfMonth: true
I_Project.BasicDatesLastScheduledDate as BasicDatesLastScheduledDate,
@Semantics.calendar.dayOfMonth: true
I_Project.FcstdDatesLastScheduledDate as FcstdDatesLastScheduledDate,
I_Project.FunctionalArea as FunctionalArea,
I_Project.SalesOrganization as SalesOrganization,
I_Project.DistributionChannel as DistributionChannel,
I_Project.Division as Division,
@Semantics.calendar.dayOfMonth: true
I_Project.ForecastedStartDate as ForecastedStartDate,
@Semantics.calendar.dayOfMonth: true
I_Project.ForecastedEndDate as ForecastedEndDate,
@UI.hidden: true
@Consumption.filter.hidden: true
_ResponsiblePerson.ResponsiblePersonIsBlocked,
// _ResponsiblePerson,
@UI.hidden: true
@Consumption.filter.hidden: true
I_Project._EntProjProjectRespPersn
}
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