I_BankHierBankGroupNameMapping

DDL: I_BANKHIERBANKGROUPNAMEMAPPING SQL: IBKHIERGRPNMMAP Type: view BASIC Package: FCLM_MANAGEBANKS

Bank Hierarchy Bank Group Name Mapping

I_BankHierBankGroupNameMapping is a Basic CDS View that provides data about "Bank Hierarchy Bank Group Name Mapping" in SAP S/4HANA. It reads from 1 data source (fclm_bam_hierbgn) and exposes 4 fields with key fields BankHierarchyIdentifier, BankCountry, BankInternalID. Part of development package FCLM_MANAGEBANKS.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_hierbgn fclm_bam_hierbgn from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBKHIERGRPNMMAP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
EndUserText.label Bank Hierarchy Bank Group Name Mapping view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankHierarchyIdentifier hierid R/2 table
KEY BankCountry banks Bank Ctry/Rgn. Key
KEY BankInternalID bankl House Bank
BankGroup bank_group Busn. Partner

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_BankHierBankGroupNameMapping.
-- 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: IBKHIERGRPNMMAP

CREATE VIEW I_BankHierBankGroupNameMapping AS
SELECT
  hierid AS BankHierarchyIdentifier,
  banks AS BankCountry,
  bankl AS BankInternalID,
  bank_group AS BankGroup
FROM fclm_bam_hierbgn
;