A_FinProject
API FIN Project Definition Details
A_FinProject is a Basic CDS View that provides data about "API FIN Project Definition Details" in SAP S/4HANA. It reads from 1 data source (I_ProjectBasicData) and exposes 11 fields with key field ProjectInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectBasicData | I_ProjectBasicData | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | API FIN Project Definition Details | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | AFINPROJECT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectInternalID | |||
| Project | Project | |||
| ProjectDescription | ProjectDescription | |||
| ProjectProfileCode | ProjectProfileCode | |||
| CompanyCode | CompanyCode | |||
| ControllingArea | ControllingArea | |||
| FunctionalArea | FunctionalArea | |||
| ProfitCenter | ProfitCenter | |||
| ProjectObject | ProjectObject | |||
| PlannedStartDate | PlannedStartDate | |||
| PlannedEndDate | PlannedEndDate |
@EndUserText.label: 'API FIN Project Definition Details'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFINPROJECT'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
// A-view annotations
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_FinProject
as select from I_ProjectBasicData
{
//Entity description fields
key cast ( ProjectInternalID as ps_psphi1 preserving type ) as ProjectInternalID,
Project,
ProjectDescription,
ProjectProfileCode,
//Organisational fields
CompanyCode,
ControllingArea,
FunctionalArea,
ProfitCenter,
//Dimensions
ProjectObject,
//Dates
PlannedStartDate,
PlannedEndDate
}
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