R_SrcgProjContributionForUser

DDL: R_SRCGPROJCONTRIBUTIONFORUSER Type: view_entity COMPOSITE

Sourcing Project

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Sourcing Project view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey SourcingProjectUUID view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectUUID Contact SourcingProjectUUID Sourcing Project UUID
UserID Contact UserID User Name
BusinessPartnerUUID Contact BusinessPartnerUUID UUID
SourcingProjectType SP SourcingProjectType Sourcing Project Type
CompanyCode SP CompanyCode Receiver Company Code
PurchasingGroup SP PurchasingGroup Purchasing Group
PurchasingOrganization SP PurchasingOrganization Purchasing Organization
MaterialGroup SP MaterialGroup Product Group
PurchasingCategory SP 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_SrcgProjContributionForUser.
-- 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_SrcgProjContributionForUser AS
SELECT
  Contact.SourcingProjectUUID AS SourcingProjectUUID,
  Contact.UserID AS UserID,
  Contact.BusinessPartnerUUID AS BusinessPartnerUUID,
  SP.SourcingProjectType AS SourcingProjectType,
  SP.CompanyCode AS CompanyCode,
  SP.PurchasingGroup AS PurchasingGroup,
  SP.PurchasingOrganization AS PurchasingOrganization,
  SP.MaterialGroup AS MaterialGroup,
  SP.PurchasingCategory AS PurchasingCategory
;