P_PDOBJECT
P_PDOBJECT is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (hrp1000) and exposes 8 fields with key fields PlanVersion, ObjectType, ObjectID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrp1000 | object | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| AbapCatalog.sqlViewName | PPDOBJECT | view | |
| VDM.viewType | #BASIC | view |
@VDM.private: true
@AbapCatalog.sqlViewName: 'PPDOBJECT'
@VDM.viewType: #BASIC
define view P_PDOBJECT
as select from hrp1000 as object
{
key object.plvar as PlanVersion,
key object.otype as ObjectType,
key object.objid as ObjectID,
object.istat as ObjectStatus,
object.begda as StartDate,
object.endda as EndDate,
//object.stext as Name
object.short as Name,
object.langu as Language
// _Relation
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRP1000"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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