I_COKey

DDL: I_COKEY SQL: IFICOKEY Type: view BASIC Package: FINS_FIS_FICO

CO Key Sub Numbers

I_COKey is a Basic CDS View that provides data about "CO Key Sub Numbers" in SAP S/4HANA. It reads from 1 data source (cokey) and exposes 4 fields with key field ControllingKeySubNumber. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
cokey cokey from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFICOKEY view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CO Key Sub Numbers view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.buffering.type #NONE view
AbapCatalog.buffering.numberOfKeyFields 0 view
AbapCatalog.buffering.status #NOT_ALLOWED view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ControllingKeySubNumber hrkft
Plant werks
Material matnr
CostOriginGroup hkgrp
@AbapCatalog.sqlViewName: 'IFICOKEY'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CO Key Sub Numbers'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@AbapCatalog.buffering: {type: #NONE, numberOfKeyFields: 0, status: #NOT_ALLOWED}
@Metadata.ignorePropagatedAnnotations: true


define view I_COKey
  as select from cokey
{
  key hrkft as ControllingKeySubNumber,
  
      werks as Plant,
      matnr as Material,
      hkgrp as CostOriginGroup
      //bemot as AccountingIndicator

}