I_CostCenterActivityTypeVH
Cost Center Activity Type Value Help
I_CostCenterActivityTypeVH is a Basic CDS View that provides data about "Cost Center Activity Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 7 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CostCenterActivityType | I_CostCenterActivityType | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFICCACTTYPVH | view | |
| ObjectModel.representativeKey | CostCtrActivityType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | Cost Center Activity Type Value Help | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | ControllingArea | ||
| KEY | CostCtrActivityType | CostCtrActivityType | ||
| KEY | ValidityEndDate | ValidityEndDate | ||
| ValidityStartDate | ValidityStartDate | |||
| CostCtrActivityTypeCategory | ||||
| CostCtrActivityTypeQtyUnit | CostCtrActivityTypeQtyUnit | |||
| CostCtrActivityTypeName |
@AbapCatalog.sqlViewName: 'IFICCACTTYPVH'
@ObjectModel.representativeKey: 'CostCtrActivityType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M
}
@EndUserText.label: 'Cost Center Activity Type Value Help'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@Search.searchable: true
@Consumption.ranked: true
define view I_CostCenterActivityTypeVH
as select from I_CostCenterActivityType
{
@UI.hidden: true
key ControllingArea,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: ['CostCtrActivityTypeName']
@UI.textArrangement: #TEXT_LAST
key CostCtrActivityType,
@Semantics.businessDate.to: true
@Consumption.filter.multipleSelections: false
@Consumption.filter.selectionType: #SINGLE
key ValidityEndDate,
@Semantics.businessDate.from: true
@Consumption.filter.multipleSelections: false
@Consumption.filter.selectionType: #SINGLE
ValidityStartDate,
cast( CostCtrActivityTypeCategory as fis_latyp preserving type ) as CostCtrActivityTypeCategory,
CostCtrActivityTypeQtyUnit,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_Text[1:Language = $session.system_language].CostCtrActivityTypeName as CostCtrActivityTypeName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COSTCENTERACTIVITYTYPE",
"I_COSTCENTERACTIVITYTYPETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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