I_BankAccountOverdraftLimit
Bank Account Overdraft Limit
I_BankAccountOverdraftLimit is a Basic CDS View that provides data about "Bank Account Overdraft Limit" in SAP S/4HANA. It reads from 2 data sources (fclm_bam_amd, fclm_bam_amd_lim) and exposes 11 fields with key fields BankAccountInternalID, OverdraftLimit. It has 2 associations to related views. Part of development package FCLM_BAM.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_amd | acc | inner |
| fclm_bam_amd_lim | lim | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BankAccount | _BankAccount | $projection.BankAccountInternalID = _BankAccount.BankAccountInternalID |
| [0..1] | I_Currency | _Currency | $projection.OverdraftLimitCurrency = _Currency.Currency |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIBAMODLIMIT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Bank Account Overdraft Limit | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | OverdraftLimit | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | fclm_bam_amd_lim | acc_id | Technical ID |
| KEY | OverdraftLimit | fclm_bam_amd_lim | lim_id | Overdraft Limit ID |
| OverdraftLimitStartDate | fclm_bam_amd_lim | valid_from | Validity Start Time | |
| OverdraftLimitEndDate | fclm_bam_amd_lim | valid_to | Validity End Time | |
| OverdraftLimitAmount | fclm_bam_amd_lim | amount | Value Amount | |
| OverdraftLimitCurrency | fclm_bam_amd_lim | waers | Transaction Currency | |
| CompanyCode | fclm_bam_amd | bukrs | Value | |
| BankAccountType | fclm_bam_amd | acc_type_id | Account Type | |
| BankAccountOverdraftType | fclm_bam_amd_lim | overdraft_type | ||
| _BankAccount | _BankAccount | |||
| _Currency | _Currency |
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_BankAccountOverdraftLimit.
-- 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: IFIBAMODLIMIT
CREATE VIEW I_BankAccountOverdraftLimit AS
SELECT
lim.acc_id AS BankAccountInternalID,
lim.lim_id AS OverdraftLimit,
lim.valid_from AS OverdraftLimitStartDate,
lim.valid_to AS OverdraftLimitEndDate,
lim.amount AS OverdraftLimitAmount,
lim.waers AS OverdraftLimitCurrency,
acc.bukrs AS CompanyCode,
acc.acc_type_id AS BankAccountType,
lim.overdraft_type AS BankAccountOverdraftType
FROM fclm_bam_amd_lim AS lim
INNER JOIN fclm_bam_amd AS acc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_BankAccount AS _BankAccount ON BankAccountInternalID = _BankAccount.BankAccountInternalID -- association [0..1]
LEFT OUTER JOIN I_Currency AS _Currency ON OverdraftLimitCurrency = _Currency.Currency -- association [0..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA