P_NodeClass
P_NodeClass is a Basic CDS View in SAP S/4HANA. It reads from 3 data sources (/plmi/ppe_cus_gs, klah, swor) and exposes 5 fields with key field ClassInternalID.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| /plmi/ppe_cus_gs | /plmi/ppe_cus_gs | inner |
| klah | klah | from |
| swor | swor | inner |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PNODECLASS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClassInternalID | klah | clint | |
| ClassType | /plmi/ppe_cus_gs | klart | ||
| Class | class | |||
| Language | spras | |||
| ClassName | kschl |
@AbapCatalog.sqlViewName: 'PNODECLASS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
define view P_NodeClass
as select from klah
inner join /plmi/ppe_cus_gs on klah.mandt = /plmi/ppe_cus_gs.mandt
and klah.klart = /plmi/ppe_cus_gs.klart
inner join swor on klah.clint = swor.clint
and klpos = '01'
{
key klah.clint as ClassInternalID,
/plmi/ppe_cus_gs.klart as ClassType,
class as Class,
spras as Language,
kschl as ClassName
}
where spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMI/PPE_CUS_GS",
"KLAH",
"SWOR"
],
"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