I_BusinessPartnerIsBankTP

DDL: I_BUSINESSPARTNERISBANKTP Type: view_entity TRANSACTIONAL

Business Partner is Bank - TP

I_BusinessPartnerIsBankTP is a Transactional CDS View that provides data about "Business Partner is Bank - TP" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartnerIsBank) and exposes 9 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerIsBank I_BusinessPartnerIsBank from

Annotations (8)

NameValueLevelField
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Business Partner is Bank - TP view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
BankKey BankKey Bank Number
BankCountry BankCountry Bank Ctry/Rgn. Key
BPMinimumReserve BPMinimumReserve Subject to MinResReq
_BPFinancialServicesExtn _BPFinancialServicesExtn
_BPMinimumReserve _BPMinimumReserve
_BPMinimumReserveText _BPMinimumReserveText
_BusinessPartner _BusinessPartner
_FSBusinessPartner _FSBusinessPartner

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 I_BusinessPartnerIsBankTP.
-- 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 I_BusinessPartnerIsBankTP AS
SELECT
  BusinessPartner,
  BankKey,
  BankCountry,
  BPMinimumReserve
FROM I_BusinessPartnerIsBank
;