I_CashBankCategoryValueHelp

DDL: I_CASHBANKCATEGORYVALUEHELP SQL: ICSHBKCATVH Type: view COMPOSITE

Cash Bank Category

I_CashBankCategoryValueHelp is a Composite CDS View that provides data about "Cash Bank Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BankCategory.

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICSHBKCATVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cash Bank Category view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey BankCategory view
ObjectModel.resultSet.sizeCategory #XS view
Consumption.ranked true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankCategory Bank Category
BankCategoryDescription

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_CashBankCategoryValueHelp.
-- 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: ICSHBKCATVH

CREATE VIEW I_CashBankCategoryValueHelp AS
SELECT
  cast( l.domvalue_l as bf_bank_category ) AS BankCategory,
  cast ( t.ddtext as bf_bank_category_desc preserving type ) AS BankCategoryDescription
FROM dd07l AS l
;