R_SrcgProjQtnContrbnForUser

DDL: R_SRCGPROJQTNCONTRBNFORUSER Type: view_entity COMPOSITE

Quotation for Sourcing Project

R_SrcgProjQtnContrbnForUser is a Composite CDS View that provides data about "Quotation for Sourcing Project" in SAP S/4HANA.

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Quotation for Sourcing Project view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey SourcingProjectQuotationUUID view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectQuotationUUID Qtn SourcingProjectQuotationUUID Supplier Quotation UUID
SourcingProjectUUID Qtn SourcingProjectUUID Sourcing Project UUID
UserID Contact UserID User Name
BusinessPartnerUUID Contact BusinessPartnerUUID UUID
SourcingProjectQuotationType Qtn SourcingProjectQuotationType Sourcing Project Quotation Type
CompanyCode Qtn CompanyCode Receiver Company Code
PurchasingGroup Qtn PurchasingGroup Purchasing Group
PurchasingOrganization Qtn PurchasingOrganization Purchasing Organization
MaterialGroup Qtn MaterialGroup Product Group
PurchasingCategory Qtn PurchasingCategory Purchasing Category

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_SrcgProjQtnContrbnForUser.
-- 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_SrcgProjQtnContrbnForUser AS
SELECT
  Qtn.SourcingProjectQuotationUUID AS SourcingProjectQuotationUUID,
  Qtn.SourcingProjectUUID AS SourcingProjectUUID,
  Contact.UserID AS UserID,
  Contact.BusinessPartnerUUID AS BusinessPartnerUUID,
  Qtn.SourcingProjectQuotationType AS SourcingProjectQuotationType,
  Qtn.CompanyCode AS CompanyCode,
  Qtn.PurchasingGroup AS PurchasingGroup,
  Qtn.PurchasingOrganization AS PurchasingOrganization,
  Qtn.MaterialGroup AS MaterialGroup,
  Qtn.PurchasingCategory AS PurchasingCategory
;