Deprecated
This CDS view is deprecated in S/4HANA. Use I_LoanContrBusPartRelshpData instead. View all deprecated CDS views →

I_LoanContrBusPartRelshp

DDL: I_LOANCONTRBUSPARTRELSHP Type: view BASIC

Business Partner relationship data for loan contract

I_LoanContrBusPartRelshp (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_LoanContrBusPartRelshp is a Basic CDS View (Cube) that provides data about "Business Partner relationship data for loan contract" in SAP S/4HANA. It reads from 1 data source (vdgpo) and exposes 9 fields with key fields LoanBPObjectCode, LoanBPObjectInternalKey, BusinessPartner, BusinessPartnerRole, LoanBPObjectGenerationDate. It has 2 associations to related views.

SAP API Hub

StateDeprecated
Line of BusinessCross Applications
Application ComponentFS-CML
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
vdgpo vdgpo from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_LoanContrBP _LoanContrBP $projection.BusinessPartner = _LoanContrBP.BusinessPartner and $projection.LoanBPObjectInternalKey = _LoanContrBP.LoanObjectInternalKey
[1..1] I_LoanContrBP _LoanContrBP_1 $projection.LoanBPObjectInternalKey = _LoanContrBP_1.LoanObjectInternalKey

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ILCBPREL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality B view
ObjectModel.usageType.sizeCategory XL view
ObjectModel.usageType.dataClass TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_LoanContrBusPartRelshpData view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #CUBE view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
EndUserText.label Business Partner relationship data for loan contract view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY LoanBPObjectCode vdgpo snumobj Key for number range object
KEY LoanBPObjectInternalKey vdgpo sobjekt Internal key for object for business partner table
KEY BusinessPartner vdgpo partnr Business Partner Number
KEY BusinessPartnerRole vdgpo roletyp Role Category
KEY LoanBPObjectGenerationDate vdgpo dtrans Flow data key: System date
LoanBusPartRelshpStrtDte vdgpo dbebez Date of start of relationship
LoanBusPartRelshpEndDte vdgpo denbez Date of end of relationship
_LoanContrBP _LoanContrBP
_LoanContrBP_1 _LoanContrBP_1

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_LoanContrBusPartRelshp.
-- 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_LoanContrBusPartRelshp AS
SELECT
  vdgpo.snumobj AS LoanBPObjectCode,
  vdgpo.sobjekt AS LoanBPObjectInternalKey,
  vdgpo.partnr AS BusinessPartner,
  vdgpo.roletyp AS BusinessPartnerRole,
  vdgpo.dtrans AS LoanBPObjectGenerationDate,
  vdgpo.dbebez AS LoanBusPartRelshpStrtDte,
  vdgpo.denbez AS LoanBusPartRelshpEndDte
FROM vdgpo
LEFT OUTER JOIN I_LoanContrBP AS _LoanContrBP ON BusinessPartner = _LoanContrBP.BusinessPartner AND LoanBPObjectInternalKey = _LoanContrBP.LoanObjectInternalKey  -- association [1..1]
LEFT OUTER JOIN I_LoanContrBP AS _LoanContrBP_1 ON LoanBPObjectInternalKey = _LoanContrBP_1.LoanObjectInternalKey  -- association [1..1]
;