Deprecated
This CDS view is deprecated in S/4HANA. Use C_PurgDocSuplrConfMain instead. View all deprecated CDS views →

C_MntrSuplrConfDeliveryDate

DDL: C_MNTRSUPLRCONFDELIVERYDATE SQL: CSCONFDELIVDATE Type: view CONSUMPTION

Consumption View for Delivery Date VF

C_MntrSuplrConfDeliveryDate is a Consumption CDS View that provides data about "Consumption View for Delivery Date VF" in SAP S/4HANA. It reads from 1 data source (P_SuplrConfDelivDate) and exposes 18 fields with key fields PurchasingDocument, PurchasingDocumentItem, SupplierConfirmationCategory, ScheduleLine. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_SuplrConfDelivDate _SuplrconfItems from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SuplrConfDelivDateDeadlineWk _SuplrConfDelivDateDeadlineWk _SuplrConfDelivDateDeadlineWk.DurationToNextStatusInDays = $projection.DurationToNextStatusInDays
[1..1] I_PurchaseOrder _PurchaseOrder $projection.PurchasingDocument = _PurchaseOrder.PurchaseOrder

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSCONFDELIVDATE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Consumption View for Delivery Date VF view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_PurgDocSuplrConfMain view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
KEY SupplierConfirmationCategory P_SuplrConfDelivDate SupplierConfirmationCategory Confirm. Cat.
KEY ScheduleLine P_SuplrConfDelivDate ScheduleLine Schedule Line
DurationToNextStatusInDays DurationToNextStatusInDays Schedule Deadline ID
DomainText
OrderedQuantity P_SuplrConfDelivDate OrderedQuantity Quantity
CommittedQuantity P_SuplrConfDelivDate BalanceQuantity Balance Quantity
Supplier P_SuplrConfDelivDate Supplier Supplier
_Supplier P_SuplrConfDelivDate _Supplier
NumberOfContractItems PD Items
PurchaseOrderType _PurchaseOrder PurchaseOrderType PO Type
PurchasingOrganization _PurchaseOrder PurchasingOrganization Purchasing Organization
PurchasingGroup _PurchaseOrder PurchasingGroup Purchasing Group
Plant Plant Valuation Area
SupplierAccountGroup SupplierAccountGroup Account group
AuthorizationGroup AuthorizationGroup AuthorizGroup
_SuplrConfDelivDateDeadlineWk _SuplrConfDelivDateDeadlineWk

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_MntrSuplrConfDeliveryDate.
-- 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: CSCONFDELIVDATE

CREATE VIEW C_MntrSuplrConfDeliveryDate AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  _SuplrconfItems.SupplierConfirmationCategory AS SupplierConfirmationCategory,
  _SuplrconfItems.ScheduleLine AS ScheduleLine,
  DurationToNextStatusInDays,
  cast ( _SuplrConfDelivDateDeadlineWk._Text[1: Language = $session.system_language].DomainText as vdm_deliveryscheduledate ) AS DomainText,
  _SuplrconfItems.OrderedQuantity AS OrderedQuantity,
  _SuplrconfItems.BalanceQuantity AS CommittedQuantity,
  _SuplrconfItems.Supplier AS Supplier,
  _SuplrconfItems._Supplier AS _Supplier,
  cast( 1 as mm_a_contractitems ) AS NumberOfContractItems,
  _PurchaseOrder.PurchaseOrderType AS PurchaseOrderType,
  _PurchaseOrder.PurchasingOrganization AS PurchasingOrganization,
  _PurchaseOrder.PurchasingGroup AS PurchasingGroup,
  Plant,
  SupplierAccountGroup,
  AuthorizationGroup
FROM P_SuplrConfDelivDate AS _SuplrconfItems
LEFT OUTER JOIN I_SuplrConfDelivDateDeadlineWk AS _SuplrConfDelivDateDeadlineWk ON _SuplrConfDelivDateDeadlineWk.DurationToNextStatusInDays = DurationToNextStatusInDays  -- association [1..1]
LEFT OUTER JOIN I_PurchaseOrder AS _PurchaseOrder ON PurchasingDocument = _PurchaseOrder.PurchaseOrder  -- association [1..1]
;