A_Bank_2

DDL: A_BANK_2 Type: view_entity CONSUMPTION

Bank

A_Bank_2 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 (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER 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
ShortStreetName ShortStreetName
ShortCityName ShortCityName
SWIFTCode SWIFTCode SWIFT/BIC
BankNetworkGrouping BankNetworkGrouping
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
Bank Bank Bank Number
BankBranch 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_2.
-- 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_2 AS
SELECT
  BankCountry,
  BankInternalID,
  BankName,
  Region,
  ShortStreetName,
  ShortCityName,
  SWIFTCode,
  BankNetworkGrouping,
  IsMarkedForDeletion,
  Bank,
  BankBranch,
  BankCategory
FROM R_BankDepTP
;