I_CashReleaseStatusText

DDL: I_CASHRELEASESTATUSTEXT SQL: ICSHRELSTST Type: view BASIC

Cash Release Status Text

I_CashReleaseStatusText is a Basic CDS View that provides data about "Cash Release Status Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CashReleaseStatus.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText _Text from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSHRELSTST view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Cash Release Status Text view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CashReleaseStatus view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashReleaseStatus Lower Value
CashReleaseStatusText DomainText Short Description

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_CashReleaseStatusText.
-- 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: ICSHRELSTST

CREATE VIEW I_CashReleaseStatusText AS
SELECT
  cast(DomainValue as fqm_release_status) AS CashReleaseStatus,
  DomainText AS CashReleaseStatusText
FROM I_DomainFixedValueText AS _Text
;