I_RFQBidderEnhWD

DDL: I_RFQBIDDERENHWD SQL: IMMRFQBIDDE000WD Type: view TRANSACTIONAL Package: APPL_MM_PUR_RFQ_SD

Request For Quotation Bidder Enhanced

I_RFQBidderEnhWD is a Transactional CDS View that provides data about "Request For Quotation Bidder Enhanced" in SAP S/4HANA. It reads from 1 data source (I_RFQBidderEnhanced) and exposes 7 fields with key fields PartnerFunction, PartnerCounter, RequestForQuotation. It has 1 association to related views. Part of development package APPL_MM_PUR_RFQ_SD.

Data Sources (1)

SourceAliasJoin Type
I_RFQBidderEnhanced Document from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_RequestForQuotationEnhWD _RequestForQuotationEnhWD _RequestForQuotationEnhWD.RequestForQuotation = $projection.RequestForQuotation

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IMMRFQBIDDE000WD view
EndUserText.label Request For Quotation Bidder Enhanced view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled EXTERNAL_CALCULATION view
ObjectModel.updateEnabled EXTERNAL_CALCULATION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.writeDraftPersistence MMRFQBIDDERENH_D view
ObjectModel.writeActivePersistence IMMRFQBIDDE000WD view
ObjectModel.draftEnabled true view
VDM.viewType #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction
KEY PartnerCounter I_RFQBidderEnhanced PartnerCounter Partner counter
KEY RequestForQuotation I_RFQBidderEnhanced RequestForQuotation RFQ
Supplier I_RFQBidderEnhanced Supplier Supplier
RFQLifecycleStatus _RequestForQuotationEnhWD RFQLifecycleStatus Status
_RequestForQuotationEnhWD _RequestForQuotationEnhWD
_PartnerFunction _PartnerFunction

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_RFQBidderEnhWD.
-- 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: IMMRFQBIDDE000WD

CREATE VIEW I_RFQBidderEnhWD AS
SELECT
  cast( Document.PartnerFunction as parvw preserving type ) AS PartnerFunction,
  Document.PartnerCounter AS PartnerCounter,
  Document.RequestForQuotation AS RequestForQuotation,
  Document.Supplier AS Supplier,
  _RequestForQuotationEnhWD.RFQLifecycleStatus AS RFQLifecycleStatus
FROM I_RFQBidderEnhanced AS Document
LEFT OUTER JOIN I_RequestForQuotationEnhWD AS _RequestForQuotationEnhWD ON _RequestForQuotationEnhWD.RequestForQuotation = RequestForQuotation  -- association [1..1]
;