P_SourcingProjectAnalytics

DDL: P_SOURCINGPROJECTANALYTICS SQL: PSRCGPROJANA Type: view COMPOSITE

Sourcing Project Base view for Analytics

P_SourcingProjectAnalytics is a Composite CDS View that provides data about "Sourcing Project Base view for Analytics" in SAP S/4HANA. It reads from 1 data source (I_SourcingProject) and exposes 31 fields with key field SourcingProjectUUID.

Data Sources (1)

SourceAliasJoin Type
I_SourcingProject I_SourcingProject from

Parameters (2)

NameTypeDefault
P_StartDate vdm_srcgprojcreationdate
P_EndDate vdm_srcgprojcreationdate

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSRCGPROJANA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
EndUserText.label Sourcing Project Base view for Analytics view

Fields (31)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingProject SourcingProject Sourcing Project
SourcingProjectVersion SourcingProjectVersion Sourcing Project Version
SourcingProjectType SourcingProjectType Sourcing Project Type
SourcingProjectName SourcingProjectName Name
SrcgProjLifecycleStatus SrcgProjLifecycleStatus Status
SrcgProjApprovalStatus SrcgProjApprovalStatus Approval Status
SourcingProjectPhase SourcingProjectPhase Phase
SrcgProjRevisionSts SrcgProjRevisionSts Revision Status
SrcgProjActvtnSts SrcgProjActvtnSts Activation Status
SrcgProjPubgSts SrcgProjPubgSts Publishing Status
CompanyCode CompanyCode Receiver Company Code
CreationDateTime CreationDateTime Timestamp
PurchasingGroup PurchasingGroup Purchasing Group
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchaserRespWorkAgreement PurchaserRespWorkAgreement Purchaser Responsible
MaterialGroup MaterialGroup Product Group
DocumentCurrency DocumentCurrency Document Currency
SrcgProjTotalTargetAmount SrcgProjTotalTargetAmount Total Target Amount
QtnLatestSubmissionDateTime QtnLatestSubmissionDateTime Submission Deadline
NetPaymentDays NetPaymentDays Net Pmt Terms Period
SrcgProjPubgDteTme SrcgProjPubgDteTme Published On
SrcgProjAttchsAreForbidden SrcgProjAttchsAreForbidden Forbid Attachments
SrcgProjNotesAreForbidden SrcgProjNotesAreForbidden Forbid Notes
SrcgProjFollowOnDocumentCat SrcgProjFollowOnDocumentCat Follow-On Document Category
SrcgProjFollowOnDocumentType SrcgProjFollowOnDocumentType Follow-On Document Type
PurContrValidityStartDate PurContrValidityStartDate Validity Start
PurContrValidityEndDate PurContrValidityEndDate Validity End
ExchangeRateType ExchangeRateType Exch. Rate Type
ExternalSourcingProjectRef ExternalSourcingProjectRef External Reference
LogicalSystem LogicalSystem Logical System

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 P_SourcingProjectAnalytics.
-- 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.
-- SQL view name: PSRCGPROJANA
-- Parameters: P_StartDate : vdm_srcgprojcreationdate, P_EndDate : vdm_srcgprojcreationdate

CREATE VIEW P_SourcingProjectAnalytics AS
SELECT
  SourcingProjectUUID,
  SourcingProject,
  SourcingProjectVersion,
  SourcingProjectType,
  SourcingProjectName,
  SrcgProjLifecycleStatus,
  SrcgProjApprovalStatus,
  SourcingProjectPhase,
  SrcgProjRevisionSts,
  SrcgProjActvtnSts,
  SrcgProjPubgSts,
  CompanyCode,
  CreationDateTime,
  PurchasingGroup,
  PurchasingOrganization,
  PurchaserRespWorkAgreement,
  MaterialGroup,
  DocumentCurrency,
  SrcgProjTotalTargetAmount,
  QtnLatestSubmissionDateTime,
  NetPaymentDays,
  SrcgProjPubgDteTme,
  SrcgProjAttchsAreForbidden,
  SrcgProjNotesAreForbidden,
  SrcgProjFollowOnDocumentCat,
  SrcgProjFollowOnDocumentType,
  PurContrValidityStartDate,
  PurContrValidityEndDate,
  ExchangeRateType,
  ExternalSourcingProjectRef,
  LogicalSystem
FROM I_SourcingProject
;