I_FXTradingActivityT

DDL: I_FXTRADINGACTIVITYT SQL: IBSRBUYSELLT Type: view BASIC

The text view for FX Trading Activities

I_FXTradingActivityT is a Basic CDS View that provides data about "The text view for FX Trading Activities" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ForeignExchangeTradingActivity, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_FXTradingActivity _BuySellCode $projection.ForeignExchangeTradingActivity = _BuySellCode.ForeignExchangeTradingActivity
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBSRBUYSELLT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label The text view for FX Trading Activities view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ForeignExchangeTradingActivity
KEY Language dd07t ddlanguage Lang.
FXTradingActivityName
_BuySellCode _BuySellCode
_Language _Language

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 I_FXTradingActivityT.
-- 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.
-- SQL view name: IBSRBUYSELLT

CREATE VIEW I_FXTradingActivityT AS
SELECT
  cast(left(DomainText.domvalue_l, 1) as tpi_fx_buy_sell preserving type) AS ForeignExchangeTradingActivity,
  DomainText.ddlanguage AS Language,
  cast( DomainText.ddtext as fx_trading_activity_name preserving type ) AS FXTradingActivityName
FROM dd07t AS DomainText
LEFT OUTER JOIN I_FXTradingActivity AS _BuySellCode ON ForeignExchangeTradingActivity = _BuySellCode.ForeignExchangeTradingActivity  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;