I_PurchaseOrderText
PurchaseOrderText
I_PurchaseOrderText is a Basic CDS View that provides data about "PurchaseOrderText" in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderAPI01) and exposes 7 fields with key fields PurchaseOrder, TextObjectCategory, TextObjectType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchaseOrderAPI01 | I_PurchaseOrderAPI01 | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.sqlViewName | ITEXTPO | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PurchaseOrder | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | PurchaseOrderText | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchaseOrder | ||
| KEY | TextObjectCategory | _TextObjectPlainLongText | TextObjectCategory | |
| KEY | TextObjectType | _TextObjectPlainLongText | TextObjectType | |
| KEY | Language | _TextObjectPlainLongText | Language | |
| PlainLongText | _TextObjectPlainLongText | PlainLongText | ||
| _Language | _TextObjectPlainLongText | _Language | ||
| _TextObjectPlainLongText | _TextObjectPlainLongText |
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.sqlViewName: 'ITEXTPO'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PurchaseOrder'
@AccessControl.privilegedAssociations: ['_TextObjectPlainLongText']
@VDM.viewType: #BASIC
@EndUserText.label: 'PurchaseOrderText'
define view I_PurchaseOrderText
as select from I_PurchaseOrderAPI01
association[1..*] to I_TextObjectPlainLongText as _TextObjectPlainLongText
on _TextObjectPlainLongText.TextObjectKey = $projection.PurchaseOrder
and _TextObjectPlainLongText.TextObjectCategory = 'EKKO'
// I_TextObjectPlainLongText
//inner join I_PurchaseOrderAPI01 on PurchaseOrder = I_TextObjectPlainLongText.TextObjectKey
{
key PurchaseOrder,
key _TextObjectPlainLongText.TextObjectCategory,
key _TextObjectPlainLongText.TextObjectType,
key _TextObjectPlainLongText.Language,
_TextObjectPlainLongText.PlainLongText,
_TextObjectPlainLongText._Language,
_TextObjectPlainLongText
}
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