A_SrcgProjQtnItemLinkage

DDL: A_SRCGPROJQTNITEMLINKAGE Type: view_entity CONSUMPTION

Item Linking

A_SrcgProjQtnItemLinkage is a Consumption CDS View that provides data about "Item Linking" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjQtnItemLinkageTP) and exposes 5 fields with key field SrcgProjectQtnItemLinkageUUID. It has 1 association to related views. It is exposed through 1 OData service (API_SOURCINGPROJECTQUOTATION).

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjQtnItemLinkageTP R_SrcgProjQtnItemLinkageTP projection

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_SrcgProjQtnItem _SrcgProjQtnItemLinked $projection.SourcingProjectQuotationUUID = _SrcgProjQtnItemLinked.SourcingProjectQuotationUUID and $projection.SrcgProjQtnItmLinkedStableUUID = _SrcgProjQtnItemLinked.SourcingProjectItemStableUUID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SrcgProjectQtnItemLinkageUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Item Linking view
OData.entityType.name SrcgProjQtnItemLinkage_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_SOURCINGPROJECTQUOTATION API_SRCGPROJQUOTATION V4 C2 C1

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjectQtnItemLinkageUUID SrcgProjectQtnItemLinkageUUID Supplier Quotation Item Linkage UUID
SrcgProjQtnItemUUID SrcgProjQtnItemUUID Supplier Quotation Item UUID
SrcgProjQtnItmLinkedStableUUID SrcgProjQtnItmLinkedStableUUID Linked Item UUID
SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
_SrcgProjQtnItemLinked _SrcgProjQtnItemLinked

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_SrcgProjQtnItemLinkage.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW A_SrcgProjQtnItemLinkage AS
SELECT
  SrcgProjectQtnItemLinkageUUID,
  SrcgProjQtnItemUUID,
  SrcgProjQtnItmLinkedStableUUID,
  SourcingProjectQuotationUUID
FROM R_SrcgProjQtnItemLinkageTP
LEFT OUTER JOIN A_SrcgProjQtnItem AS _SrcgProjQtnItemLinked ON SourcingProjectQuotationUUID = _SrcgProjQtnItemLinked.SourcingProjectQuotationUUID AND SrcgProjQtnItmLinkedStableUUID = _SrcgProjQtnItemLinked.SourcingProjectItemStableUUID  -- association [1..1]
;