I_PurContrHdrExtReference
External References of Pur Contract Hdr
I_PurContrHdrExtReference is a Composite CDS View that provides data about "External References of Pur Contract Hdr" in SAP S/4HANA. Part of development package ODATA_MM_CTR_MAINTAIN.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPCHDREXTLINKS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | External References of Pur Contract Hdr | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseContract | PurchaseContract | ||
| KEY | LinkType | LinkType | ||
| PurgDocExternalReference | PurgDocExternalReference | |||
| PurgDocExternalSystem | PurgDocExternalSystem | |||
| PurgDocExtReferenceNodeType | PurgDocExtReferenceNodeType |
@AbapCatalog.sqlViewName: 'IPCHDREXTLINKS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'External References of Pur Contract Hdr'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_PurContrHdrExtReference
as select distinct from I_PurContrItemExtReference
{
key PurchaseContract,
key LinkType,
PurgDocExternalReference,
cast(case
when PurgDocExternalReference is not initial
then
case
when PurgDocExternalSystem is not initial
then
concat('External (', concat(PurgDocExternalSystem, ')'))
else
'External'
end
else
case
when PurgDocExternalReference is not initial
then 'Internal'
else ''
end
end as mmpur_ext_system) as PurgOutlineAgrmtExtSystID,
PurgDocExternalSystem,
PurgDocExtReferenceNodeType
}
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