C_CntrlReqForQuotationBidderTP

DDL: C_CNTRLREQFORQUOTATIONBIDDERTP SQL: CCNTRLRFQBIDTP Type: view CONSUMPTION Package: ODATA_MM_PUR_CRFQ_MAINTAIN

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)

SourceAliasJoin Type
I_CntrlReqForQuotationBidderTP I_CntrlReqForQuotationBidderTP from

Associations (4)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]
;