I_PurgInfoRecdOrganizationNote
Purchasing Info Recd Organisation Notes
I_PurgInfoRecdOrganizationNote is a Basic CDS View that provides data about "Purchasing Info Recd Organisation Notes" in SAP S/4HANA. It reads from 1 data source (I_Text_Templates) and exposes 8 fields with key fields TextObjectType, TextObjectKey, Language, PurchasingInfoRecord, PurchasingOrganization. It has 2 associations to related views. Part of development package ODATA_MM_PUR_INFOREC_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Text_Templates | I_Text_Templates | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PurchasingInfoRecord | _PurchasingInfoRecord | _PurchasingInfoRecord.PurchasingInfoRecord = $projection.PurchasingInfoRecord |
| [1..1] | I_PurgInfoRecdOrgPlantData | _PurgInfoRecdOrgPlantData | _PurgInfoRecdOrgPlantData.PurchasingInfoRecord = $projection.PurchasingInfoRecord and _PurgInfoRecdOrgPlantData.PurchasingInfoRecordCategory = $projection.PurchasingInfoRecordCategory and _PurgInfoRecdOrgPlantData.PurchasingOrganization = $projection.PurchasingOrganization and _PurgInfoRecdOrgPlantData.Plant = $projection.Plant |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Purchasing Info Recd Organisation Notes | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TextObjectType | DocumentText | ||
| KEY | TextObjectKey | ArchitecturalObjectNumber | ||
| KEY | Language | Language | ||
| KEY | PurchasingInfoRecord | |||
| KEY | PurchasingOrganization | |||
| KEY | PurchasingInfoRecordCategory | |||
| KEY | Plant | |||
| NoteDescription | NoteDescription |
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Purchasing Info Recd Organisation Notes'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_PurgInfoRecdOrganizationNote
as select from I_Text_Templates
association [1..1] to I_PurchasingInfoRecord as _PurchasingInfoRecord on _PurchasingInfoRecord.PurchasingInfoRecord = $projection.PurchasingInfoRecord
association [1..1] to I_PurgInfoRecdOrgPlantData as _PurgInfoRecdOrgPlantData on _PurgInfoRecdOrgPlantData.PurchasingInfoRecord = $projection.PurchasingInfoRecord
and _PurgInfoRecdOrgPlantData.PurchasingInfoRecordCategory = $projection.PurchasingInfoRecordCategory
and _PurgInfoRecdOrgPlantData.PurchasingOrganization = $projection.PurchasingOrganization
and _PurgInfoRecdOrgPlantData.Plant = $projection.Plant
{
key DocumentText as TextObjectType,
key ArchitecturalObjectNumber as TextObjectKey,
key Language,
key cast (substring(ArchitecturalObjectNumber,1,10) as infnr ) as PurchasingInfoRecord,
key cast (substring(ArchitecturalObjectNumber,11,14) as ekorg ) as PurchasingOrganization,
key cast (substring(ArchitecturalObjectNumber,15,15) as esokz ) as PurchasingInfoRecordCategory,
key cast (substring(ArchitecturalObjectNumber,16,19) as ewerk ) as Plant,
NoteDescription
}
where
TechnicalObjectType = 'EINE'
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