I_BankAccountTypeText

DDL: I_BANKACCOUNTTYPETEXT SQL: IFIBANKACCOUNTTT Type: view BASIC Package: FCLM_BAM

Bank Account Type - Text

I_BankAccountTypeText (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_BankAccountTypeText is a Basic CDS View that provides data about "Bank Account Type - Text" in SAP S/4HANA. It reads from 1 data source (fclm_bam_ac_typt) and exposes 4 fields with key fields BankAccountType, Language. It is exposed through 1 OData service (ASQL_F3418). 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 <p>This CDS view retrieves the bank account types defined in the configuration activity Define Settings for Bank Account Master Data.</p> <p>For more information, see Bank Account Types and Contract Types.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p> What bank account types are defined in your system?</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_ac_typt fclm_bam_ac_typt from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFIBANKACCOUNTTT view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BankAccountType view
EndUserText.label Bank Account Type - Text view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S 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 (1)

ServiceBindingVersionContractRelease
ASQL_F3418 ASQL_F3418 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountType acc_type_id Bank Account Type ID
KEY Language langu Primary lang.
BankAccountTypeText acc_type_desc Bank Account Type 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_BankAccountTypeText.
-- 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: IFIBANKACCOUNTTT

CREATE VIEW I_BankAccountTypeText AS
SELECT
  acc_type_id AS BankAccountType,
  langu AS Language,
  acc_type_desc AS BankAccountTypeText
FROM fclm_bam_ac_typt
;