P_AU_TPARSuplrFirstBankDetail

DDL: P_AU_TPARSUPLRFIRSTBANKDETAIL Type: view_entity COMPOSITE Package: GLO_FIN_IS_AU

AU TPAR Supplier first bank detail

P_AU_TPARSuplrFirstBankDetail is a Composite CDS View that provides data about "AU TPAR Supplier first bank detail" in SAP S/4HANA. It reads from 1 data source (I_SupplierBankDetails) and exposes 3 fields with key fields Supplier, BankCountry. Part of development package GLO_FIN_IS_AU.

Data Sources (1)

SourceAliasJoin Type
I_SupplierBankDetails I_SupplierBankDetails from

Annotations (6)

NameValueLevelField
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
BPBankAccountInternalID

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 P_AU_TPARSuplrFirstBankDetail.
-- 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 P_AU_TPARSuplrFirstBankDetail AS
SELECT
  Supplier,
  BankCountry,
  min(BPBankAccountInternalID) AS BPBankAccountInternalID
FROM I_SupplierBankDetails
;