I_CshConcnStatusText

DDL: I_CSHCONCNSTATUSTEXT SQL: ICSHCONCNSTATTXT Type: view BASIC

Cash Concentration Status Text

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

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText _Text from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSHCONCNSTATTXT view
VDM.viewType #BASIC view
EndUserText.label Cash Concentration Status Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CashConcentrationStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashConcentrationStatus DomainValue Lower Value
CshConcnStatusText 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_CshConcnStatusText.
-- 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: ICSHCONCNSTATTXT

CREATE VIEW I_CshConcnStatusText AS
SELECT
  DomainValue AS CashConcentrationStatus,
  DomainText AS CshConcnStatusText
FROM I_DomainFixedValueText AS _Text
;