A_Bank_3

DDL: A_BANK_3 Type: view_entity CONSUMPTION

Bank

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

Data Sources (1)

SourceAliasJoin Type
R_BankTP R_BankTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable false view
EndUserText.label Bank view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
KEY BankInternalID BankInternalID Bank Key
LongBankName LongBankName
LongBankBranch LongBankBranch
SWIFTCode SWIFTCode SWIFT/BIC
BankNetworkGrouping BankNetworkGrouping
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
BankNumber BankNumber Bank Key
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_3.
-- 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_3 AS
SELECT
  BankCountry,
  BankInternalID,
  LongBankName,
  LongBankBranch,
  SWIFTCode,
  BankNetworkGrouping,
  IsMarkedForDeletion,
  BankNumber,
  BankCategory
FROM R_BankTP
;