A_ACMContrTolItmInfoTP

DDL: A_ACMCONTRTOLITMINFOTP Type: view_entity CONSUMPTION

Transaction Processing View: Tolerance Item

A_ACMContrTolItmInfoTP is a Consumption CDS View that provides data about "Transaction Processing View: Tolerance Item" in SAP S/4HANA. It reads from 1 data source (R_ACMContrTolItmInfoTP) and exposes 12 fields with key fields TradingContractNumber, TradingContractItem, ACMUnderFillOverFillDirection, ACMTolEvalTabSequenceNumber.

Data Sources (1)

SourceAliasJoin Type
R_ACMContrTolItmInfoTP R_ACMContrTolItmInfoTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Transaction Processing View: Tolerance Item view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ToleranceItemInfo_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 (12)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
KEY ACMUnderFillOverFillDirection ACMUnderFillOverFillDirection
KEY ACMTolEvalTabSequenceNumber ACMTolEvalTabSequenceNumber
ACMTolItemFromPercentageVal ACMTolItemFromPercentageVal
ACMTolItemToPercentageVal ACMTolItemToPercentageVal
UnitOfMeasure UnitOfMeasure Unit Protected Qty
ACMTradingContractTolQuantity ACMTradingContractTolQuantity
TradingContrToleranceLimitVal TradingContrToleranceLimitVal
ACMTolItemPriceApplication ACMTolItemPriceApplication
ACMReplacementPriceType ACMReplacementPriceType
ACMTolItemConsumptionRule ACMTolItemConsumptionRule

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_ACMContrTolItmInfoTP.
-- 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_ACMContrTolItmInfoTP AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  ACMUnderFillOverFillDirection,
  ACMTolEvalTabSequenceNumber,
  ACMTolItemFromPercentageVal,
  ACMTolItemToPercentageVal,
  UnitOfMeasure,
  ACMTradingContractTolQuantity,
  TradingContrToleranceLimitVal,
  ACMTolItemPriceApplication,
  ACMReplacementPriceType,
  ACMTolItemConsumptionRule
FROM R_ACMContrTolItmInfoTP
;