I_BankAccountOverdraftLimit

DDL: I_BANKACCOUNTOVERDRAFTLIMIT SQL: IFIBAMODLIMIT Type: view BASIC Package: FCLM_BAM

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)

SourceAliasJoin Type
fclm_bam_amd acc inner
fclm_bam_amd_lim lim from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BankAccount _BankAccount $projection.BankAccountInternalID = _BankAccount.BankAccountInternalID
[0..1] I_Currency _Currency $projection.OverdraftLimitCurrency = _Currency.Currency

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]
;