I_BankAccountText

DDL: I_BANKACCOUNTTEXT SQL: IFIBANKACCOUNTT Type: view BASIC

Bank Account Description

Bank Account - Text

I_BankAccountText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_BankAccountText is a Basic CDS View that provides data about "Bank Account Description" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd_t) and exposes 4 fields with key fields BankAccountInternalID, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-CLM
CapabilitiesData Source for Data Extraction, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd_t fclm_bam_amd_t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AbapCatalog.sqlViewName IFIBANKACCOUNTT view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Bank Account Description view
ObjectModel.representativeKey BankAccountInternalID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID acc_id Bank Account Technical ID
KEY Language langu Primary lang.
BankAccountDescription description Account Description
_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_BankAccountText.
-- 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: IFIBANKACCOUNTT

CREATE VIEW I_BankAccountText AS
SELECT
  acc_id AS BankAccountInternalID,
  langu AS Language,
  description AS BankAccountDescription
FROM fclm_bam_amd_t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;