I_CashBankCategoryText

DDL: I_CASHBANKCATEGORYTEXT SQL: ICSHBKCATEGT Type: view BASIC

Cash Bank Category - Text

I_CashBankCategoryText is a Basic CDS View that provides data about "Cash Bank Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields BankCategory, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICSHBKCATEGT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BankCategory view
VDM.viewType #BASIC view
EndUserText.label Cash Bank Category - Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankCategory
KEY Language
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_CashBankCategoryText.
-- 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: ICSHBKCATEGT

CREATE VIEW I_CashBankCategoryText AS
SELECT
  cast( dd07t.domvalue_l as bf_bank_category ) AS BankCategory,
  cast( dd07t.ddlanguage as spras preserving type ) AS Language,
  cast( dd07t.ddtext as bf_bank_category_desc preserving type ) AS BankCategoryDescription
FROM dd07t
;