A_BankDetail

DDL: A_BANKDETAIL SQL: ABKDET Type: view BASIC

Bank Details

A_BankDetail is a Basic CDS View that provides data about "Bank Details" in SAP S/4HANA. It reads from 1 data source (bnka) and exposes 10 fields with key fields BankCountry, BankInternalID.

Data Sources (1)

SourceAliasJoin Type
bnka bnka from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ABKDET view
EndUserText.label Bank Details view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BankCountry banks Bank Ctry/Rgn. Key
KEY BankInternalID bankl House Bank
BankName banka Bank Name
SWIFTCode swift SWIFT/BIC
BankGroup bgrup Bank group
BankNumber bnklz Bank Number
Region provz Region
StreetName stras Street/House
CityName ort01 Province
Branch brnch Business Place

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 A_BankDetail.
-- 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: ABKDET

CREATE VIEW A_BankDetail AS
SELECT
  banks AS BankCountry,
  bankl AS BankInternalID,
  banka AS BankName,
  swift AS SWIFTCode,
  bgrup AS BankGroup,
  bnklz AS BankNumber,
  provz AS Region,
  stras AS StreetName,
  ort01 AS CityName,
  brnch AS Branch
FROM bnka
;