I_FinClsgRunExecStatusText

DDL: I_FINCLSGRUNEXECSTATUSTEXT SQL: ICLSEXESTATUSTXT Type: view BASIC Package: FINS_FI_CLS_ACT_COMMON

Closing Run Execution Status Name - Text

I_FinClsgRunExecStatusText is a Basic CDS View that provides data about "Closing Run Execution Status Name - Text" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields FinClosingRunExecutionStatus, Language. Part of development package FINS_FI_CLS_ACT_COMMON.

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICLSEXESTATUSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Closing Run Execution Status Name - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey FinClosingRunExecutionStatus view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinClosingRunExecutionStatus
KEY Language t ddlanguage Lang.
FinClsgRunExecutionStatusName Short text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_FinClsgRunExecStatusText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICLSEXESTATUSTXT

CREATE VIEW I_FinClsgRunExecStatusText AS
SELECT
  cast(l.domvalue_l as cls_run_status) AS FinClosingRunExecutionStatus,
  t.ddlanguage AS Language,
  cast ( ddtext as cls_run_status_text ) AS FinClsgRunExecutionStatusName
FROM dd07l AS l
;