C_CntrlReqForQuotationBidderTP
Consumption view for central RFQ bidder
C_CntrlReqForQuotationBidderTP is a Consumption CDS View that provides data about "Consumption view for central RFQ bidder" in SAP S/4HANA. It reads from 1 data source (I_CntrlReqForQuotationBidderTP) and exposes 14 fields with key fields PartnerFunction, PartnerCounter, CentralRequestForQuotation. It has 4 associations to related views. Part of development package ODATA_MM_PUR_CRFQ_MAINTAIN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CntrlReqForQuotationBidderTP | I_CntrlReqForQuotationBidderTP | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | C_CentralRequestForQuotationTP | _CentralRequestForQuotationTP | _CentralRequestForQuotationTP.CentralRequestForQuotation = $projection.CentralRequestForQuotation |
| [0..1] | C_BidderValueHelp | _BidderValueHelp | _BidderValueHelp.Supplier = $projection.Supplier and _BidderValueHelp.PurchasingOrganization = $projection.purchasingorganization |
| [0..1] | C_BidderContactCard | _Bidder | _Bidder.Supplier = $projection.Supplier |
| [0..1] | I_PurchasingOrganization | _PurchasingOrganization | _PurchasingOrganization.PurchasingOrganization = $projection.purchasingorganization |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Consumption view for central RFQ bidder | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| AbapCatalog.sqlViewName | CCNTRLRFQBIDTP | view | |
| ObjectModel.semanticKey | Supplier | view | |
| ObjectModel.transactionalProcessingDelegated | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| UI.headerInfo.typeName | Bidder | view | |
| UI.headerInfo.typeNamePlural | Bidders | view | |
| UI.headerInfo.typeImageUrl | /sap/bc/ui5_ui5/sap/mm_rfq_mains1/images1/RequestForQuotation.png | view | |
| UI.headerInfo.title.value | _BidderValueHelp.SupplierName | view | |
| UI.headerInfo.description.value | Supplier | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PartnerFunction | I_CntrlReqForQuotationBidderTP | PartnerFunction | Partner Functn |
| KEY | PartnerCounter | I_CntrlReqForQuotationBidderTP | PartnerCounter | Partner counter |
| KEY | CentralRequestForQuotation | I_CntrlReqForQuotationBidderTP | CentralRequestForQuotation | |
| Supplier | I_CntrlReqForQuotationBidderTP | Supplier | Supplier | |
| SupplierName | _Bidder | SupplierName | Supplier Name | |
| HasNoSupplierQuotation | ||||
| PurchasingOrganization | _CentralRequestForQuotationTP | PurchasingOrganization | Purchasing Organization | |
| QuotationLatestSubmissionDate | QuotationLatestSubmissionDate | Quot. Deadline | ||
| RFQLifecycleStatus | I_CntrlReqForQuotationBidderTP | RFQLifecycleStatus | Status | |
| _CentralRequestForQuotationTP | _CentralRequestForQuotationTP | |||
| _PartnerFunction | I_CntrlReqForQuotationBidderTP | _PartnerFunction | ||
| _Bidder | _Bidder | |||
| _BidderValueHelp | _BidderValueHelp | |||
| _PurchasingOrganization | _PurchasingOrganization |
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 C_CntrlReqForQuotationBidderTP.
-- 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: CCNTRLRFQBIDTP
CREATE VIEW C_CntrlReqForQuotationBidderTP AS
SELECT
I_CntrlReqForQuotationBidderTP.PartnerFunction AS PartnerFunction,
I_CntrlReqForQuotationBidderTP.PartnerCounter AS PartnerCounter,
I_CntrlReqForQuotationBidderTP.CentralRequestForQuotation AS CentralRequestForQuotation,
I_CntrlReqForQuotationBidderTP.Supplier AS Supplier,
_Bidder.SupplierName AS SupplierName,
cast ('' as boolean) AS HasNoSupplierQuotation,
_CentralRequestForQuotationTP.PurchasingOrganization AS PurchasingOrganization,
QuotationLatestSubmissionDate,
I_CntrlReqForQuotationBidderTP.RFQLifecycleStatus AS RFQLifecycleStatus,
I_CntrlReqForQuotationBidderTP._PartnerFunction AS _PartnerFunction
FROM I_CntrlReqForQuotationBidderTP
LEFT OUTER JOIN C_CentralRequestForQuotationTP AS _CentralRequestForQuotationTP ON _CentralRequestForQuotationTP.CentralRequestForQuotation = CentralRequestForQuotation -- association [1..1]
LEFT OUTER JOIN C_BidderValueHelp AS _BidderValueHelp ON _BidderValueHelp.Supplier = Supplier AND _BidderValueHelp.PurchasingOrganization = purchasingorganization -- association [0..1]
LEFT OUTER JOIN C_BidderContactCard AS _Bidder ON _Bidder.Supplier = Supplier -- association [0..1]
LEFT OUTER JOIN I_PurchasingOrganization AS _PurchasingOrganization ON _PurchasingOrganization.PurchasingOrganization = purchasingorganization -- 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