P_ONRPD
View for ONRPD
P_ONRPD is a Basic CDS View that provides data about "View for ONRPD" in SAP S/4HANA. It reads from 2 data sources (I_ProjectBasicData, onrpd) and exposes 5 fields with key field objnr. Part of development package FINS_FIS_FICO.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectBasicData | I_ProjectBasicData | inner |
| onrpd | onrpd | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | false | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | objnr | onrpd | objnr | |
| pspnr | onrpd | pspnr | ||
| kokrs | I_ProjectBasicData | ControllingArea | ||
| bukrs | I_ProjectBasicData | CompanyCode | ||
| OBART |
@AbapCatalog.entityBuffer.definitionAllowed: false
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
define view entity P_ONRPD as select from onrpd
// inner join onr00 on onrpd.objnr = onr00.objnr
// left outer join proj on onrpd.pspnr = proj.pspnr
inner join I_ProjectBasicData on onrpd.pspnr = I_ProjectBasicData.ProjectInternalID
{
key onrpd.objnr as objnr,
onrpd.pspnr as pspnr,
I_ProjectBasicData.ControllingArea as kokrs,
I_ProjectBasicData.CompanyCode as bukrs,
cast ( substring( onrpd.objnr, 1, 2) as j_obart preserving type ) as OBART
}
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