Skip to content

Tabellenschema vs. global Custom Fields

A Lead Pool’s columns come from two parallel systems:

  1. Tabellenschema — fields defined directly on a single Lead Pool. Old model.
  2. Global Custom Fields — fields defined org-wide and linked into one or more Lead Pools. New model.

Both currently work; they coexist in the UI; the migration plan is to consolidate everything onto Custom Fields by end of 2026. New setups should prefer Custom Fields wherever possible.

Use caseUse
firstName, lastName, childFirstName, name — the canonical identifier fieldsTabellenschema (Custom Fields don’t support these special types yet)
email, phone — anything you want available consistently across multiple poolsGlobal Custom Fields
kurs, terminwunsch, enum-typed fields, free-text notesGlobal Custom Fields
Any field of email or phone typeGlobal Custom Fields (special types let the lead-detail view render mailto: / tel: links automatically)

In short: identity fields → Tabellenschema; everything else → Custom Fields.

These fields live on the Lead Pool itself and are configured from the pool’s Settings view.

Each field has:

PropertyNotes
KeyThe raw key used when posting data via the Ingress webhook or referencing the field in automations. Stable.
LabelThe display name in the console. Editable any time.
TypeA handful of recognized special types: firstName, lastName, childFirstName, name. Plus generic text/number types. The special types are what lets RocketLead auto-compose a lead’s display name.
Primary (star icon)Set when you have multiple fields of the same type and want one designated as canonical. Mostly historical — rarely needed today.

Reading the value of a Tabellenschema field in an automation: {{<triggerNodeId>.tableEntry.data.<key>}}.

These live at Settings → Custom Fields (or via the “Custom Fields” link inside a pool’s field configuration). They’re defined once for the org and then linked into the Lead Pools that should expose them.

Each field has:

PropertyNotes
NameThe display label. Used wherever the field appears.
TypeOne of text, number, boolean, date, datetime, time, email, phone, url, enum. The type drives input validation and special rendering (e.g. email makes the lead-detail view show a clickable mail link).
Linked poolsWhich Lead Pools expose this field. Adding a pool later is a single click.
Options (enum type)Predefined values for enum (dropdown) fields, used by the free-text → enum migration tool.

Reading the value in an automation: {{<triggerNodeId>.tableEntry.customFieldData.<custom-field-uuid>}}. Note customFieldData, not data — the variable picker in the editor inserts the right path automatically.

The 2026 consolidation will:

  • Add support for firstName / lastName / childFirstName / name as Custom Field types.
  • Migrate every Tabellenschema field on every existing pool into the Custom Fields registry (with the same key + label, no operator action needed).
  • Remove the per-pool field-config view; the only configuration surface becomes Custom Fields.

New setups built today should use Custom Fields for everything except the identifier fields. Once the identifier-type support lands in Custom Fields, the Tabellenschema view is going away.