P_PurchaseCtrTextFileInter
P_PurchaseCtrTextFileInter is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_TextObjectTypeText, I_TextObject) and exposes 5 fields with key fields TechnicalObjectType, ArchitecturalObjectNumber, DocumentText.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_TextObjectTypeText | text | left_outer |
| I_TextObject | txthdr | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | PPCTRTXTFILEINTR | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechnicalObjectType | I_TextObject | TextObjectCategory | |
| KEY | ArchitecturalObjectNumber | I_TextObject | TextObjectKey | |
| KEY | DocumentText | I_TextObject | TextObjectType | |
| Language | I_TextObjectTypeText | Language | ||
| Note | I_TextObjectTypeText | TextObjectTypeName |
@VDM.private : true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PPCTRTXTFILEINTR'
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_PurchaseCtrTextFileInter as select from I_TextObject as txthdr
left outer join I_TextObjectTypeText as text on (txthdr.TextObjectType = text.TextObjectType and txthdr.TextObjectCategory = text.TextObjectCategory)
{
key txthdr.TextObjectCategory as TechnicalObjectType,
key txthdr.TextObjectKey as ArchitecturalObjectNumber,
key txthdr.TextObjectType as DocumentText,
text.Language,
text.TextObjectTypeName as Note
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECT",
"I_TEXTOBJECTTYPETEXT"
],
"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