I_FinClosingLineItemStatusText

DDL: I_FINCLOSINGLINEITEMSTATUSTEXT SQL: IFINCLSSTATUSTXT Type: view BASIC Package: FINS_FI_CLS_VAL_COMMON

Financial Closing Line Item Status Text

I_FinClosingLineItemStatusText is a Basic CDS View that provides data about "Financial Closing Line Item Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields FinancialClosingLineItemStatus, Language. It has 1 association to related views. Part of development package FINS_FI_CLS_VAL_COMMON.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFINCLSSTATUSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Financial Closing Line Item Status Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey FinancialClosingLineItemStatus 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 (4)

KeyFieldSource TableSource FieldDescription
KEY FinancialClosingLineItemStatus
KEY Language ddlanguage
FinClosingLineItemStatusName
_Language _Language
@AbapCatalog.sqlViewName: 'IFINCLSSTATUSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Financial Closing Line Item Status Text'
@VDM.viewType: #BASIC

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

define view I_FinClosingLineItemStatusText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key cast( domvalue_l as cls_line_item_status ) as FinancialClosingLineItemStatus,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key ddlanguage                                 as Language,
      @Semantics.text
      cast( ddtext as cls_line_item_type_text )  as FinClosingLineItemStatusName,
      _Language
}
where
      domname  = 'CLS_LINE_ITEM_STATUS'
  and as4local = 'A'