SAP tableObjectCSKBModuleFI_FICO

CSKB table — Cost Elements Data Dependent on Controlling Area

CSKB stores the controlling-area-dependent attributes of a cost element for a given validity period: its cost element category, and the controlling area it belongs to. It is the CO counterpart to CSKA, which holds the chart-of-accounts-dependent view of the same cost element. A cost element only exists for postings once both records line up with an open validity period.

CSKB carries the controlling-area-specific master data of a cost element, most importantly its category and validity dates within a given controlling area. This page covers how it joins to CSKA, CSKS, COEP and the general ledger account tables, and the recurring diagnostic pattern where a valid GL account has no usable cost element because CSKB has no open-ended record for the controlling area in question.

Published 15 Sept 2026· 1,054 words

What it stores

One row in CSKB represents one cost element, in one controlling area, valid for one time slice defined by a start and end date. The row does not carry the cost element's number range or chart-of-accounts assignment (that lives in CSKA); it carries what CO needs to process the element inside that controlling area, principally the cost element category, which determines whether the element behaves as a primary cost element, a secondary cost element for internal allocations, a revenue element, or another CO-specific type. A cost element with no CSKB row for a controlling area cannot be used for postings or planning in that controlling area even if the underlying GL account exists and is extended to the company code.

Key fields

  • MANDT - client
  • KOKRS - controlling area the record applies to
  • KSTAR - cost element number, same value space as the GL account number
  • DATAB - validity start date of this record
  • DATBI - validity end date of this record, typically 31.12.9999 for the current open record
  • KATYP - cost element category, drives whether the element is primary, secondary, revenue-related, or another CO type

How it joins the data model

  • CSKB-KSTAR = CSKA-KSTAR to bring in the chart-of-accounts-dependent header of the same cost element
  • CSKB-KSTAR = SKB1-SAKNR to confirm the underlying GL account is created and extended to a company code
  • CSKB-KSTAR = SKA1-SAKNR to check the chart of accounts assignment of the account
  • CSKB-KOKRS = CSKS-KOKRS when validating that a cost center in the same controlling area can actually receive postings on this element
  • CSKB-KSTAR = COEP-KSTAR when tracing which cost element category a posted CO line item resolved to at the time of posting

How to read it safely

MANDT is the first filter, as always. Restrict next by KOKRS and KSTAR together; either one alone against the full table returns far more rows than useful, since KSTAR ranges typically span the same number range as GL accounts across every controlling area in the client. Because the table is date-sliced, always add a check on DATAB and DATBI against the posting date or the date under investigation rather than assuming the first row returned is the active one. It is common to find two or three CSKB rows for the same KOKRS/KSTAR combination representing successive validity periods, and picking the wrong one gives the wrong cost element category for the period being analyzed.

How to prove it in the data

Symptom: a posting to a GL account fails in CO with an error that the account is not a cost element, or the wrong cost element category is being used for automatic account assignment. Select CSKB with KOKRS equal to the controlling area in question and KSTAR equal to the account number, restricting DATAB/DATBI to bracket the posting date. No row returned confirms the cost element does not exist for that controlling area on that date; a row with an unexpected KATYP confirms the category mismatch driving the error.

ECC vs S/4HANA

CSKB remains a physical table on S/4HANA and continues to be maintained through the standard cost element maintenance transactions, since primary cost elements are represented as GL accounts with CO extension and secondary cost elements retain their own master record structure. The underlying data model has not been collapsed into the universal journal for master data purposes; CSKA and CSKB continue to carry the split between chart-of-accounts-dependent and controlling-area-dependent attributes. Consultants should still expect the same two-table pattern when tracing cost element master data on S/4HANA systems.

Common pitfalls

  • Checking only CSKA and concluding the cost element is fine, without checking CSKB for the specific controlling area; a cost element can be defined at chart-of-accounts level and still be missing in a given controlling area
  • Reading an expired CSKB row and assuming the cost element is unusable, when a newer row with a later DATAB actually covers the current period
  • Assuming KATYP in CSKB is fixed for the life of the cost element; the category can change across validity periods, so historical postings must be interpreted against the KATYP that was active on the posting date, not today's value
  • Treating CSKB as the place to check whether the GL account exists at all; account existence and company-code extension live in SKA1 and SKB1, CSKB only confirms the CO-side attributes once the account already exists
  • Confusing CSKB with CSKS; CSKB is cost element master data, CSKS is cost center master data, and mixing them up when writing a join produces a query that returns nothing or, worse, returns rows that look plausible but are unrelated
  • Assuming a KSTAR value with no CSKA or CSKB row is a data error rather than simply a GL account that was never designated as a cost element, which is a normal and common state for balance sheet accounts

Whose problem this is

Cost element master data is owned by CO configuration and master data teams, usually the same group that maintains the chart of accounts and cost center hierarchy. When a posting fails because a cost element is missing in a controlling area, the fix is a master data creation task for CO, not an FI account issue, even though the symptom often surfaces as a GL posting error.

Related SAP objects

Reviewed pages this object connects to in the ERPClimb knowledge graph.

Source: ERPClimb — https://erpclimb.com/sap-tables/cskbERPClimb is an independent platform and is not affiliated with SAP SE. Reference pages are written and reviewed by SAP consultants for learning and troubleshooting.