I_SrcgProjNegotiationType

DDL: I_SRCGPROJNEGOTIATIONTYPE SQL: ISRCPROJNGTNTYPE Type: view BASIC

Type of Sourcing Project Negotiation

I_SrcgProjNegotiationType (Basic)

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

Sourcing Project Negotiation Type · Sourcing & Procurement

I_SrcgProjNegotiationType is a Basic CDS View that provides data about "Type of Sourcing Project Negotiation" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SourcingProjectNegotiationType. It has 2 associations to related views.

SAP Help Documentation

CategoryProduct Sourcing
Purpose
This CDS view retrieves details that define the type of the sourcing project negotiation; for instance, if a negotiation is based on price or quantity. This CDS view provides the data to answer the following business questions: Is this negotiation price-based or quantity-based? What are the possible outcomes of this negotiation? 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 .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description SourcingProjectNegotiationType Sourcing Project Negotiation Type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-SRC-NGN
CapabilitiesData Source for Search, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Provider for Value Help
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves details that define the type of the sourcing project negotiation; for instance, if a negotiation is based on price or quantity.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>Is this negotiation price-based or quantity-based?</p></li> <li><p>What are the possible outcomes of this negotiation? </p></li> </ul> <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 (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (2)

CardinalityTargetAliasCondition
[0..1] sfw_switch_state switch switch.switch_id = 'PROD_SRCG_SPLIT_QUOTATION' and switch.client = $session.client and switch.version = 'A' and switch.state = 'T'
[0..*] I_SrcgProjNegotiationTypeText _Text $projection.SourcingProjectNegotiationType = _Text.SourcingProjectNegotiationType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISRCPROJNGTNTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Type of Sourcing Project Negotiation view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey SourcingProjectNegotiationType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #NONE view
ObjectModel.sapObjectNodeType.name SourcingProjectNegotiationType view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectNegotiationType Type of Negotiation
_Text _Text

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_SrcgProjNegotiationType.
-- 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: ISRCPROJNGTNTYPE

CREATE VIEW I_SrcgProjNegotiationType AS
SELECT
  cast ( domvalue_l as vdm_srcgprojngntype ) AS SourcingProjectNegotiationType
FROM dd07l
LEFT OUTER JOIN sfw_switch_state AS switch ON switch.switch_id = 'PROD_SRCG_SPLIT_QUOTATION' AND switch.client = $session.client AND switch.version = 'A' AND switch.state = 'T'  -- association [0..1]
LEFT OUTER JOIN I_SrcgProjNegotiationTypeText AS _Text ON SourcingProjectNegotiationType = _Text.SourcingProjectNegotiationType  -- association [0..*]
;