EPO Further Processing vs Re-establishment of Rights
When an EPO time limit is missed, the European Patent Convention offers two very different escape hatches: further processing, a no-fault remedy available for most time limits on a simple request plus fee, and re-establishment of rights, a discretionary remedy reserved for the periods further processing cannot reach and granted only on a showing of all due care. This page contrasts the two — the standard each applies, the periods excluded from further processing, the deadline to request each, and the fees — so a docketing system routes a missed EPO deadline to the correct remedy instead of the more expensive or unavailable one.
The distinction is decisive in practice. Choosing further processing where it is excluded (most importantly for the priority year) wastes a filing; choosing re-establishment where further processing would have worked exposes the applicant to a due-care burden that was never necessary. This sits under the EPO Register Sync Architecture pipeline, which surfaces the missed-limit event that these remedies respond to.
The Default and the Exception
Further processing under Article 121 EPC and Rule 135 EPC is the default. Re-establishment under Article 122 EPC and Rule 136 EPC is the fallback for what further processing excludes. The table sets them side by side.
| Dimension | Further processing (Art. 121, Rule 135) | Re-establishment (Art. 122, Rule 136) |
|---|---|---|
| Standard | No fault; automatic on request + fee | All due care required by the circumstances |
| Availability | Most EPO time limits (the default remedy) | Only periods excluded from further processing |
| Deadline to request | 2 months from the Rule 112(1) noting of loss of rights | 2 months from removal of the cause, and at most 1 year from the missed limit |
| How the request is made | Complete the omitted act + pay the fee | File a reasoned request + complete the act + pay the fee |
| Fee | Further-processing fee (per omitted act) | Re-establishment fee |
| Headline excluded period | — | Priority year (Art. 87(1)); further-processing and re-establishment periods |
Operational Action: Route a missed EPO limit to further processing by default and reserve re-establishment for periods on the Rule 135(2) exclusion list — flipping that default turns a routine fee payment into a due-care petition.
Further Processing: the No-Fault Default
Further processing is deliberately low-friction. For the great majority of EPO procedural time limits, the applicant does not have to explain why the deadline was missed at all. The remedy is granted on two acts: completing the omitted act (for example, paying the outstanding fee or filing the missing response) and paying the further-processing fee. The request must be made within two months of the communication noting the loss of rights under Rule 112(1) EPC — that communication, not the original deadline, starts the clock.
Because it is no-fault, further processing is the remedy a docketing system should assume first whenever the register surfaces a missed procedural limit. The EPO Register Sync Architecture pipeline anchors the further-processing window to the Rule 112(1) noting date it ingests, then rolls it off EPO closure days under Rule 134(1) EPC like any other deadline.
Re-establishment: the All-Due-Care Remedy
Re-establishment of rights is the harder, discretionary remedy, reserved for time limits that further processing cannot reach. Its standard is exacting: the applicant must show that all due care required by the circumstances was taken to observe the missed time limit, a fact-specific test the EPO applies strictly, typically requiring a normally satisfactory monitoring system with an isolated, one-off error rather than a systemic failure.
The timing under Rule 136(1) EPC is a two-pronged cap: the request must be filed within two months of the removal of the cause of non-compliance and, in any event, within one year of expiry of the missed time limit. Both prongs must be satisfied, so the effective deadline is the earlier of the two, and the omitted act must be completed and the re-establishment fee paid within the same window. This is the European analogue to the US unintentional-delay revival covered in Recovering a Missed PCT National Phase Entry via USPTO Restoration Petition — but the EPO’s “all due care” bar is materially higher than the US “unintentional” standard.
Operational Action: For any re-establishment case, docket both prongs — two months from removal of cause and one year from the missed limit — and drive reminders off whichever is earlier, because the one-year outer limit is absolute and cannot be extended.
Which Periods Are Excluded from Further Processing
The exclusion list in Rule 135(2) EPC is what forces a case onto the re-establishment path. The most consequential excluded period is the 12-month priority period under Article 87(1) — a late priority claim can only be rescued by re-establishment, never further processing. Rule 135(2) also excludes the further-processing period itself and the re-establishment periods (you cannot use further processing to extend these remedies), along with a specific list of Rule-based limits. Encode the exclusions as version-pinned config cited to source, and fail closed on any limit not in the map:
# epo_remedies.yaml
# Source: Rule 135(2) EPC exclusions and Rule 136(1) time limits.
# https://www.epo.org/en/legal/epc/2020/r135.html and .../r136.html
rule_version: "2026.07.0"
# Periods excluded from further processing -> re-establishment only.
excluded_from_further_processing:
- PRIORITY_PERIOD # Art. 87(1) 12-month priority year
- FURTHER_PROCESSING # the further-processing period itself
- REESTABLISHMENT # the re-establishment periods (Rule 136)
further_processing:
request_window_months: 2 # from the Rule 112(1) noting of loss of rights
reestablishment:
from_removal_months: 2 # Rule 136(1) first prong
outer_limit_months: 12 # Rule 136(1) absolute cap from the missed limit
The selector then routes a missed limit to the correct remedy and computes its deadline. The re-establishment deadline is the earlier of the two Rule 136(1) prongs:
from datetime import date
from dataclasses import dataclass
from dateutil.relativedelta import relativedelta
@dataclass(frozen=True)
class RemedyChoice:
remedy: str
request_deadline: date
def choose_epo_remedy(
limit_code: str, missed_limit: date, removal_of_cause: date,
rule112_noting: date, cfg: dict,
) -> RemedyChoice:
"""Route a missed EPO time limit to further processing or re-establishment."""
excluded = set(cfg["excluded_from_further_processing"])
if limit_code not in excluded:
# No-fault default: 2 months from the Rule 112(1) noting of loss.
window = cfg["further_processing"]["request_window_months"]
return RemedyChoice("further_processing", rule112_noting + relativedelta(months=window))
# Excluded period: re-establishment, earlier of the two Rule 136(1) prongs.
from_removal = removal_of_cause + relativedelta(months=cfg["reestablishment"]["from_removal_months"])
outer_limit = missed_limit + relativedelta(months=cfg["reestablishment"]["outer_limit_months"])
return RemedyChoice("reestablishment", min(from_removal, outer_limit))
CFG = {
"excluded_from_further_processing": ["PRIORITY_PERIOD", "FURTHER_PROCESSING", "REESTABLISHMENT"],
"further_processing": {"request_window_months": 2},
"reestablishment": {"from_removal_months": 2, "outer_limit_months": 12},
}
# A missed priority year is excluded -> re-establishment, capped at 1 year from the limit.
out = choose_epo_remedy("PRIORITY_PERIOD", date(2025, 3, 10), date(2025, 9, 1), date(2025, 5, 2), CFG)
assert out.remedy == "reestablishment"
assert out.request_deadline == date(2025, 11, 1) # removal + 2 mo, earlier than 2026-03-10
Operational Action: Treat epo_remedies.yaml as code — gate the exclusion list through patent counsel, pin the rule version, and reconcile it against the current EPC Implementing Regulations before each release, since a mis-mapped limit routes a case to the wrong remedy.
Frequently Asked Questions
When should I use further processing instead of re-establishment at the EPO?
What is the deadline to request re-establishment of rights?
Can I use further processing to rescue a missed priority claim?
How does the EPO due-care standard compare to the US unintentional standard?
Related
- EPO Register Sync Architecture — the pipeline that surfaces the missed-limit and Rule 112(1) noting events these remedies respond to.
- USPTO vs EPO National Phase Entry Differences — where a missed EPO regional entry lands, and its further-processing cure.
- Recovering a Missed PCT National Phase Entry via USPTO Restoration Petition — the US counterpart remedies under the unintentional standard.
- PCT National Phase Entry Rules — the entry engine whose restoration flags feed these recovery paths.
↑ Back to EPO Register Sync Architecture