A_ACMPurOrderContractCallOff

DDL: A_ACMPURORDERCONTRACTCALLOFF Type: view_entity CONSUMPTION

Purchase Order Contract Call Off

A_ACMPurOrderContractCallOff is a Consumption CDS View that provides data about "Purchase Order Contract Call Off" in SAP S/4HANA. It reads from 1 data source (R_ACMPurOrderContractCallOffTP) and exposes 18 fields with key fields PurchaseOrder, PurchaseOrderItem, TradingContractNumber, TradingContractItem.

Data Sources (1)

SourceAliasJoin Type
R_ACMPurOrderContractCallOffTP R_ACMPurOrderContractCallOffTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name ACMPurchaseContractCalloff_Type view
EndUserText.label Purchase Order Contract Call Off 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
AccessControl.authorizationCheck #CHECK view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
TradingContractExternalID TradingContractExternalID
ACMLoadLocation ACMLoadLocation
ACMDischargeLocation ACMDischargeLocation
ModeOfTransport ModeOfTransport Mode of Transp.
ACMContrOptionsMnsOfTransport ACMContrOptionsMnsOfTransport
quan133
ACMCallOffRawQuantity ACMCallOffRawQuantity
ACMCallOffQuantityUoM ACMCallOffQuantityUoM
quan133
ACMCallOffBaseRawQuantity ACMCallOffBaseRawQuantity
ACMCallOffBaseQuantityUoM ACMCallOffBaseQuantityUoM
ACMReferenceDocumentType ACMReferenceDocumentType
ScheduledBatchStartDateTime ScheduledBatchStartDateTime
ScheduledBatchEndDateTime ScheduledBatchEndDateTime

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_ACMPurOrderContractCallOff.
-- 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_ACMPurOrderContractCallOff AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem,
  TradingContractNumber,
  TradingContractItem,
  TradingContractExternalID,
  ACMLoadLocation,
  ACMDischargeLocation,
  ModeOfTransport,
  ACMContrOptionsMnsOfTransport,
  virtual ACMCallOffQuantity : abap.quan( 13, 3 ) AS quan133,
  ACMCallOffRawQuantity,
  ACMCallOffQuantityUoM,
  ACMCallOffBaseRawQuantity,
  ACMCallOffBaseQuantityUoM,
  ACMReferenceDocumentType,
  ScheduledBatchStartDateTime,
  ScheduledBatchEndDateTime
FROM R_ACMPurOrderContractCallOffTP
;