I_JournalCaseStatusVH

DDL: I_JOURNALCASESTATUSVH Type: view_entity BASIC

Journal Case Status

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

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Journal Case Status view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.representativeKey JournalCaseStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY JournalCaseStatus
JournalCaseStatusName t 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_JournalCaseStatusVH.
-- 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.

CREATE VIEW I_JournalCaseStatusVH AS
SELECT
  cast( l.domvalue_l as case_status) AS JournalCaseStatus,
  t.ddtext AS JournalCaseStatusName
FROM dd07l AS l
;