A_ACMTrdgContrItmFeeDets

DDL: A_ACMTRDGCONTRITMFEEDETS Type: view_entity CONSUMPTION

Item Fee

A_ACMTrdgContrItmFeeDets is a Consumption CDS View that provides data about "Item Fee" in SAP S/4HANA. It reads from 1 data source (R_ACMTrdgContrItmFeeDetsTP) and exposes 18 fields with key fields TradingContractNumber, TradingContractItem, ACMFeeFrameworkRefDocYear, FeeSequenceNumber, FeeFrameworkFeeID.

Data Sources (1)

SourceAliasJoin Type
R_ACMTrdgContrItmFeeDetsTP R_ACMTrdgContrItmFeeDetsTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name TradingContractItemFees_Type 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 Item Fee view
AccessControl.authorizationCheck #CHECK view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
KEY ACMFeeFrameworkRefDocYear ACMFeeFrameworkRefDocYear
KEY FeeSequenceNumber FeeSequenceNumber
KEY FeeFrameworkFeeID FeeFrameworkFeeID
KEY FeeVersion FeeVersion
ACMFeeFrameworkDocTypeRef ACMFeeFrameworkDocTypeRef
ACMFeeFrameworkRefDocSubItem ACMFeeFrameworkRefDocSubItem
ACMFeeValidStatus ACMFeeValidStatus
ACMFeeIsObsolete ACMFeeIsObsolete
FeeFrameworkFeeName FeeFrameworkFeeName
ACMFeeType ACMFeeType
ACMFeeAmount ACMFeeAmount
ACMFeeCurrency ACMFeeCurrency
ACMFeeQuantity ACMFeeQuantity
ACMFeeUoM ACMFeeUoM
char1333
char1333

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_ACMTrdgContrItmFeeDets.
-- 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_ACMTrdgContrItmFeeDets AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  ACMFeeFrameworkRefDocYear,
  FeeSequenceNumber,
  FeeFrameworkFeeID,
  FeeVersion,
  ACMFeeFrameworkDocTypeRef,
  ACMFeeFrameworkRefDocSubItem,
  ACMFeeValidStatus,
  ACMFeeIsObsolete,
  FeeFrameworkFeeName,
  ACMFeeType,
  ACMFeeAmount,
  ACMFeeCurrency,
  ACMFeeQuantity,
  ACMFeeUoM,
  virtual ACMTrdgContrFeeNoteExtTxt : abap.char(1333) AS char1333
FROM R_ACMTrdgContrItmFeeDetsTP
;