C_REContractConditionCalc

DDL: C_RECONTRACTCONDITIONCALC SQL: CRECONTRCNDNCALC Type: view CONSUMPTION Package: ODATA_RE_CONTRACT_APP

RE Contract Condition Calculation

C_REContractConditionCalc is a Consumption CDS View that provides data about "RE Contract Condition Calculation" in SAP S/4HANA. It reads from 1 data source (I_REContrConditionCalculation) and exposes 15 fields with key field RECndnCalculationUUID. It is exposed through 1 OData service (UI_RECONTRACT). It is used in 1 Fiori application: Contract Management. Part of development package ODATA_RE_CONTRACT_APP.

Data Sources (1)

SourceAliasJoin Type
I_REContrConditionCalculation I_REContrConditionCalculation from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CRECONTRCNDNCALC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
EndUserText.label RE Contract Condition Calculation view
ObjectModel.representativeKey RECndnCalculationUUID view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RECONTRACT UI_RECONTRACT V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F5273 Contract Management Transactional This Fiori App allows customers to manage and maintain their Real Estate Contracts. Through the App customers get the ability to easily understand their contracts and liabilities.

Contract Management

Business Role: Contract Specialist - Leasing

The term section of the contract has been restructured. It now includes subsections for dates, renewal terms, and notice terms to ease navigation inside the contract.

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY RECndnCalculationUUID RECndnCalculationUUID
InternalRealEstateNumber InternalRealEstateNumber
REStatusObjectCalculation REStatusObjectCalculation
REConditionType REConditionType
RENumberOfCalculation RENumberOfCalculation
ValidityStartDate ValidityStartDate
ValidityEndDate ValidityEndDate
REConditionItemAmount REConditionItemAmount
REConditionItemTaxAmount REConditionItemTaxAmount
REConditionCalculationFactor REConditionCalculationFactor
REConditionCurrency REConditionCurrency
REConditionUUID REConditionUUID
REConditionTypeName
_REConditionType _REConditionType
_REContract _REContract
@AbapCatalog.sqlViewName: 'CRECONTRCNDNCALC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck:#CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'RE Contract Condition Calculation'

@ObjectModel.representativeKey: 'RECndnCalculationUUID'
@Metadata.allowExtensions: true

define view C_REContractConditionCalc
  as select from I_REContrConditionCalculation
{
      @UI.hidden: true
  key RECndnCalculationUUID,
      @UI.hidden: true
      InternalRealEstateNumber,
      @UI.hidden: true
      REStatusObjectCalculation,
      @ObjectModel.text.element: ['REConditionTypeName']
      REConditionType,
      RENumberOfCalculation,
      ValidityStartDate,
      ValidityEndDate,
      REConditionItemAmount,
      REConditionItemTaxAmount,
      REConditionCalculationFactor,      
      REConditionCurrency,
      @UI.hidden: true
      REConditionUUID,
      
      @UI.hidden: true
      _REConditionType._Text[1: Language = $session.system_language ].REConditionTypeName as REConditionTypeName,
      _REConditionType,
      _REContract
}