I_RFQItemDraftForManagePurReqn

DDL: I_RFQITEMDRAFTFORMANAGEPURREQN SQL: IRFQDRFTITMPR Type: view BASIC Package: VDM_MM_PUR_PR

I-View to Display RFQ Item Draft Data Created from PR

I_RFQItemDraftForManagePurReqn is a Basic CDS View that provides data about "I-View to Display RFQ Item Draft Data Created from PR" in SAP S/4HANA. It reads from 1 data source (mmrfqitemenh_d) and exposes 16 fields with key field RFQItemDraftUUID. It has 1 association to related views. Part of development package VDM_MM_PUR_PR.

Data Sources (1)

SourceAliasJoin Type
mmrfqitemenh_d mmrfqitemenh_d from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_RFQDraftForManagePurReqn _RFQDraftForManagePurReqn $projection.RFQDraftUUID = _RFQDraftForManagePurReqn.RFQDraftUUID

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IRFQDRFTITMPR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label I-View to Display RFQ Item Draft Data Created from PR view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY RFQItemDraftUUID draftuuid UUID
RFQDraftUUID parentdraftuuid NodeID
RequestForQuotationItem requestforquotationitem RFQ Item
RequestForQuotation requestforquotation RFQ
Plant plant Valuation Area
PurchasingDocumentItemText purchasingdocumentitemtext Short Text
Material material Vehicle Model
MaterialGroup materialgroup Product Group
ScheduleLineDeliveryDate schedulelinedeliverydate Delivery Date
ScheduleLineOrderQuantity schedulelineorderquantity Scheduled Qty
PerformancePeriodStartDate performanceperiodstartdate Start of Performance Period
PerformancePeriodEndDate performanceperiodenddate End of Performance Period
OrderQuantityUnit orderquantityunit Sales Unit
PurchaseRequisition purchaserequisition Requisition
PurchaseRequisitionItem purchaserequisitionitem Requisn. item
_RFQDraftForManagePurReqn _RFQDraftForManagePurReqn

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_RFQItemDraftForManagePurReqn.
-- 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: IRFQDRFTITMPR

CREATE VIEW I_RFQItemDraftForManagePurReqn AS
SELECT
  draftuuid AS RFQItemDraftUUID,
  parentdraftuuid AS RFQDraftUUID,
  RequestForQuotationItem,
  RequestForQuotation,
  Plant,
  PurchasingDocumentItemText,
  Material,
  MaterialGroup,
  ScheduleLineDeliveryDate,
  ScheduleLineOrderQuantity,
  PerformancePeriodStartDate,
  PerformancePeriodEndDate,
  OrderQuantityUnit,
  PurchaseRequisition,
  PurchaseRequisitionItem
FROM mmrfqitemenh_d
LEFT OUTER JOIN I_RFQDraftForManagePurReqn AS _RFQDraftForManagePurReqn ON RFQDraftUUID = _RFQDraftForManagePurReqn.RFQDraftUUID  -- association [1..1]
;