R_SourcingProjectValueHelp

DDL: R_SOURCINGPROJECTVALUEHELP Type: view_entity BASIC

Sourcing Project

R_SourcingProjectValueHelp 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 12 fields with key field SourcingProjectUUID.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProject R_SourcingProject from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
ObjectModel.representativeKey SourcingProjectUUID view
ObjectModel.dataCategory #VALUE_HELP 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
Consumption.ranked true view
EndUserText.label Sourcing Project view

Fields (12)

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

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_SourcingProjectValueHelp.
-- 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_SourcingProjectValueHelp AS
SELECT
  SourcingProjectUUID,
  SourcingProject,
  SourcingProjectVersion,
  SourcingProjectName,
  PurchasingGroup,
  PurchasingCategory,
  MaterialGroup,
  PurchasingOrganization,
  CompanyCode,
  SourcingProjectType,
  SrcgProjPurgCategoryIsUsed
FROM R_SourcingProject
;