I_PurContrItemExtReference
External References of Pur Contract Item
I_PurContrItemExtReference is a Basic CDS View that provides data about "External References of Pur Contract Item" in SAP S/4HANA. It reads from 1 data source (I_ExternalRefForPurgDoc) and exposes 7 fields with key fields PurchaseContract, PurchaseContractItem, LinkType, PurgExtRefSequenceNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ExternalRefForPurgDoc | I_ExternalRefForPurgDoc | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPCITMEXTLINK | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | External References of Pur Contract 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 |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseContract | |||
| KEY | PurchaseContractItem | |||
| KEY | LinkType | LinkType | ||
| KEY | PurgExtRefSequenceNumber | SequenceNumber | ||
| PurgDocExternalReference | ||||
| PurgDocExternalReferenceItem | ||||
| PurgDocExternalSystem | PurgDocExternalSystem |
@AbapCatalog.sqlViewName: 'IPCITMEXTLINK'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'External References of Pur Contract Item'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_PurContrItemExtReference as select from I_ExternalRefForPurgDoc {
key cast(substring( PurchasingDocumentUniqueID ,1, 10 )as vdm_purchasecontract) as PurchaseContract,
key cast(substring( PurchasingDocumentUniqueID ,11, 5 ) as vdm_purchasecontractitem) as PurchaseContractItem,
key LinkType as LinkType,
key SequenceNumber as PurgExtRefSequenceNumber,
cast(substring( PurgDocExternalReference ,1, 35 ) as mmpur_externalreferenceid) as PurgDocExternalReference,
cast(substring( PurgDocExternalReference ,36, 10 ) as mmpur_externalreferenceid) as PurgDocExternalReferenceItem,
PurgDocExternalSystem
}where
I_ExternalRefForPurgDoc.SAPObjectNodeType = 'PurchaseContractItem'
/*+[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