A_FreightBookingChargeItem

DDL: A_FREIGHTBOOKINGCHARGEITEM Type: view_entity CONSUMPTION

Freight Booking Charge Item

A_FreightBookingChargeItem is a Consumption CDS View that provides data about "Freight Booking Charge Item" in SAP S/4HANA. It reads from 1 data source (R_TranspOrderChargeItemTP) and exposes 17 fields with key field TranspChargeItemUUID.

Data Sources (1)

SourceAliasJoin Type
R_TranspOrderChargeItemTP R_TranspOrderChargeItemTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Freight Booking Charge Item view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
OData.entityType.name FreightBookingChargeItem_Type view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY TranspChargeItemUUID TranspChargeItemUUID
TransportationChargesObjUUID TransportationChargesObjUUID
TransportationOrderUUID TransportationOrderUUID
TranspChargeCalcLevelRefUUID TranspChargeCalcLevelRefUUID
TransportationAgreementUUID TransportationAgreementUUID
BusinessPartnerUUID BusinessPartnerUUID UUID
TranspChargeCalcLevel TranspChargeCalcLevel
TranspChargePostingStatus TranspChargePostingStatus
TranspChrgItemDocCurrency TranspChrgItemDocCurrency
TranspChrgItmTotAmtInDocCrcy TranspChrgItmTotAmtInDocCrcy
TranspChrgItemLoclCurrency TranspChrgItemLoclCurrency
TranspChrgItmTotAmtInLoclCrcy TranspChrgItmTotAmtInLoclCrcy
TranspChargeItemCalcDateTme TranspChargeItemCalcDateTme
ExchangeRateDate ExchangeRateDate Translatn Date
TranspChargePostingDate TranspChargePostingDate
TranspChrgCalcDteTmeIsChanged TranspChrgCalcDteTmeIsChanged
PaymentTerms PaymentTerms Pyt Terms

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_FreightBookingChargeItem.
-- 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_FreightBookingChargeItem AS
SELECT
  TranspChargeItemUUID,
  TransportationChargesObjUUID,
  TransportationOrderUUID,
  TranspChargeCalcLevelRefUUID,
  TransportationAgreementUUID,
  BusinessPartnerUUID,
  TranspChargeCalcLevel,
  TranspChargePostingStatus,
  TranspChrgItemDocCurrency,
  TranspChrgItmTotAmtInDocCrcy,
  TranspChrgItemLoclCurrency,
  TranspChrgItmTotAmtInLoclCrcy,
  TranspChargeItemCalcDateTme,
  ExchangeRateDate,
  TranspChargePostingDate,
  TranspChrgCalcDteTmeIsChanged,
  PaymentTerms
FROM R_TranspOrderChargeItemTP
;