A_BankAddress

DDL: A_BANKADDRESS Type: view_entity

Bank Address

A_BankAddress is a CDS View that provides data about "Bank Address" in SAP S/4HANA. It reads from 1 data source (R_BankAddressDepTP) and exposes 48 fields with key fields BankCountry, BankInternalID, AddressRepresentationCode.

Data Sources (1)

SourceAliasJoin Type
R_BankAddressDepTP R_BankAddressDepTP projection

Annotations (6)

NameValueLevelField
EndUserText.label Bank Address view
AccessControl.authorizationCheck #CHECK view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (48)

KeyFieldSource TableSource FieldDescription
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
KEY BankInternalID BankInternalID Bank Key
KEY AddressRepresentationCode AddressRepresentationCode Address Version
AddressID AddressID Ship-to address
CorrespondenceLanguage CorrespondenceLanguage Language
CityName CityName Name
DistrictName DistrictName District
VillageName VillageName Different City
PostalCode PostalCode Postal Code
CompanyPostalCode CompanyPostalCode Company Post Cd
StreetName StreetName Text
StreetAddrNonDeliverableReason StreetAddrNonDeliverableReason Undeliverable
StreetPrefixName1 StreetPrefixName1 Street 2
StreetPrefixName2 StreetPrefixName2 Street 3
StreetSuffixName1 StreetSuffixName1 Street 4
StreetSuffixName2 StreetSuffixName2 Street 5
HouseNumber HouseNumber House Number
HouseNumberSupplementText HouseNumberSupplementText Supplement
Building Building Building code
Floor Floor Floor
RoomNumber RoomNumber Room Number
Country Country Venue: Ctry/Reg
Region Region Venue Region
FormOfAddress FormOfAddress Title Key
AddresseeName1 AddresseeName1
AddresseeName2 AddresseeName2
AddresseeName3 AddresseeName3
AddresseeName4 AddresseeName4
TaxJurisdiction TaxJurisdiction Tax Jurisdiction
TransportZone TransportZone Transport Zone
POBox POBox PO Box
POBoxAddrNonDeliverableReason POBoxAddrNonDeliverableReason Undeliverable
POBoxIsWithoutNumber POBoxIsWithoutNumber PO Box w/o No.
POBoxPostalCode POBoxPostalCode PO Box Postal Code
POBoxLobbyName POBoxLobbyName PO Box Lobby
POBoxDeviatingCityName POBoxDeviatingCityName PO Box City
POBoxDeviatingRegion POBoxDeviatingRegion PO Region
POBoxDeviatingCountry POBoxDeviatingCountry PO Box C/R
CareOfName CareOfName c/o
DeliveryServiceTypeCode DeliveryServiceTypeCode Delvry Serv Type
DeliveryServiceNumber DeliveryServiceNumber Delivery Service No.
AddressTimeZone AddressTimeZone Time Zone
SecondaryRegionName SecondaryRegionName County
TertiaryRegionName TertiaryRegionName Township
_BankredirectedtoparentA_Bank_2
_Region _Region
_Country _Country
_FormOfAddress _FormOfAddress

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_BankAddress.
-- 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_BankAddress AS
SELECT
  BankCountry,
  BankInternalID,
  AddressRepresentationCode,
  AddressID,
  CorrespondenceLanguage,
  CityName,
  DistrictName,
  VillageName,
  PostalCode,
  CompanyPostalCode,
  StreetName,
  StreetAddrNonDeliverableReason,
  StreetPrefixName1,
  StreetPrefixName2,
  StreetSuffixName1,
  StreetSuffixName2,
  HouseNumber,
  HouseNumberSupplementText,
  Building,
  Floor,
  RoomNumber,
  Country,
  Region,
  FormOfAddress,
  AddresseeName1,
  AddresseeName2,
  AddresseeName3,
  AddresseeName4,
  TaxJurisdiction,
  TransportZone,
  POBox,
  POBoxAddrNonDeliverableReason,
  POBoxIsWithoutNumber,
  POBoxPostalCode,
  POBoxLobbyName,
  POBoxDeviatingCityName,
  POBoxDeviatingRegion,
  POBoxDeviatingCountry,
  CareOfName,
  DeliveryServiceTypeCode,
  DeliveryServiceNumber,
  AddressTimeZone,
  SecondaryRegionName,
  TertiaryRegionName,
  BankAddress._Bank : redirected to parent A_Bank_2 AS _BankredirectedtoparentA_Bank_2
FROM R_BankAddressDepTP
;