I_CostingType
Costing Type
I_CostingType is a Basic CDS View (Dimension) that provides data about "Costing Type" in SAP S/4HANA. It reads from 1 data source (tck01) and exposes 7 fields with key field CostingType. It has 3 associations to related views. Part of development package FINS_PCP_CUST_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tck01 | tck01 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CostingTypeText | _CostingTypeText | $projection.CostingType = _CostingTypeText.CostingType |
| [0..1] | I_Ledger | _Ledger | $projection.Ledger = _Ledger.Ledger |
| [0..*] | I_LedgerText | _LedgerText | $projection.Ledger = _LedgerText.Ledger |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFICOSTINGTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | CostingType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| EndUserText.label | Costing Type | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostingType | kalka | ||
| ControllingValuationType | valuation | |||
| CostingReferenceObject | bzobj | |||
| Ledger | rldnr | |||
| _CostingTypeText | _CostingTypeText | |||
| _Ledger | _Ledger | |||
| _LedgerText | _LedgerText |
@AbapCatalog: {
sqlViewName: 'IFICOSTINGTYPE',
compiler.compareFilter: true,
preserveKey: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API }
@Analytics: {
dataCategory: #DIMENSION,
internalName: #LOCAL }
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S },
representativeKey: 'CostingType',
supportedCapabilities: [#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#SEARCHABLE_ENTITY],
modelingPattern: #ANALYTICAL_DIMENSION }
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@EndUserText.label: 'Costing Type'
define view I_CostingType
as select from tck01
association [0..*] to I_CostingTypeText as _CostingTypeText on $projection.CostingType = _CostingTypeText.CostingType
association [0..1] to I_Ledger as _Ledger on $projection.Ledger = _Ledger.Ledger
association [0..*] to I_LedgerText as _LedgerText on $projection.Ledger = _LedgerText.Ledger
{
@Search.defaultSearchElement: true
@ObjectModel.text.association: '_CostingTypeText'
key kalka as CostingType,
valuation as ControllingValuationType,
bzobj as CostingReferenceObject,
@ObjectModel.text.association: '_LedgerText'
@Consumption.valueHelpDefinition:[{entity: { name: 'I_LedgerStdVH' , element: 'Ledger' }, useAsTemplate: true }]
rldnr as Ledger,
_CostingTypeText,
_Ledger,
_LedgerText
}
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