A_ACMContrItmFeeDetTP

DDL: A_ACMCONTRITMFEEDETTP Type: view_entity CONSUMPTION

Transaction Processing View: Fee Details

A_ACMContrItmFeeDetTP is a Consumption CDS View that provides data about "Transaction Processing View: Fee Details" in SAP S/4HANA. It reads from 1 data source (R_ACMContrItmFeeDetTP) and exposes 17 fields with key fields TradingContractNumber, TradingContractItem, ACMFeeFrameworkRefDocYear, FeeSequenceNumber, FeeFrameworkFeeID.

Data Sources (1)

SourceAliasJoin Type
R_ACMContrItmFeeDetTP R_ACMContrItmFeeDetTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Transaction Processing View: Fee Details view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name FeeDetails_Type view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (17)

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
quan133
ACMFeeQuantity ACMFeeQuantity
ACMFeeUoM ACMFeeUoM

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_ACMContrItmFeeDetTP.
-- 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_ACMContrItmFeeDetTP AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  ACMFeeFrameworkRefDocYear,
  FeeSequenceNumber,
  FeeFrameworkFeeID,
  FeeVersion,
  ACMFeeFrameworkDocTypeRef,
  ACMFeeFrameworkRefDocSubItem,
  ACMFeeValidStatus,
  ACMFeeIsObsolete,
  FeeFrameworkFeeName,
  ACMFeeType,
  ACMFeeAmount,
  ACMFeeCurrency,
  virtual ACMContractFeeQuantity : abap.quan( 13, 3 ) AS quan133,
  ACMFeeQuantity,
  ACMFeeUoM
FROM R_ACMContrItmFeeDetTP
;