A_SourcingProjectItemLinkage

DDL: A_SOURCINGPROJECTITEMLINKAGE Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_SRCGPROJ_API

Item Linking

A_SourcingProjectItemLinkage is a Consumption CDS View that provides data about "Item Linking" in SAP S/4HANA. It reads from 1 data source (R_SourcingProjectItemLinkageTP) and exposes 12 fields with key field SrcgProjectItemLinkageUUID. It is exposed through 1 OData service (API_SOURCINGPROJECT). Part of development package ODATA_MM_PUR_SRCGPROJ_API.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProjectItemLinkageTP R_SourcingProjectItemLinkageTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SrcgProjectItemLinkageUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C 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 SourcingProjectItemLinkage_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_SOURCINGPROJECT API_SOURCINGPROJECT V4 C2 Deprecated

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjectItemLinkageUUID SrcgProjectItemLinkageUUID Item Linking UUID
SourcingProjectItemUUID SourcingProjectItemUUID Item UUID
SrcgProjItemLinkedStableUUID SrcgProjItemLinkedStableUUID Stable UUID of Linked Item
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario
SrcgProjItemLinkedItemUUID
SourcingProjectItem _SourcingProjectItemLinked SourcingProjectItem Item
FormattedItemID _SourcingProjectItemLinked FormattedItemID Item Number
SrcgProjItemDescription _SourcingProjectItemLinked SrcgProjItemDescription Description
Material _SourcingProjectItemLinked Material Vehicle Model
MaterialGroup _SourcingProjectItemLinked MaterialGroup Product Group

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_SourcingProjectItemLinkage.
-- 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_SourcingProjectItemLinkage AS
SELECT
  SrcgProjectItemLinkageUUID,
  SourcingProjectItemUUID,
  SrcgProjItemLinkedStableUUID,
  SourcingProjectUUID,
  SourcingOrigin,
  SourcingScenario,
  cast(_SourcingProjectItemLinked.SourcingProjectItemUUID as vdm_srcgprojitemlinkeditemuuid preserving type) AS SrcgProjItemLinkedItemUUID,
  _SourcingProjectItemLinked.SourcingProjectItem AS SourcingProjectItem,
  _SourcingProjectItemLinked.FormattedItemID AS FormattedItemID,
  _SourcingProjectItemLinked.SrcgProjItemDescription AS SrcgProjItemDescription,
  _SourcingProjectItemLinked.Material AS Material,
  _SourcingProjectItemLinked.MaterialGroup AS MaterialGroup
FROM R_SourcingProjectItemLinkageTP
;