TRAC_ADTL_SE_MISC

DDL: TRAC_ADTL_SE_MISC SQL: TRACADTLSEMISC Type: view

Miscellaneous Data

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

Data Sources (1)

SourceAliasJoin Type
I_Currency I_Currency from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TRACADTLSEMISC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
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
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
SecurityAccountGroup
SecurityAccountType
TreasuryPositionLongShortCode
SecuritiesAccountCategory
@AbapCatalog.sqlViewName: 'TRACADTLSEMISC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Miscellaneous 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_MISC
  as select from I_Currency

{
  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityAccountGroup',
                  element: 'SecurityAccountGroup' }
     }]
  cast( 'ZDEPOTGRP1' as ftr_gen_sec_account_group preserving type) as SecurityAccountGroup,

  @Consumption.valueHelpDefinition: [
     { entity:  { name:    'I_SecurityAccountType',
                  element: 'SecurityAccountType' }
     }]
  cast( 'XYZ' as ftr_gen_security_account_type preserving type )   as SecurityAccountType,

  @Consumption.valueHelpDefinition: [
   { entity:  { name:    'I_TrsyPositionLongShortCode',
                element: 'TreasuryPositionLongShortCode' }
   }]
  cast( 'L' as ftr_gen_long_short_code preserving type )           as TreasuryPositionLongShortCode,

//  No content available for this field

//  @Consumption.valueHelpDefinition: [

//   { entity:  { name:    'I_TrsyScrtyClassPosAssetGroup',

//                element: 'TrsySecurityClPosAssetGroup' }

//   }]

//  cast( '1234' as sfibg preserving type )                          as TrsySecurityClPosAssetGroup,

//

//  No content available for this field

//  @Consumption.valueHelpDefinition: [

//   { entity:  { name:    'I_TrsyPositionBalSheetCode',

//                element: 'TrsyPositionBalanceSheetCode' }

//   }]

//  cast( 'ZZ' as sbilk preserving type )                            as TrsyPositionBalanceSheetCode,



  @Consumption.valueHelpDefinition: [
   { entity:  { name:    'I_SecurityAccountCategory',
                element: 'SecurityAccountCategory' }
   }]  
  cast( 'X' as tpm_secacc_cat preserving type )                    as SecuritiesAccountCategory

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