A_ACMPurOrdDeliveryAssignment

DDL: A_ACMPURORDDELIVERYASSIGNMENT Type: view_entity CONSUMPTION

ACM Purchase Order Delivery Assignment

A_ACMPurOrdDeliveryAssignment is a Consumption CDS View that provides data about "ACM Purchase Order Delivery Assignment" in SAP S/4HANA. It reads from 1 data source (R_ACMPurOrdDelivAssignmentTP) and exposes 10 fields with key fields PurchaseOrder, PurchaseOrderItem, LoadDataCaptureObjId.

Data Sources (1)

SourceAliasJoin Type
R_ACMPurOrdDelivAssignmentTP R_ACMPurOrdDelivAssignmentTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name ACMPurOrdDelivAssgt_Type view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label ACM Purchase Order Delivery Assignment view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
KEY LoadDataCaptureObjId LoadDataCaptureObjId
LoadDataCaptureApplInstruction LoadDataCaptureApplInstruction
ACMDeliveredQuantity ACMDeliveredQuantity
ACMDeliveredUoM ACMDeliveredUoM
ACMOverFillTotalQuantity ACMOverFillTotalQuantity
ACMUnderFillTotalQuantity ACMUnderFillTotalQuantity
ACMReferenceDocument2 ACMReferenceDocument2
ACMDeliveredAdjustedQuantity ACMDeliveredAdjustedQuantity

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 A_ACMPurOrdDeliveryAssignment.
-- 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 A_ACMPurOrdDeliveryAssignment AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem,
  LoadDataCaptureObjId,
  LoadDataCaptureApplInstruction,
  ACMDeliveredQuantity,
  ACMDeliveredUoM,
  ACMOverFillTotalQuantity,
  ACMUnderFillTotalQuantity,
  ACMReferenceDocument2,
  ACMDeliveredAdjustedQuantity
FROM R_ACMPurOrdDelivAssignmentTP
;