A_ACMSalesOrderContractCallOff

DDL: A_ACMSALESORDERCONTRACTCALLOFF Type: view_entity CONSUMPTION

Sales contract calloff Projection view

A_ACMSalesOrderContractCallOff is a Consumption CDS View that provides data about "Sales contract calloff Projection view" in SAP S/4HANA. It reads from 1 data source (R_ACMSalesOrdContractCallOffTP) and exposes 18 fields with key fields SalesOrder, SalesOrderItem, TradingContractNumber, TradingContractItem.

Data Sources (1)

SourceAliasJoin Type
R_ACMSalesOrdContractCallOffTP R_ACMSalesOrdContractCallOffTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name ACMSalesContractCalloff_Type view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Sales contract calloff Projection view view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder SalesOrder SD Document
KEY SalesOrderItem SalesOrderItem Sales Order 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_ACMSalesOrderContractCallOff.
-- 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_ACMSalesOrderContractCallOff AS
SELECT
  SalesOrder,
  SalesOrderItem,
  TradingContractNumber,
  TradingContractItem,
  TradingContractExternalID,
  ACMLoadLocation,
  ACMDischargeLocation,
  ModeOfTransport,
  ACMContrOptionsMnsOfTransport,
  virtual ACMCallOffQuantity : abap.quan( 13, 3 ) AS quan133,
  ACMCallOffRawQuantity,
  ACMCallOffQuantityUoM,
  ACMCallOffBaseRawQuantity,
  ACMCallOffBaseQuantityUoM,
  ACMReferenceDocumentType,
  ScheduledBatchStartDateTime,
  ScheduledBatchEndDateTime
FROM R_ACMSalesOrdContractCallOffTP
;