I_REConditionCalculation

DDL: I_RECONDITIONCALCULATION SQL: IRECNDNCALC Type: view_entity BASIC

Condition Calculation Factors

I_REConditionCalculation is a Basic CDS View (Dimension) that provides data about "Condition Calculation Factors" in SAP S/4HANA. It reads from 1 data source (vicdcondcalc) and exposes 20 fields with key field RECndnCalculationUUID. It has 2 associations to related views.

SAP Help Documentation

CategoryMaster
Data CategoryDimension
StatusObject Number
Purpose
This CDS view is designed to provide detailed information about condition calculations related to contracts. It aggregates various attributes and metrics associated with these calculations, such as amounts, validity dates, and associated entities like contracts, condition types, and currencies. This CDS view provides the data to answer the following business questions: What are the calculation factors for specific contract conditions? What is the validity period for each condition calculation? How much is the item amount, tax amount, net amount, and gross amount for each condition calculation? Which currency is used for each condition calculation? How many calculations have been performed for a specific condition? Who is the business partner associated with each condition calculation? What is the due date for each condition calculation? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description RECndnCalculationUUID GUID REConditionUUID Condition InternalRealEstateNumber RE Key REStatusObjectCalculation Calc. Object Number REConditionType Condition Type REConditionValidityStartDate Valid From ValidityStartDate Validity Start Date ValidityEndDate Validity End Date REConditionCalculationFactor Calculation Factor REConditionItemAmount Condition amount REConditionItemTaxAmount Tax on Sls/Pur. REConditionNetAmount Net REConditionGrossAmount Gross REConditionCurrency Currency RENumberOfCalculation Number BusinessPartner Business Partner REPartnerStatusObject Object Number REConditionDueDate Due Date

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
vicdcondcalc vicdcondcalc from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Currency _Currency $projection.REConditionCurrency = _Currency.Currency
[1..1] I_REConditionType _REConditionType $projection.REConditionType = _REConditionType.REConditionType

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey RECndnCalculationUUID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Condition Calculation Factors view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY RECndnCalculationUUID calcguid GUID
REConditionUUID condguid Condition
InternalRealEstateNumber intreno Source Object
REStatusObjectCalculation objnr Val. Obj. No.
REConditionType condtype Condition Type
REConditionValidityStartDate condvalidfrom Valid From
ValidityStartDate Valid From
ValidityEndDate Valid to
REConditionCalculationFactor calcvalue Calcul. Factor
REConditionItemAmount condvalue Condition amnt
REConditionItemTaxAmount taxvalue Tax on sls/pur.
REConditionNetAmount condvaluenet Net
REConditionGrossAmount condvaluegross Gross
REConditionCurrency condcurr Currency
RENumberOfCalculation calcnumber No.
BusinessPartner partner With Partner
REPartnerStatusObject partnerobjnr Object Number
REConditionDueDate duedate Promised For
_REConditionType _REConditionType
_Currency _Currency

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_REConditionCalculation.
-- 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: IRECNDNCALC

CREATE VIEW I_REConditionCalculation AS
SELECT
  calcguid AS RECndnCalculationUUID,
  condguid AS REConditionUUID,
  intreno AS InternalRealEstateNumber,
  objnr AS REStatusObjectCalculation,
  condtype AS REConditionType,
  condvalidfrom AS REConditionValidityStartDate,
  cast(valuevalidfrom as rebdvdmvalidfrom preserving type) AS ValidityStartDate,
  cast(valuevalidto as rebdvdmvalidto preserving type) AS ValidityEndDate,
  calcvalue AS REConditionCalculationFactor,
  condvalue AS REConditionItemAmount,
  taxvalue AS REConditionItemTaxAmount,
  condvaluenet AS REConditionNetAmount,
  condvaluegross AS REConditionGrossAmount,
  condcurr AS REConditionCurrency,
  calcnumber AS RENumberOfCalculation,
  partner AS BusinessPartner,
  partnerobjnr AS REPartnerStatusObject,
  duedate AS REConditionDueDate
FROM vicdcondcalc
LEFT OUTER JOIN I_Currency AS _Currency ON REConditionCurrency = _Currency.Currency  -- association [0..1]
LEFT OUTER JOIN I_REConditionType AS _REConditionType ON REConditionType = _REConditionType.REConditionType  -- association [1..1]
;