SE11ABAP

SAP SE11ABAP Dictionary

Everything in SAP is stored in database tables, and the ABAP Dictionary is the catalogue describing them. SE11 is how you read that catalogue: what fields a table has, what type each field is, which fields form the key, and which other objects depend on it.

It is worth understanding the four layers, because SAP separates them where most systems do not. A table contains fields. Each field points to a data element, which supplies its business meaning and its field labels. Each data element points to a domain, which supplies the raw technical type and length. So the same domain can back many data elements, and the same data element can appear on many tables — which is why field labels are consistent across screens you would think were unrelated.

Knowing this makes SE11 far more useful than a field list. Double-clicking a field takes you to its data element; double-clicking again takes you to its domain, where a fixed value list often documents exactly which codes are legal.

When you would actually use SE11

What the screen looks like

ABAP Dictionary: Initial Screen
SE11

Dictionary object

Database tableBKPF
View
Data type
Type Group
Domain
Search help
Lock object
Use Display rather than Change unless you genuinely intend to alter the Dictionary.
Client 100 | S/4HANA | Company Code 1000
Illustrative recreation.One radio-style field per object type — fill in only the one you want — Drawn for training with invented data; not a capture of a real SAP system. Fields with a blue border are required. SAP is a trademark of SAP SE.
Dictionary: Display Table BKPF
SE11
AttributesDelivery and MaintenanceFieldsEntry help/checkCurrency/Quantity Fields
FieldKeyInitialData elementData TypeLengthShort Description
MANDTXXMANDTCLNT3Client
BUKRSXXBUKRSCHAR4Company Code
BELNRXXBELNR_DCHAR10Accounting Document Number
GJAHRXXGJAHRNUMC4Fiscal Year
BLARTBLARTCHAR2Document Type
BUDATBUDATDATS8Posting Date in the Document
Active — 4 key fields (MANDT, BUKRS, BELNR, GJAHR)
Client 100 | S/4HANA | Company Code 1000
Illustrative recreation.The document header table: this is why FB03 needs company code AND year — Drawn for training with invented data; not a capture of a real SAP system. Fields with a blue border are required. SAP is a trademark of SAP SE.

The fields, in plain English

Database table

The technical table name. BKPF is the accounting document header, BSEG its line items, MARA the material master, LFA1 vendors, KNA1 customers.

Watch out: Almost every application table starts with MANDT, the client field. It is part of the key but you never supply it — the system does.

Key

The fields marked with an X together identify one row uniquely. Reading the key tells you the grain of the table without any documentation.

Watch out: BKPF's key is client + company code + document number + fiscal year. That single line explains why every FI transaction asks for all three.

Data element

The semantic layer: it carries the field labels you see on screens and the documentation behind F1 help. Double-click to open it.

Domain

The technical layer underneath a data element: type, length, and often a list of fixed values. When you need to know which codes a field legally accepts, the domain is where they are written down.

Where-used list

The button that finds every object referencing this one — programs, other tables, structures. Essential before changing anything, and useful for tracing how data flows.

Technical settings

Data class, size category and buffering. Mostly a Basis concern, but buffering explains the occasional case where a table change does not appear immediately.

Step by step

  1. 1Enter the object name in the matching field — table, view, data element or domain.
  2. 2Press Display. Avoid Change unless you are deliberately modifying the Dictionary.
  3. 3Read the Fields tab: names, key flags, data elements and types.
  4. 4Double-click a data element to see its labels and documentation.
  5. 5Double-click again to reach the domain and any fixed value list.
  6. 6Use the where-used list to find what depends on the object.
  7. 7Move to SE16N to look at the actual rows.

Errors you will hit, and what they mean

Table BKPF does not exist

Why: Typo, or the object is a view or a structure rather than a transparent table.

Fix: Use the search help with a wildcard, or try the View field instead. Not everything that looks like a table is one.

Object is not active

Why: A change was made and never activated — normally only seen in development systems.

Fix: Leave it alone unless it is your change. An inactive Dictionary object is somebody's work in progress.

No authorisation to display object

Why: Dictionary display is restricted on some production systems.

Fix: Reasonable to request — SE11 display changes nothing. Ask for display-only access rather than maintenance.

Common questions

What is the difference between SE11 and SE12?

SE12 is the display-only Dictionary transaction; SE11 can also maintain. If you only need to look, SE12 removes the chance of changing something by accident.

What is the difference between a data element and a domain?

The domain is technical — type, length, fixed values. The data element is semantic — field labels and documentation. Many data elements can share one domain.

How do I find which table holds a field I can see on a screen?

Click the field and press F1, then the technical information button. It names the table and field directly, which is far quicker than guessing in SE11.

Transactions that go with SE11

Reading about it only gets you so far

Practise SAP transactions in a safe simulated environment and keep what you learn.

Practise SAP transactions hands-on

Interactive modules, games, and an AI tutor — free to start.

Get started free →