I_SecurityClassExchange

DDL: I_SECURITYCLASSEXCHANGE Type: view_entity BASIC Package: FTR_SECURITIES_CORE

Security Class Exchange

I_SecurityClassExchange is a Basic CDS View that provides data about "Security Class Exchange" in SAP S/4HANA. It reads from 1 data source (vwpbono) and exposes 9 fields with key fields SecurityClass, SecurityExchange. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3966). Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
vwpbono Exchange from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SecurityClass _SecurityClass $projection.SecurityClass = _SecurityClass.SecurityClass

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Security Class Exchange view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass vwpbono ranl Treasury ID No.
KEY SecurityExchange vwpbono rhandpl Exchange
ScrtyClExchangePriceCurrency vwpbono waers Transaction Currency
ScrtyClExchangePriceIsFlat
ScrtyClExchangeIsHomeExchange
SecurityClassListingType vwpbono sboen Listing
ScrtyClExchPriceDeviationInPct
ScrtyClExchPriceDeviationValue
_SecurityClass _SecurityClass

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_SecurityClassExchange.
-- 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 I_SecurityClassExchange AS
SELECT
  Exchange.ranl AS SecurityClass,
  Exchange.rhandpl AS SecurityExchange,
  Exchange.waers AS ScrtyClExchangePriceCurrency,
  cast( Exchange.flat as ftr_sc_exchange_price_flat_ind preserving type ) AS ScrtyClExchangePriceIsFlat,
  cast( Exchange.heiboe as ftr_sc_home_exchange_ind preserving type ) AS ScrtyClExchangeIsHomeExchange,
  Exchange.sboen AS SecurityClassListingType,
  cast( Exchange.pkuab as ftr_sc_exchange_price_dvtn_pct preserving type ) AS ScrtyClExchPriceDeviationInPct,
  cast( Exchange.bkuab as ftr_sc_exchange_price preserving type ) AS ScrtyClExchPriceDeviationValue
FROM vwpbono AS Exchange
LEFT OUTER JOIN I_SecurityClass AS _SecurityClass ON SecurityClass = _SecurityClass.SecurityClass  -- association [1..1]
;