TRAC_ADTL_OC_MISC

DDL: TRAC_ADTL_OC_MISC Type: view_entity Package: FTR_ACC_ADAPTOR_SUBVAL_CORE

Miscellaneous Data

TRAC_ADTL_OC_MISC is a CDS View that provides data about "Miscellaneous Data" in SAP S/4HANA. It reads from 1 data source (I_Currency) and exposes 3 fields. Part of development package FTR_ACC_ADAPTOR_SUBVAL_CORE.

Data Sources (1)

SourceAliasJoin Type
I_Currency I_Currency from

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Miscellaneous Data view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view

Fields (3)

KeyFieldSource TableSource FieldDescription
TransactionCurrency
FinInstrumentOutgoingCurrency
FinInstrumentIncomingCurrency
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Miscellaneous Data'

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity TRAC_ADTL_OC_MISC as select from I_Currency

 {   
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_CurrencyStdVH',
                     element: 'Currency' }
        }]     
    cast ( Currency as tb_wgschft preserving type ) as TransactionCurrency,
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_CurrencyStdVH',
                     element: 'Currency' }
        }]       
    cast ( Currency as tb_wgschf1 preserving type ) as FinInstrumentOutgoingCurrency,
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_CurrencyStdVH',
                     element: 'Currency' }
        }]       
    cast ( Currency as tb_wgschf2 preserving type ) as FinInstrumentIncomingCurrency   
       
} where 1 = 2;