I_SecurityClassSecondaryIndex

DDL: I_SECURITYCLASSSECONDARYINDEX Type: view_entity BASIC Package: FTR_SECURITIES_CORE

Security Class Secondary Index

I_SecurityClassSecondaryIndex is a Basic CDS View that provides data about "Security Class Secondary Index" in SAP S/4HANA. It reads from 1 data source (twx2) and exposes 4 fields with key fields SecurityClass, ScrtyClSecondaryIndexNumber. It has 1 association to related views. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
twx2 SecurityClSecondaryIndex from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SecurityClass _SecurityClass $projection.SecurityClass = _SecurityClass.SecurityClass

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Security Class Secondary Index view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName ISCRTYClSECDRYIDX view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass
KEY ScrtyClSecondaryIndexNumber
ScrtyClSecdryIdxValIdentifier
_SecurityClass _SecurityClass
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Class Secondary Index'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET,#SQL_DATA_SOURCE,#SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: #NONE
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #MASTER
}
@Analytics.technicalName: 'ISCRTYClSECDRYIDX'
@VDM.viewType: #BASIC
define view entity I_SecurityClassSecondaryIndex
  as select from twx2 as SecurityClSecondaryIndex

  association [1..1] to I_SecurityClass as _SecurityClass on $projection.SecurityClass = _SecurityClass.SecurityClass

{
  key cast(SecurityClSecondaryIndex.ranl as ftr_gen_security_class preserving type )         as SecurityClass,
  key cast(SecurityClSecondaryIndex.vvranlwi as ftr_sc_secdry_idx_number preserving type )   as ScrtyClSecondaryIndexNumber,
      cast(SecurityClSecondaryIndex.vvranlwx as ftr_sc_secondary_ind_value preserving type ) as ScrtyClSecdryIdxValIdentifier,

      _SecurityClass
}