I_SupDmndAllDocConfirmations
View for Supplier Confirmations
I_SupDmndAllDocConfirmations is a Composite CDS View that provides data about "View for Supplier Confirmations" in SAP S/4HANA. It reads from 2 data sources (P_ARunAssgmtSup, I_SupDmndAllDocConfBsc) and exposes 31 fields. Part of development package VDM_ARUN_ANALYTICS_ALL.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_ARunAssgmtSup | Assgmt | left_outer |
| I_SupDmndAllDocConfBsc | Conf | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISUPDMNDADCONF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| EndUserText.label | View for Supplier Confirmations | view |
Fields (31)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| SupplyNumber | I_SupDmndAllDocConfBsc | SupplyNumber | ||
| SupplyItem | I_SupDmndAllDocConfBsc | SupplyItem | ||
| SupplyScheduleLine | I_SupDmndAllDocConfBsc | SupplyScheduleLine | ||
| AssignedSupplyType | I_SupDmndAllDocConfBsc | AssignedSupplyType | ||
| SupAssgmtSource | I_SupDmndAllDocConfBsc | SupAssgmtSource | ||
| SupplyDeliveryDate | I_SupDmndAllDocConfBsc | SupplyDeliveryDate | Delivery Date | |
| ProductAvailabilityDate | I_SupDmndAllDocConfBsc | ProductAvailabilityDate | Mat.Avail.Date | |
| TotalQuantity | I_SupDmndAllDocConfBsc | TotalQuantity | Activity Quantity | |
| OpenSupplyQuantity | ||||
| AssignedQuantityInBaseUnit | P_ARunAssgmtSup | AssignedQuantityInBaseUnit | ||
| NormalAssignedQuantityInBsUnt | P_ARunAssgmtSup | NormalAssignedQuantityInBsUnt | ||
| PreviewAssignedQuantityInBsUnt | P_ARunAssgmtSup | PreviewAssignedQuantityInBsUnt | ||
| BaseUnit | I_SupDmndAllDocConfBsc | BaseUnit | Unit of Measure | |
| Material | I_SupDmndAllDocConfBsc | Material | Vehicle Model | |
| MaterialGroup | I_SupDmndAllDocConfBsc | MaterialGroup | Product Group | |
| Plant | I_SupDmndAllDocConfBsc | Plant | Valuation Area | |
| CrossPlantConfigurableProduct | I_SupDmndAllDocConfBsc | CrossPlantConfigurableProduct | Cross-plant CP | |
| OrderType | I_SupDmndAllDocConfBsc | OrderType | Order Type | |
| PurchasingOrganization | I_SupDmndAllDocConfBsc | PurchasingOrganization | Purchasing Organization | |
| PurchasingGroup | I_SupDmndAllDocConfBsc | PurchasingGroup | Purchasing Group | |
| Batch | I_SupDmndAllDocConfBsc | Batch | Lot No. | |
| StorageLocation | I_SupDmndAllDocConfBsc | StorageLocation | StorageLocation | |
| Customer | I_SupDmndAllDocConfBsc | Customer | Sold-to Party | |
| CompanyCode | I_SupDmndAllDocConfBsc | CompanyCode | Receiver Company Code | |
| Supplier | I_SupDmndAllDocConfBsc | Supplier | Supplier | |
| SalesOrder | I_SupDmndAllDocConfBsc | SalesOrder | SD Document | |
| SalesOrderItem | I_SupDmndAllDocConfBsc | SalesOrderItem | Sales Order Item | |
| PurgReleaseSequenceStatus | I_SupDmndAllDocConfBsc | PurgReleaseSequenceStatus | Release State | |
| StockSegment | I_SupDmndAllDocConfBsc | StockSegment | Stock Segment | |
| GoodsReceiptDurationInDays | I_SupDmndAllDocConfBsc | GoodsReceiptDurationInDays | GR proc. time | |
| MRPArea | I_SupDmndAllDocConfBsc | MRPArea | MRP Area |
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_SupDmndAllDocConfirmations.
-- 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.
CREATE VIEW I_SupDmndAllDocConfirmations AS
SELECT
Conf.SupplyNumber AS SupplyNumber,
Conf.SupplyItem AS SupplyItem,
Conf.SupplyScheduleLine AS SupplyScheduleLine,
Conf.AssignedSupplyType AS AssignedSupplyType,
Conf.SupAssgmtSource AS SupAssgmtSource,
Conf.SupplyDeliveryDate AS SupplyDeliveryDate,
Conf.ProductAvailabilityDate AS ProductAvailabilityDate,
Conf.TotalQuantity AS TotalQuantity,
( Conf.OpenSupplyQuantity - coalesce( Assgmt.AssignedQuantityInBaseUnit, 0 ) ) AS OpenSupplyQuantity,
Assgmt.AssignedQuantityInBaseUnit AS AssignedQuantityInBaseUnit,
Assgmt.NormalAssignedQuantityInBsUnt AS NormalAssignedQuantityInBsUnt,
Assgmt.PreviewAssignedQuantityInBsUnt AS PreviewAssignedQuantityInBsUnt,
Conf.BaseUnit AS BaseUnit,
Conf.Material AS Material,
Conf.MaterialGroup AS MaterialGroup,
Conf.Plant AS Plant,
Conf.CrossPlantConfigurableProduct AS CrossPlantConfigurableProduct,
Conf.OrderType AS OrderType,
Conf.PurchasingOrganization AS PurchasingOrganization,
Conf.PurchasingGroup AS PurchasingGroup,
Conf.Batch AS Batch,
Conf.StorageLocation AS StorageLocation,
Conf.Customer AS Customer,
Conf.CompanyCode AS CompanyCode,
Conf.Supplier AS Supplier,
Conf.SalesOrder AS SalesOrder,
Conf.SalesOrderItem AS SalesOrderItem,
Conf.PurgReleaseSequenceStatus AS PurgReleaseSequenceStatus,
Conf.StockSegment AS StockSegment,
Conf.GoodsReceiptDurationInDays AS GoodsReceiptDurationInDays,
Conf.MRPArea AS MRPArea
FROM I_SupDmndAllDocConfBsc AS Conf
LEFT OUTER JOIN P_ARunAssgmtSup AS Assgmt ON /* join condition not captured in parsed metadata */
;
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