I_Purctrnotes
Purchase Contract Header Notes
I_Purctrnotes is a Basic CDS View that provides data about "Purchase Contract Header Notes" in SAP S/4HANA. It reads from 1 data source (I_Text_Templates) and exposes 7 fields with key fields ArchitecturalObjectNumber, TechnicalObjectType, DocumentText, Language, PurchaseContract. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Text_Templates | I_Text_Templates | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PurchaseContract | _PurchaseContract | $projection.PurchaseContract = _PurchaseContract.PurchaseContract |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURCTRNOTES | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Purchase Contract Header Notes | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ArchitecturalObjectNumber | ArchitecturalObjectNumber | ||
| KEY | TechnicalObjectType | TechnicalObjectType | ||
| KEY | DocumentText | DocumentText | ||
| KEY | Language | Language | ||
| KEY | PurchaseContract | |||
| NoteDescription | NoteDescription | |||
| _PurchaseContract | _PurchaseContract |
@AbapCatalog.sqlViewName: 'IPURCTRNOTES'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Purchase Contract Header Notes'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view I_Purctrnotes
as select from I_Text_Templates
association [1..1] to I_PurchaseContract as _PurchaseContract on $projection.PurchaseContract = _PurchaseContract.PurchaseContract
{
key ArchitecturalObjectNumber,
key TechnicalObjectType,
key DocumentText,
key Language,
key cast( ArchitecturalObjectNumber as ebeln) as PurchaseContract,
// ObjectInternalID,
//cast('' as mm_oa_text_description) as NoteDescription,
NoteDescription,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_PurchaseContract
}
where
TechnicalObjectType = 'EKKO'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXT_TEMPLATES"
],
"ASSOCIATED":
[
"I_PURCHASECONTRACT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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