C_ControllingAreaVH

DDL: C_CONTROLLINGAREAVH SQL: CCONTRAREAVH Type: view CONSUMPTION Package: ODATA_PS_COS_PROJFIN_MNTR

Controlling Area Value Help

C_ControllingAreaVH is a Consumption CDS View that provides data about "Controlling Area Value Help" in SAP S/4HANA. It reads from 1 data source (I_ControllingArea) and exposes 2 fields with key field ControllingArea. It is used in 1 Fiori application: Project Cost Report - Overview. Part of development package ODATA_PS_COS_PROJFIN_MNTR.

Data Sources (1)

SourceAliasJoin Type
I_ControllingArea I_ControllingArea from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCONTRAREAVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Controlling Area Value Help view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ControllingArea view
VDM.viewType #CONSUMPTION view
OData.publish true view
Search.searchable true view
Consumption.ranked true view

Fiori Apps (1)

App IDApp NameTypeDescription
F2513 Project Cost Report - Overview Analytical An application to compare the plan versus actual costs of a project.

Project Cost Report - Overview

Business Role: Project Financial Controller

This feature enables you to easily monitor aggregated and non-aggregated project costs by allowing you to compare plan costs with actual costs. You can also monitor the variance and costs at individual line item level, configure two cost planning categories and use one category for calculation of variance. You can also enter the level to which a project tree has to be expanded, and view cost details of multiple projects or WBS elements from different projects and hierarchies.

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea
ControllingAreaName ControllingAreaName Controlling Area Name
@AbapCatalog.sqlViewName: 'CCONTRAREAVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Controlling Area Value Help'
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S
}
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ControllingArea'
@VDM.viewType: #CONSUMPTION
@OData.publish: true
@Search.searchable: true
@Consumption.ranked: true

//@ObjectModel : { resultSet.sizeCategory: #XS }


define view C_ControllingAreaVH
  as select from I_ControllingArea
{
      @ObjectModel.text.element:  [ 'ControllingAreaName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key ControllingArea,
      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      @EndUserText.label: 'Controlling Area Name'
      ControllingAreaName    
}