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

I_Interestcalculationprofile

DDL: I_INTERESTCALCULATIONPROFILE SQL: IINTRSTCALCPRFL Type: view BASIC

Interest Calculation Profile

I_Interestcalculationprofile is a Basic CDS View that provides data about "Interest Calculation Profile" in SAP S/4HANA. It reads from 1 data source (tpi01) and exposes 2 fields with key field ProjInterestCalcProfile. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tpi01 tpi01 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Interestcalcprofiletext _Text $projection.ProjInterestCalcProfile = _Text.ProjInterestCalcProfile

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IINTRSTCALCPRFL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ProjInterestCalcProfile view
EndUserText.label Interest Calculation Profile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.status #DEPRECATED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjInterestCalcProfile tpi01 zschm Interest Prof.
_Text _Text

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_Interestcalculationprofile.
-- 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.
-- SQL view name: IINTRSTCALCPRFL

CREATE VIEW I_Interestcalculationprofile AS
SELECT
  tpi01.zschm AS ProjInterestCalcProfile
FROM tpi01
LEFT OUTER JOIN I_Interestcalcprofiletext AS _Text ON ProjInterestCalcProfile = _Text.ProjInterestCalcProfile  -- association [0..*]
;