I_SI_FileTypeValueHelp

DDL: I_SI_FILETYPEVALUEHELP Type: view_entity BASIC Package: GLO_FIN_IS_SI_CBR_PRTN

Slovenian file type definition

I_SI_FileTypeValueHelp is a Basic CDS View that provides data about "Slovenian file type definition" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field Type. Part of development package GLO_FIN_IS_SI_CBR_PRTN.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey Type view
VDM.viewType #BASIC view
Consumption.ranked true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Slovenian file type definition view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Type
TextTypeDescription text ddtext
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'Type'
@VDM.viewType: #BASIC
@Consumption.ranked: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MASTER
}
@EndUserText.label: 'Slovenian file type definition'
define view entity I_SI_FileTypeValueHelp
  as select from           dd07l
  //   left outer to one join I_SI_FileTypeText as text on  dd07l.domvalue_l = text.DomainValue

  //                                                    and text.Language    = $session.system_language

    left outer to one join dd07t as text on  dd07l.domvalue_l = text.domvalue_l
                                         and text.ddlanguage  = $session.system_language
                                         and text.domname     = 'GLO_FIN_SI_FILE_TYPE'
                                         and text.as4local    = 'A'

{
           //           @ObjectModel.text.element: ['TextTypeDescription']

           @Search.defaultSearchElement: true
           @Search.ranking:#HIGH
  key      cast (  dd07l.domvalue_l as glo_fin_si_file_type ) as Type,

           //           @Analytics.hidden: true

           //           @Consumption.hidden: true

           //           @Search.defaultSearchElement: true

           //           @Search.ranking: #HIGH

           //           dd07l.domvalue_l                                   as DomainValue,

           text.ddtext                                        as TextTypeDescription

}
where
      dd07l.domname  = 'GLO_FIN_SI_FILE_TYPE'
  and dd07l.as4local = 'A'