I_CshConcnStatus

DDL: I_CSHCONCNSTATUS SQL: ICSHCONCNSTAT Type: view BASIC

Cash Concentration Status

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICSHCONCNSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
EndUserText.label Cash Concentration Status view
Consumption.ranked true view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashConcentrationStatus dd07l domvalue_l Lower Value
CshConcnStatusText dd07t ddtext 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_CshConcnStatus.
-- 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: ICSHCONCNSTAT

CREATE VIEW I_CshConcnStatus AS
SELECT
  dd07l.domvalue_l AS CashConcentrationStatus,
  dd07t.ddtext AS CshConcnStatusText
FROM dd07l
;