I_CostingType

DDL: I_COSTINGTYPE Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
tck01 tck01 from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'
      rldnr     as Ledger,

      _CostingTypeText,
      _Ledger,
      _LedgerText

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCK01"
],
"ASSOCIATED":
[
"I_COSTINGTYPETEXT",
"I_LEDGER",
"I_LEDGERTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/