R_SrcgProjNegotiationQuotation
Quotation for Srcg Project Negotiation
R_SrcgProjNegotiationQuotation is a Basic CDS View that provides data about "Quotation for Srcg Project Negotiation" in SAP S/4HANA. It reads from 1 data source (mmsrcgpngnqtn) and exposes 14 fields with key field SrcgProjNegttnQuotationUUID. It has 5 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mmsrcgpngnqtn | mmsrcgpngnqtn | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_SourcingProjectNegotiation | _SourcingProjectNegotiation | $projection.SourcingProjectNegotiationUUID = _SourcingProjectNegotiation.SourcingProjectNegotiationUUID |
| [0..*] | R_SrcgProjNegttnQuotationItem | _SrcgProjNegttnQuotationItem | $projection.SrcgProjNegttnQuotationUUID = _SrcgProjNegttnQuotationItem.SrcgProjNegttnQuotationUUID |
| [1..1] | R_SourcingProjectQuotation | _SourcingProjectQuotation | $projection.SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID |
| [1..1] | R_SourcingProjectQuotation | _SPNegttnRevisedQuotation | $projection.SourcingProjectNegotiationUUID = _SPNegttnRevisedQuotation.SourcingProjectNegotiationUUID and $projection.SourcingProjectQuotation = _SPNegttnRevisedQuotation.SourcingProjectQuotation and _SPNegttnRevisedQuotation.SrcgProjQtnLifecycleStatus <> '04' and _SPNegttnRevisedQuotation.SrcgProjQtnLifecycleStatus <> '10' |
| [0..1] | I_BusinessPartner | _BusinessPartner | $projection.Bidder = _BusinessPartner.BusinessPartner |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Quotation for Srcg Project Negotiation | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| AbapCatalog.sqlViewName | RSRCGNGNQTN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.representativeKey | SrcgProjNegttnQuotationUUID | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SrcgProjNegttnQuotationUUID | srcgprojnegttnquotationuuid | Negotiation Quotation UUID | |
| SourcingProjectNegotiationUUID | sourcingprojectnegotiationuuid | Negotiation UUID | ||
| SourcingProjectQuotationUUID | sourcingprojectquotationuuid | Supplier Quotation UUID | ||
| SourcingProjectQuotation | sourcingprojectquotation | Supplier Quotation | ||
| SrcgProjQuotationVersion | srcgprojquotationversion | Version | ||
| Bidder | bidder | Business Partner | ||
| SrcgProjNegttnTotalTargetAmt | srcgprojnegttntotaltargetamt | Total Negotiation Target Amount | ||
| DocumentCurrency | documentcurrency | Document Currency | ||
| SPQtnForNegttnLtstVersionUUID | _SPNegttnRevisedQuotation | SourcingProjectQuotationUUID | Supplier Quotation UUID | |
| _SourcingProjectNegotiation | _SourcingProjectNegotiation | |||
| _SrcgProjNegttnQuotationItem | _SrcgProjNegttnQuotationItem | |||
| _SourcingProjectQuotation | _SourcingProjectQuotation | |||
| _SPNegttnRevisedQuotation | _SPNegttnRevisedQuotation | |||
| _BusinessPartner | _BusinessPartner |
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_SrcgProjNegotiationQuotation.
-- 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: RSRCGNGNQTN
CREATE VIEW R_SrcgProjNegotiationQuotation AS
SELECT
SrcgProjNegttnQuotationUUID,
SourcingProjectNegotiationUUID,
SourcingProjectQuotationUUID,
SourcingProjectQuotation,
SrcgProjQuotationVersion,
Bidder,
SrcgProjNegttnTotalTargetAmt,
DocumentCurrency,
_SPNegttnRevisedQuotation.SourcingProjectQuotationUUID AS SPQtnForNegttnLtstVersionUUID
FROM mmsrcgpngnqtn
LEFT OUTER JOIN R_SourcingProjectNegotiation AS _SourcingProjectNegotiation ON SourcingProjectNegotiationUUID = _SourcingProjectNegotiation.SourcingProjectNegotiationUUID -- association [1..1]
LEFT OUTER JOIN R_SrcgProjNegttnQuotationItem AS _SrcgProjNegttnQuotationItem ON SrcgProjNegttnQuotationUUID = _SrcgProjNegttnQuotationItem.SrcgProjNegttnQuotationUUID -- association [0..*]
LEFT OUTER JOIN R_SourcingProjectQuotation AS _SourcingProjectQuotation ON SourcingProjectQuotationUUID = _SourcingProjectQuotation.SourcingProjectQuotationUUID -- association [1..1]
LEFT OUTER JOIN R_SourcingProjectQuotation AS _SPNegttnRevisedQuotation ON SourcingProjectNegotiationUUID = _SPNegttnRevisedQuotation.SourcingProjectNegotiationUUID AND SourcingProjectQuotation = _SPNegttnRevisedQuotation.SourcingProjectQuotation AND _SPNegttnRevisedQuotation.SrcgProjQtnLifecycleStatus <> '04' AND _SPNegttnRevisedQuotation.SrcgProjQtnLifecycleStatus <> '10' -- association [1..1]
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON Bidder = _BusinessPartner.BusinessPartner -- association [0..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA