R_SrcgProjDisplayInformation

DDL: R_SRCGPROJDISPLAYINFORMATION Type: view BASIC

Sourcing Project

R_SrcgProjDisplayInformation is a Basic CDS View that provides data about "Sourcing Project" in SAP S/4HANA. It reads from 1 data source (R_SourcingProject) and exposes 10 fields with key field SourcingProjectUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProject R_SourcingProject from

Associations (1)

CardinalityTargetAliasCondition
[0..1] R_SrcgProjContributionForUser _ContributionForUser $projection.SourcingProjectUUID = _ContributionForUser.SourcingProjectUUID

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName RSRCGPROJINF view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SourcingProjectUUID view
ObjectModel.sapObjectNodeType.name SourcingProject view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Sourcing Project view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingProject SourcingProject Sourcing Project
SourcingProjectVersion SourcingProjectVersion Sourcing Project Version
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
CompanyCode CompanyCode Receiver Company Code
SourcingProjectType SourcingProjectType Sourcing Project Type
MaterialGroup MaterialGroup Product Group
PurchasingCategory PurchasingCategory Purchasing Category
_ContributionForUser _ContributionForUser

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_SrcgProjDisplayInformation.
-- 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_SrcgProjDisplayInformation AS
SELECT
  SourcingProjectUUID,
  SourcingProject,
  SourcingProjectVersion,
  PurchasingOrganization,
  PurchasingGroup,
  CompanyCode,
  SourcingProjectType,
  MaterialGroup,
  PurchasingCategory
FROM R_SourcingProject
LEFT OUTER JOIN R_SrcgProjContributionForUser AS _ContributionForUser ON SourcingProjectUUID = _ContributionForUser.SourcingProjectUUID  -- association [0..1]
;