TRAC_ADTL_SE_MASTER_DATA

DDL: TRAC_ADTL_SE_MASTER_DATA SQL: TRACADTLSEMASTER Type: view

Master Data

TRAC_ADTL_SE_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 10 fields.

Data Sources (1)

SourceAliasJoin Type
I_Currency I_Currency from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TRACADTLSEMASTER 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 (10)

KeyFieldSource TableSource FieldDescription
IssueCurrency
ScrtyClassGenClassification
SecurityClassTransferType
SecurityClassStockCategory
SecurityClassFundType
BondClassification
SecurityClassIsListed
SecurityClassFundIsPublicFund
SecurityClassStockForm
ScrtyClassIsRlvtForTaxes
@AbapCatalog.sqlViewName: 'TRACADTLSEMASTER'
@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_SE_MASTER_DATA as select from I_Currency 

{
  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_CurrencyStdVH',
                  element: 'Currency' }
     }]
  cast( Currency as rewhr preserving type )                         as IssueCurrency,

  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassGenClassfctn',
                  element: 'ScrtyClassGenClassification' }
     }]
  cast( 'XYZ' as alwpkl preserving type )                           as ScrtyClassGenClassification,
  
  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassTransferType',
                  element: 'SecurityClassTransferType' }
     }]  
  cast( '9' as swerttyp preserving type )                           as SecurityClassTransferType,
  
    @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassStockCategory',
                  element: 'SecurityClassStockCategory' }
     }]
  cast( '9' as sakar preserving type )                              as SecurityClassStockCategory,
  
    @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassFundType',
                  element: 'SecurityClassFundType' }
     }]
  cast( '1' as sfoty preserving type )                              as SecurityClassFundType,

  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_BondClassification',
                  element: 'BondClassification' }
     }]
  cast( '123' as swpklass preserving type )                         as BondClassification,   

  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassListedIndicator',
                  element: 'SecurityClassIsListed' }
     }]   
  cast( 'Z'   as sboernot preserving type )                         as SecurityClassIsListed,

  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_ScrtyClFundPublicFundInd',
                  element: 'SecurityClassFundIsPublicFund' }
     }] 
  cast( 'Z' as soeff preserving type )                              as SecurityClassFundIsPublicFund,
  
  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityClassStockForm',
                  element: 'SecurityClassStockForm' }
     }]   
  cast( '1' as svbre preserving type )                              as SecurityClassStockForm,
  
  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_ScrtyClassRlvtForTaxesInd',
                  element: 'ScrtyClassIsRlvtForTaxes' }
     }] 
  cast( 'z' as sstbe preserving type )                              as ScrtyClassIsRlvtForTaxes
  
//  VH: Missing! To be clarified with CDA 

//  SecurityClassRating

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