I_BankAccountText

DDL: I_BANKACCOUNTTEXT SQL: IFIBANKACCOUNTT Type: view BASIC Package: FCLM_BAM

Bank Account - Text

I_BankAccountText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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 - Text" 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. It is exposed through 2 OData services (ASQL_F2564, ASQL_F8654). Part of development package FCLM_BAM.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-CLM-BAM-2CL
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
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageFinancial Operations for SAP S/4HANA Cloud Public Edition
Description This CDS view provides you with access to the data of bank accounts that have one of the following statuses: <ul> <li><p>Opened at Bank</p></li> <li><p>Active</p></li> <li><p>Marked for Closing</p></li> <li><p>Closing Request Sent to Bank</p></li> <li><p>Closed at Bank</p></li> <li><p>Closed</p></li> </ul> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What bank accounts can I use in business transactions?</p></li> <li><p>How many bank accounts does a specific company own?</p></li> <li><p>How many bank accounts are open?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

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 (14)

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 - Text 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
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2564 ASQL_F2564 C2 NOT_RELEASED
ASQL_F8654 ASQL_F8654 C2 NOT_RELEASED

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]
;