I_BankConditionTTP

DDL: I_BANKCONDITIONTTP SQL: IBANKCONDTTP Type: view BASIC

Bank Condition Description

I_BankConditionTTP is a Basic CDS View that provides data about "Bank Condition Description" in SAP S/4HANA. It reads from 1 data source (fclm_brm_condt) and exposes 6 fields with key fields ConditionArea, ConditionID, Language, ValidFrom.

Data Sources (1)

SourceAliasJoin Type
fclm_brm_condt ConditionText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBANKCONDTTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Bank Condition Description view
ObjectModel.representativeKey ConditionID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConditionArea condarea Condition Area
KEY ConditionID cond Condition
KEY Language spras Off. Language
KEY ValidFrom validfrom Vers.Valid From
CndnDescription t_cond Condition Name
_Language _Language

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_BankConditionTTP.
-- 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: IBANKCONDTTP

CREATE VIEW I_BankConditionTTP AS
SELECT
  condarea AS ConditionArea,
  cond AS ConditionID,
  spras AS Language,
  ValidFrom,
  t_cond AS CndnDescription
FROM fclm_brm_condt AS ConditionText
;