TRAC_ADTL_OC_MASTER_DATA

DDL: TRAC_ADTL_OC_MASTER_DATA SQL: TRACADTLOCMASTER Type: view

Master Data

TRAC_ADTL_OC_MASTER_DATA is a CDS View that provides data about "Master Data" in SAP S/4HANA. It reads from 1 data source (I_Currency) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
I_Currency I_Currency from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TRACADTLOCMASTER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Master Data view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
FinInstrTransactionCategory
FinancialInstrTransactionType
HedgingClassification
@AbapCatalog.sqlViewName: 'TRACADTLOCMASTER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Master Data'

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

@ClientHandling.algorithm: #SESSION_VARIABLE

// ********************************************************************************************

// This view is needed for Substitution Rule for Determination of Account Assignment Reference

// Do not use this view for any other purpose!!!!

// Only a dummy select is implemented here.

// ********************************************************************************************


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

{

  @Consumption.valueHelpDefinition: [
    { entity:  { name:    'I_FinInstrTranscat',
                 element: 'FinInstrTransactionCategory' }
    }]
  cast ('999' as tb_sfgtyp preserving type )                    as FinInstrTransactionCategory,
  @Consumption.valueHelpDefinition: [
    { entity:  { name:    'I_FinancialInstrTransType',
                 element: 'FinancialInstrTransactionType' }
    }]
  cast ('XYZ' as ftr_gen_transaction_type preserving type)      as FinancialInstrTransactionType,
  
// Only enabled for BADI-implementation: not supported yet  

//

//  @Consumption.valueHelpDefinition: [

//    { entity:  { name:    'I_FinancialTransactionStdVH',

//                 element: 'FinancialTransaction' }

//    }]

//  cast ('Z234567890123' as tb_rfha preserving type )            as FinancialTransaction,



  @Consumption.valueHelpDefinition: [
    { entity:  { name:    'I_TreasuryHedgingClassfctn',
                 element: 'HedgingClassification' }
    }]
  cast ('HCLAS' as toe_hedging_classification preserving type ) as HedgingClassification

} where 1 = 2;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CURRENCY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/