P_PDOBJECT

DDL: P_PDOBJECT SQL: PPDOBJECT Type: view BASIC

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)

SourceAliasJoin Type
hrp1000 object from

Annotations (3)

NameValueLevelField
VDM.private true view
AbapCatalog.sqlViewName PPDOBJECT view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PlanVersion hrp1000 plvar
KEY ObjectType hrp1000 otype
KEY ObjectID hrp1000 objid
ObjectStatus hrp1000 istat
StartDate hrp1000 begda
EndDate hrp1000 endda
Name hrp1000 short
Language hrp1000 langu
@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
}
}*/