C_BankRiskBusinessPartnerTP

DDL: C_BANKRISKBUSINESSPARTNERTP Type: view_entity CONSUMPTION

Risk Business Partner of Bank

C_BankRiskBusinessPartnerTP is a Consumption CDS View that provides data about "Risk Business Partner of Bank" in SAP S/4HANA. It reads from 1 data source (R_BankRiskBusinessPartnerTP) and exposes 10 fields with key fields BankCountry, BankInternalID, RiskPartnerValidToDate.

Data Sources (1)

SourceAliasJoin Type
R_BankRiskBusinessPartnerTP R_BankRiskBusinessPartnerTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Risk Business Partner of Bank view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
KEY BankInternalID BankInternalID Bank Key
KEY RiskPartnerValidToDate RiskPartnerValidToDate Valid To
RiskPartnerNo RiskPartnerNo Busn. Partner
RiskPartnerValidFromDate RiskPartnerValidFromDate Valid From
BPCreditStandingRating BPCreditStandingRating Rating
BPCreditStandingRatingDesc _RatingText BPCreditStandingRatingDesc
BusinessPartnerFullName _BusinessPartner BusinessPartnerFullName Broker Name
_BusinessPartner _BusinessPartner
_BankredirectedtoparentC_CashBankTP

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 C_BankRiskBusinessPartnerTP.
-- 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 C_BankRiskBusinessPartnerTP AS
SELECT
  BankCountry,
  BankInternalID,
  RiskPartnerValidToDate,
  RiskPartnerNo,
  RiskPartnerValidFromDate,
  BPCreditStandingRating,
  _RatingText.BPCreditStandingRatingDesc AS BPCreditStandingRatingDesc,
  _BusinessPartner.BusinessPartnerFullName AS BusinessPartnerFullName
FROM R_BankRiskBusinessPartnerTP
;