R_SPQtnItemProdFprntPlantTP

DDL: R_SPQTNITEMPRODFPRNTPLANTTP Type: view_entity TRANSACTIONAL Package: RAP_MM_PUR_SRCGPROJQTN

Product Footprint Plant in Qtn Itm - TP

R_SPQtnItemProdFprntPlantTP is a Transactional CDS View that provides data about "Product Footprint Plant in Qtn Itm - TP" in SAP S/4HANA. It reads from 1 data source (R_SPQtnItemProdFprntPlant) and exposes 10 fields with key field SPQtnItemProdFprntPlantUUID. It has 2 associations to related views. Part of development package RAP_MM_PUR_SRCGPROJQTN.

Data Sources (1)

SourceAliasJoin Type
R_SPQtnItemProdFprntPlant R_SPQtnItemProdFprntPlant from

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_SourcingProjectQuotationTP _SourcingProjectQuotation $projection.SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID
[1..1] E_SPQtnItemProdFprntPlant _Extension $projection.SPQtnItemProdFprntPlantUUID = _Extension.SPQtnItemProdFprntPlantUUID

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey SPQtnItemProdFprntPlantUUID view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix PFP view
AbapCatalog.extensibility.quota.maximumFields 404 view
AbapCatalog.extensibility.quota.maximumBytes 40400 view
AbapCatalog.extensibility.allowNewCompositions true view
EndUserText.label Product Footprint Plant in Qtn Itm - TP view
Feature SW:PROD_SRCG_PROD_FPRNT view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SPQtnItemProdFprntPlantUUID SPQtnItemProdFprntPlantUUID Product Footprint Plant UUID
SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
SrcgProjQtnItemProdFprntUUID SrcgProjQtnItemProdFprntUUID Product Footprint UUID
Plant Plant Valuation Area
CompanyCode CompanyCode Receiver Company Code
ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
ProcmtHubPlantUniqueID ProcmtHubPlantUniqueID Plant Unique ID
SrcgProjQtnItemUUID _SrcgProjQtnItemProdFprnt SrcgProjQtnItemUUID Supplier Quotation Item UUID
_SrcgProjQtnItemProdFprnt _SrcgProjQtnItemProdFprnt
_SourcingProjectQuotation _SourcingProjectQuotation

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 R_SPQtnItemProdFprntPlantTP.
-- 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 R_SPQtnItemProdFprntPlantTP AS
SELECT
  SPQtnItemProdFprntPlantUUID,
  SourcingProjectQuotationUUID,
  SrcgProjQtnItemProdFprntUUID,
  Plant,
  CompanyCode,
  ProcurementHubSourceSystem,
  ProcmtHubPlantUniqueID,
  _SrcgProjQtnItemProdFprnt.SrcgProjQtnItemUUID AS SrcgProjQtnItemUUID
FROM R_SPQtnItemProdFprntPlant
LEFT OUTER JOIN R_SourcingProjectQuotationTP AS _SourcingProjectQuotation ON SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID  -- association [1..1]
LEFT OUTER JOIN E_SPQtnItemProdFprntPlant AS _Extension ON SPQtnItemProdFprntPlantUUID = _Extension.SPQtnItemProdFprntPlantUUID  -- association [1..1]
;