I_ExtReferencesForPurReqnItm
External References of PR Item
I_ExtReferencesForPurReqnItm is a Basic CDS View that provides data about "External References of PR Item" in SAP S/4HANA. It reads from 1 data source (I_ExternalRefForPurgDoc) and exposes 7 fields with key fields PurchaseRequisition, PurchaseRequisitionItem, LinkType, SequenceNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ExternalRefForPurgDoc | I_ExternalRefForPurgDoc | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURREQNEXTLINKS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | External References of PR Item | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.preserveKey | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseRequisition | |||
| KEY | PurchaseRequisitionItem | |||
| KEY | LinkType | LinkType | ||
| KEY | SequenceNumber | SequenceNumber | ||
| PurReqnExternalReference | ||||
| PurReqnItemExternalReference | ||||
| PurReqnExternalSystemId | PurgDocExternalSystem |
@AbapCatalog.sqlViewName: 'IPURREQNEXTLINKS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'External References of PR Item'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.preserveKey:true
define view I_ExtReferencesForPurReqnItm as select from I_ExternalRefForPurgDoc {
key substring( PurchasingDocumentUniqueID ,1, 10 ) as PurchaseRequisition,
key substring( PurchasingDocumentUniqueID ,11, 5 ) as PurchaseRequisitionItem,
key LinkType as LinkType,
key SequenceNumber as SequenceNumber,
substring( PurgDocExternalReference ,1, 35 ) as PurReqnExternalReference,
substring( PurgDocExternalReference ,36, 10 ) as PurReqnItemExternalReference,
PurgDocExternalSystem as PurReqnExternalSystemId
} where
I_ExternalRefForPurgDoc.SAPObjectNodeType = 'PurchaseRequisitionItem'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EXTERNALREFFORPURGDOC"
],
"ASSOCIATED":
[],
"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