C_CompanyCodeValueHelp

DDL: C_COMPANYCODEVALUEHELP SQL: CCOMPANYCODE_VH Type: view CONSUMPTION Package: ODATA_MM_PUR_POMASS_UPDATE

Company Code

C_CompanyCodeValueHelp is a Consumption CDS View that provides data about "Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCodeVH) and exposes 2 fields with key field CompanyCode. It is exposed through 2 OData services (UI_BANKRELATIONSHIPDOC, UI_OPERATINGGLACCOUNT). It is used in 1 Fiori application: Project Cost Report - Overview. Part of development package ODATA_MM_PUR_POMASS_UPDATE.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCodeVH I_CompanyCodeVH from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCOMPANYCODE_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Company Code view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey CompanyCode view
ObjectModel.representativeKey CompanyCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (2)

ServiceBindingVersionContractRelease
UI_BANKRELATIONSHIPDOC UI_BANKRELATIONSHIPDOC_O4 V4 C1 NOT_RELEASED
UI_OPERATINGGLACCOUNT UI_OPERATINGGLACCOUNT V4 C1 NOT_RELEASED

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 CompanyCode CompanyCode
CompanyCodeName CompanyCodeName
@AbapCatalog.sqlViewName: 'CCOMPANYCODE_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Company Code'

@VDM.viewType: #CONSUMPTION
@Search.searchable: true

@ObjectModel.semanticKey: 'CompanyCode'
@ObjectModel.representativeKey: 'CompanyCode'
@ObjectModel.usageType.dataClass: #CUSTOMIZING      // Table T001 is customizing

@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory:#VALUE_HELP

@ClientHandling.algorithm: #SESSION_VARIABLE
//@OData.publish: true


define view C_CompanyCodeValueHelp

  as select from I_CompanyCodeVH  // 3114719


{

      @ObjectModel.text.element:  [ 'CompanyCodeName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH }
  key CompanyCode,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      CompanyCodeName

}