A_Bank

DDL: A_BANK Type: view_entity CONSUMPTION

Bank

A_Bank is a Consumption CDS View that provides data about "Bank" in SAP S/4HANA. It reads from 1 data source (R_BankDepTP) and exposes 12 fields with key fields BankCountry, BankInternalID.

Data Sources (1)

SourceAliasJoin Type
R_BankDepTP R_BankDepTP projection

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
Search.searchable false view
EndUserText.label Bank view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
KEY BankInternalID BankInternalID Bank Key
BankName BankName Bank Name
Region Region Venue Region
StreetName ShortStreetName
CityName ShortCityName
SWIFTCode SWIFTCode SWIFT/BIC
BankNetworkGrouping BankNetworkGrouping
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
Bank Bank Bank Number
Branch BankBranch
BankCategory BankCategory

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_Bank.
-- 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.

CREATE VIEW A_Bank AS
SELECT
  BankCountry,
  BankInternalID,
  BankName,
  Region,
  ShortStreetName AS StreetName,
  ShortCityName AS CityName,
  SWIFTCode,
  BankNetworkGrouping,
  IsMarkedForDeletion,
  Bank,
  BankBranch AS Branch,
  BankCategory
FROM R_BankDepTP
;