C_CompanyCodeValueHelp
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCodeVH | I_CompanyCodeVH | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_BANKRELATIONSHIPDOC | UI_BANKRELATIONSHIPDOC_O4 | V4 | C1 | NOT_RELEASED |
| UI_OPERATINGGLACCOUNT | UI_OPERATINGGLACCOUNT | V4 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA