Deprecated
This CDS view is deprecated in S/4HANA. Use I_ProductSourcingReason instead. View all deprecated CDS views →

I_SrcgProjCancellationRsn

DDL: I_SRCGPROJCANCELLATIONRSN Type: view_entity BASIC

Sourcing Project Cancellation Reason

I_SrcgProjCancellationRsn (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_SrcgProjCancellationRsn is a Basic CDS View that provides data about "Sourcing Project Cancellation Reason" in SAP S/4HANA. It reads from 3 data sources (I_ProductSourcingReasonModel, I_SourcingProjectType, I_ProductSourcingReason) and exposes 4 fields with key field SrcgProjCancellationRsn. It has 1 association to related views.

SAP API Hub

StateDeprecated
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-SRC-SP
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves the types of reasons for cancelling a sourcing project.</p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (3)

SourceAliasJoin Type
I_ProductSourcingReasonModel _SourcingProjectReasonModel inner
I_SourcingProjectType _SourcingProjectType inner
I_ProductSourcingReason I_ProductSourcingReason from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SrcgProjCancellationRsnText _SrcgProjCancellationRsnText

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Analytics.technicalName ISPCNCLRSN view
ObjectModel.representativeKey SrcgProjCancellationRsn view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #NONE view
VDM.lifecycle.successor I_ProductSourcingReason view
VDM.lifecycle.status #DEPRECATED view
VDM.viewType #BASIC view
EndUserText.label Sourcing Project Cancellation Reason view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjCancellationRsn I_ProductSourcingReason ProductSourcingReason Reason for New Version of Sourcing Project
ProductSourcingReasonGroup I_ProductSourcingReasonModel ProductSourcingReasonGroup Reason Group used in Sourcing Project
SourcingProjectType I_SourcingProjectType SourcingProjectType Sourcing Project Type
_SrcgProjCancellationRsnText _SrcgProjCancellationRsnText

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 I_SrcgProjCancellationRsn.
-- 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 I_SrcgProjCancellationRsn AS
SELECT
  I_ProductSourcingReason.ProductSourcingReason AS SrcgProjCancellationRsn,
  _SourcingProjectReasonModel.ProductSourcingReasonGroup AS ProductSourcingReasonGroup,
  _SourcingProjectType.SourcingProjectType AS SourcingProjectType
FROM I_ProductSourcingReason
INNER JOIN I_ProductSourcingReasonModel AS _SourcingProjectReasonModel ON /* join condition not captured in parsed metadata */
INNER JOIN I_SourcingProjectType AS _SourcingProjectType ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_SrcgProjCancellationRsnText AS _SrcgProjCancellationRsnText ON /* condition not available in parsed metadata */  -- association [0..*]
;