FISCDS_BLART_VH

DDL: FISVD_BLART_VH SQL: FISV_BLART_VH Type: view

Journal Entry Type/Text

FISCDS_BLART_VH is a CDS View that provides data about "Journal Entry Type/Text" in SAP S/4HANA. It reads from 2 data sources (t003, t003t) and exposes 3 fields with key fields blart, spras.

Data Sources (2)

SourceAliasJoin Type
t003 t003 from
t003t t003t left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName FISV_BLART_VH view
EndUserText.label Journal Entry Type/Text view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY blart t003t blart
KEY spras t003t spras
ltext t003t ltext
@AbapCatalog.sqlViewName: 'FISV_BLART_VH'
@EndUserText.label: 'Journal Entry Type/Text'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering:{
  status: #ACTIVE,
  type: #GENERIC,
  numberOfKeyFields: 2
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey: true

define view FISCDS_BLART_VH as select from t003
left outer join t003t
    on t003.blart = t003t.blart {
    key t003t.blart,
    key t003t.spras as spras,
    t003t.ltext as ltext
}