I_SecurityExchange

DDL: I_SECURITYEXCHANGE SQL: ISECEXCHANGE Type: view BASIC

Security Exchange

I_SecurityExchange is a Basic CDS View (Dimension) that provides data about "Security Exchange" in SAP S/4HANA. It reads from 1 data source (twh01) and exposes 4 fields with key field SecurityExchange.

Data Sources (1)

SourceAliasJoin Type
twh01 Exchange from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISECEXCHANGE view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SecurityExchange view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Security Exchange view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SecurityExchange
Currency twh01 waers
CountryISOCode twh01 land1
SecurityExchangeShortName
@AbapCatalog.sqlViewName: 'ISECEXCHANGE'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SecurityExchange'
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #CUSTOMIZING
@Metadata.ignorePropagatedAnnotations:true
@EndUserText.label: 'Security Exchange'

define view I_SecurityExchange
  as select from twh01 as Exchange
{
      @ObjectModel.text.element: 'SecurityExchangeShortName'
  key cast(Exchange.rhandpl as ftr_sec_exchange preserving type ) as SecurityExchange,
      @Semantics.currencyCode: true
      Exchange.waers                                              as Currency,
      Exchange.land1                                              as CountryISOCode,
      @Semantics.text: true
      cast(Exchange.xkurzbez as ftr_sec_exchange_desc)            as SecurityExchangeShortName

};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWH01"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/