I_FinancialClosingRunTypeText

DDL: I_FINANCIALCLOSINGRUNTYPETEXT SQL: ICLSRTYPETXT Type: view BASIC

Financial Closing Run Type - Text

I_FinancialClosingRunTypeText is a Basic CDS View that provides data about "Financial Closing Run Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields BusinessTransactionCategory, Language.

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICLSRTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Financial Closing Run Type - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessTransactionCategory
KEY Language t ddlanguage
BusTransactionCategoryName
@AbapCatalog.sqlViewName: 'ICLSRTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Financial Closing Run Type - Text'


@VDM.viewType: #BASIC
// representativeKey: 'FinancialClosingRunType',

@ObjectModel: { 
                dataCategory: #TEXT,
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #S,
                usageType.dataClass: #CUSTOMIZING }
                  
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_FinancialClosingRunTypeText   
  as select from           dd07l as l
    left outer to one join dd07t as t on  t.domvalue_l = l.domvalue_l
                                      and t.domname    = l.domname
                                      and t.ddlanguage = $session.system_language
{
      @ObjectModel.text.element: ['BusTransactionCategoryName']
  key cast(l.domvalue_l as fins_bttype)   as BusinessTransactionCategory,
  
      @Semantics.language: true
      @UI.hidden: true
  key t.ddlanguage as Language,
      
      @Semantics.text: true
      cast ( ddtext as cls_run_type_text ) as BusTransactionCategoryName

}
where
      l.domname  = 'CLS_RUN_TYPE'
  and l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/