Server Script Errors — Diagnosis and Resolution
Cross-refs: frappe-syntax-serverscripts (syntax), frappe-impl-serverscripts (workflows), frappe-errors-clientscripts (client-side).
CRITICAL: Server Scripts Disabled by Default [v15+]
Starting from Frappe v15, Server Scripts are disabled by default. You MUST enable them:
# In site_config.json
{ "server_script_enabled": 1 }
On Frappe Cloud: Server Scripts are ONLY available on private benches, NOT on shared benches.
Error Diagnosis Flowchart
ERROR IN SERVER SCRIPT
│
├─► ImportError / NameError
│ ├─► "import json" → BLOCKED. Use frappe.parse_json()
│ ├─► "import datetime" → BLOCKED. Use frappe.utils
│ ├─► "import os/sys/subprocess" → BLOCKED. Security restriction
│ └─► "NameError: name 'dict' is not defined" → Some builtins restricted
│
├─► SyntaxError: not allowed
│ ├─► "try/except" → BLOCKED by RestrictedPython [v14-v15]
│ ├─► "raise ValueError" → BLOCKED. Use frappe.throw()
│ └─► "exec/eval" → BLOCKED. Security restriction
│
├─► Script runs but nothing happens
│ ├─► Wrong Script Type selected → Check Document Event vs API vs Scheduler
│ ├─► Wrong DocType selected → Verify exact DocType name
│ ├─► Wrong Event selected → Before Save ≠ After Save
│ └─► Script disabled → Check "Enabled" checkbox
│
├─► 403 Permission Denied
│ ├─► Scheduler script → Runs as Administrator, check role permissions
│ ├─► API script → Check Allow Guest setting
│ └─► doc_event → User lacks DocType permission
│
├─► Data not saved in Scheduler
│ └─► Missing frappe.db.commit() → REQUIRED in scheduler scripts
│
└─► API script returns empty/wrong response
└─► Not setting frappe.response["message"] → ALWAYS set response
Error Message → Cause → Fix Table
| Error Message |
Cause |
Fix |
ImportError: import not allowed |
Any import statement in sandbox |
Use frappe.utils, frappe.parse_json(), etc. |
NameError: name 'dict' is not defined |
Some Python builtins blocked by RestrictedPython |
Use frappe._dict() or literal {} |
SyntaxError: try/except not allowed |
RestrictedPython blocks exception handling [v14-v15] |
Use conditional checks (if/else) instead |
SyntaxError: raise not allowed |
RestrictedPython blocks raise |
Use frappe.throw() |
Script not executing |
Wrong Script Type or Event selected |
Verify type matches: Document Event, API, or Scheduler |
doc is not defined |
Using doc in API or Scheduler script (no document context) |
doc is only available in Document Event scripts |
PermissionError in Scheduler |
Scheduler runs as Administrator but script accesses restricted resource |
Use ignore_permissions=True where appropriate |
Changes not saved in Scheduler |
Missing frappe.db.commit() |
ALWAYS call frappe.db.commit() in Scheduler scripts |
API returns empty response |
Forgot to set frappe.response["message"] |
ALWAYS set frappe.response["message"] = result |
Timeout / killed |
Infinite loop or processing too many records |
ALWAYS add limit to queries, ALWAYS use batch processing |
ValidationError: qty is required |
doc.save() called in Before Save (recursion) |
NEVER call doc.save() in Before Save; just set values |
SQL injection via string format |
User input in SQL without escaping |
ALWAYS use frappe.db.escape() or parameterized queries |
The #1 Error: ImportError
Every beginner hits this. The Server Script sandbox blocks ALL imports except json.
# ❌ BLOCKED — These ALL fail with ImportError
import json # Use frappe.parse_json() / frappe.as_json()
from datetime import datetime # Use frappe.utils.now(), frappe.utils.today()
import re # Not available in sandbox
import os # Security: blocked
import requests # Use frappe.make_get_request(), frappe.make_post_request()
# ✅ CORRECT — Sandbox equivalents
data = frappe.parse_json(doc.json_field) # Instead of json.loads()
today = frappe.utils.today() # Instead of datetime.date.today()
now = frappe.utils.now() # Instead of datetime.now()
diff = frappe.utils.date_diff(date1, date2) # Instead of timedelta
resp = frappe.make_get_request("https://api.com") # Instead of requests.get()
resp = frappe.make_post_request("https://api.com", data=payload)
Available Sandbox API (Complete Reference)
| Category |
Available Methods |
| Document |
frappe.get_doc(), frappe.new_doc(), frappe.get_last_doc(), frappe.get_cached_doc(), frappe.get_mapped_doc(), frappe.rename_doc(), frappe.delete_doc() |
| Database |
frappe.db.get_list(), frappe.db.get_all(), frappe.db.get_value(), frappe.db.get_single_value(), frappe.db.set_value(), frappe.db.exists(), frappe.db.sql(), frappe.db.commit(), frappe.db.rollback(), frappe.db.escape() |
| Query Builder |
frappe.qb (full query builder) |
| HTTP |
frappe.make_get_request(), frappe.make_post_request(), frappe.make_put_request() |
| Utility |
frappe.utils.* (all utility functions), frappe.parse_json(), frappe.as_json() |
| User/Session |
frappe.session.user, frappe.get_roles(), frappe.has_permission() |
| Messages |
frappe.throw(), frappe.msgprint(), frappe.log_error(), frappe.sendmail() |
| Module |
json (the ONLY importable module) |
Script Type Selection Errors
ALWAYS verify you selected the correct Script Type:
| Script Type |
Trigger |
Has doc? |
Has frappe.form_dict? |
Auto-commit? |
| Document Event |
DocType lifecycle (Before Save, After Save, etc.) |
YES |
NO |
YES |
| API |
HTTP request to /api/method/{method_name} |
NO |
YES |
YES |
| Scheduler Event |
Cron schedule |
NO |
NO |
NO — MUST call frappe.db.commit() |
| Permission Query |
Every list query on the DocType |
NO |
NO (has user) |
N/A |
Common Mistake: Wrong Event
# ❌ WRONG — "After Save" cannot prevent save
# Script Type: Document Event, Event: After Save
if not doc.customer:
frappe.throw("Customer is required") # Document already saved!
# ✅ CORRECT — Use "Before Save" or "Before Validate"
# Script Type: Document Event, Event: Before Save
if not doc.customer:
frappe.throw("Customer is required") # Prevents save
Sandbox Workarounds
try/except Is Blocked: Use Conditional Checks
# ❌ BLOCKED in sandbox
try:
customer = frappe.get_doc("Customer", doc.customer)
except Exception:
frappe.throw("Customer not found")
# ✅ CORRECT — Check first, then access
if not frappe.db.exists("Customer", doc.customer):
frappe.throw(f"Customer '{doc.customer}' not found")
customer = frappe.get_doc("Customer", doc.customer)
raise Is Blocked: Use frappe.throw()
# ❌ BLOCKED
if amount < 0:
raise ValueError("Amount cannot be negative")
# ✅ CORRECT
if amount < 0:
frappe.throw("Amount cannot be negative")
frappe.throw() Exception Types for API Scripts
| Exception |
HTTP Code |
Use When |
frappe.ValidationError |
417 |
Input validation failure |
frappe.PermissionError |
403 |
Access denied |
frappe.DoesNotExistError |
404 |
Record not found |
frappe.AuthenticationError |
401 |
Not logged in |
| (default, no exc) |
417 |
General validation error |
# API Script — Correct exception types
if not customer:
frappe.throw("Customer param required", exc=frappe.ValidationError) # 417
if not frappe.db.exists("Customer", customer):
frappe.throw("Customer not found", exc=frappe.DoesNotExistError) # 404
if not frappe.has_permission("Customer", "read", customer):
frappe.throw("Access denied", exc=frappe.PermissionError) # 403
Scheduler Script: Critical Mistakes
# ❌ WRONG — No limit, no commit, no error logging
invoices = frappe.get_all("Sales Invoice", filters={"status": "Unpaid"})
for inv in invoices:
frappe.db.set_value("Sales Invoice", inv.name, "reminder_sent", 1)
# ✅ CORRECT — Limit, batch commit, error logging
BATCH_SIZE = 50
invoices = frappe.get_all(
"Sales Invoice",
filters={"status": "Unpaid", "docstatus": 1},
fields=["name", "customer"],
limit=500 # ALWAYS limit
)
errors = []
for i in range(0, len(invoices), BATCH_SIZE):
batch = invoices[i:i + BATCH_SIZE]
for inv in batch:
if not frappe.db.exists("Customer", inv.customer):
errors.append(f"{inv.name}: Customer not found")
continue
frappe.db.set_value("Sales Invoice", inv.name, "reminder_sent", 1)
frappe.db.commit() # REQUIRED
if errors:
frappe.log_error("\n".join(errors), "Reminder Errors")
frappe.db.commit()
SQL Injection Prevention
# ❌ VULNERABLE — String interpolation with user input
territory = frappe.form_dict.get("territory")
conditions = f"`tabCustomer`.territory = '{territory}'" # SQL INJECTION!
# ✅ SAFE — Use frappe.db.escape()
territory = frappe.form_dict.get("territory")
conditions = f"`tabCustomer`.territory = {frappe.db.escape(territory)}"
# ✅ SAFEST — Use parameterized query or Query Builder
results = frappe.db.get_all("Customer", filters={"territory": territory})
ALWAYS / NEVER Rules
ALWAYS
- Use
frappe.utils.* instead of Python imports — Only json module is importable
- Use
frappe.throw() instead of raise — raise is blocked by sandbox
- Use conditional checks instead of
try/except — Exception handling is blocked [v14-v15]
- Call
frappe.db.commit() in Scheduler scripts — Changes are NOT auto-committed
- Add
limit to ALL queries in Scheduler scripts — Prevent memory exhaustion
- Set
frappe.response["message"] in API scripts — Otherwise response is empty
- Use
frappe.db.escape() for user input in SQL — Prevent SQL injection
- Log errors in Scheduler scripts with
frappe.log_error() — No user to see errors
- Verify Script Type matches your intent — Document Event vs API vs Scheduler
NEVER
- NEVER use
import statements (except json) — Blocked by RestrictedPython
- NEVER use
try/except or raise — Blocked by sandbox [v14-v15]
- NEVER call
doc.save() in Before Save — Causes infinite recursion
- NEVER use string formatting for SQL with user input — SQL injection risk
- NEVER process unlimited records in Scheduler — Always use
limit
- NEVER assume
doc exists in API/Scheduler scripts — Only available in Document Events
- NEVER forget
frappe.db.commit() in Scheduler — All changes will be lost
Reference Files
| File |
Contents |
references/examples.md |
Real error scenarios with diagnosis |
references/anti-patterns.md |
Common sandbox mistakes with fixes |
references/patterns.md |
Defensive error handling patterns by script type |
1---2name: frappe-errors-serverscripts3description: Use when debugging or preventing errors in Frappe Server Scripts. Prevents ImportError (the #1 error), NameError for restricted builtins, sandbox violations, doc_events not firing, wrong script type selection, SQL injection, permission denied in scheduled scripts, infinite loops, and API scripts not returning JSON. Covers error message mapping table. Keywords: server script error, ImportError, NameError, sandbox,, ImportError in server script, script not running, sandbox error, restricted function. restricted, frappe.throw, doc_events, scheduler, API script, SQL injection.4license: MIT5---67# Server Script Errors — Diagnosis and Resolution89Cross-refs: `frappe-syntax-serverscripts` (syntax), `frappe-impl-serverscripts` (workflows), `frappe-errors-clientscripts` (client-side).1011---1213## CRITICAL: Server Scripts Disabled by Default [v15+]1415Starting from Frappe v15, Server Scripts are **disabled by default**. You MUST enable them:1617```python18# In site_config.json19{ "server_script_enabled": 1 }20```2122On Frappe Cloud: Server Scripts are ONLY available on **private benches**, NOT on shared benches.2324---2526## Error Diagnosis Flowchart2728```29ERROR IN SERVER SCRIPT30│31├─► ImportError / NameError32│ ├─► "import json" → BLOCKED. Use frappe.parse_json()33│ ├─► "import datetime" → BLOCKED. Use frappe.utils34│ ├─► "import os/sys/subprocess" → BLOCKED. Security restriction35│ └─► "NameError: name 'dict' is not defined" → Some builtins restricted36│37├─► SyntaxError: not allowed38│ ├─► "try/except" → BLOCKED by RestrictedPython [v14-v15]39│ ├─► "raise ValueError" → BLOCKED. Use frappe.throw()40│ └─► "exec/eval" → BLOCKED. Security restriction41│42├─► Script runs but nothing happens43│ ├─► Wrong Script Type selected → Check Document Event vs API vs Scheduler44│ ├─► Wrong DocType selected → Verify exact DocType name45│ ├─► Wrong Event selected → Before Save ≠ After Save46│ └─► Script disabled → Check "Enabled" checkbox47│48├─► 403 Permission Denied49│ ├─► Scheduler script → Runs as Administrator, check role permissions50│ ├─► API script → Check Allow Guest setting51│ └─► doc_event → User lacks DocType permission52│53├─► Data not saved in Scheduler54│ └─► Missing frappe.db.commit() → REQUIRED in scheduler scripts55│56└─► API script returns empty/wrong response57 └─► Not setting frappe.response["message"] → ALWAYS set response58```5960---6162## Error Message → Cause → Fix Table6364| Error Message | Cause | Fix |65|---------------|-------|-----|66| `ImportError: import not allowed` | Any `import` statement in sandbox | Use `frappe.utils`, `frappe.parse_json()`, etc. |67| `NameError: name 'dict' is not defined` | Some Python builtins blocked by RestrictedPython | Use `frappe._dict()` or literal `{}` |68| `SyntaxError: try/except not allowed` | RestrictedPython blocks exception handling [v14-v15] | Use conditional checks (`if/else`) instead |69| `SyntaxError: raise not allowed` | RestrictedPython blocks `raise` | Use `frappe.throw()` |70| `Script not executing` | Wrong Script Type or Event selected | Verify type matches: Document Event, API, or Scheduler |71| `doc is not defined` | Using `doc` in API or Scheduler script (no document context) | `doc` is only available in Document Event scripts |72| `PermissionError` in Scheduler | Scheduler runs as Administrator but script accesses restricted resource | Use `ignore_permissions=True` where appropriate |73| `Changes not saved` in Scheduler | Missing `frappe.db.commit()` | ALWAYS call `frappe.db.commit()` in Scheduler scripts |74| `API returns empty response` | Forgot to set `frappe.response["message"]` | ALWAYS set `frappe.response["message"] = result` |75| `Timeout / killed` | Infinite loop or processing too many records | ALWAYS add `limit` to queries, ALWAYS use batch processing |76| `ValidationError: qty is required` | `doc.save()` called in Before Save (recursion) | NEVER call `doc.save()` in Before Save; just set values |77| `SQL injection via string format` | User input in SQL without escaping | ALWAYS use `frappe.db.escape()` or parameterized queries |7879---8081## The #1 Error: ImportError8283**Every beginner hits this.** The Server Script sandbox blocks ALL imports except `json`.8485```python86# ❌ BLOCKED — These ALL fail with ImportError87import json # Use frappe.parse_json() / frappe.as_json()88from datetime import datetime # Use frappe.utils.now(), frappe.utils.today()89import re # Not available in sandbox90import os # Security: blocked91import requests # Use frappe.make_get_request(), frappe.make_post_request()9293# ✅ CORRECT — Sandbox equivalents94data = frappe.parse_json(doc.json_field) # Instead of json.loads()95today = frappe.utils.today() # Instead of datetime.date.today()96now = frappe.utils.now() # Instead of datetime.now()97diff = frappe.utils.date_diff(date1, date2) # Instead of timedelta98resp = frappe.make_get_request("https://api.com") # Instead of requests.get()99resp = frappe.make_post_request("https://api.com", data=payload)100```101102### Available Sandbox API (Complete Reference)103104| Category | Available Methods |105|----------|-------------------|106| **Document** | `frappe.get_doc()`, `frappe.new_doc()`, `frappe.get_last_doc()`, `frappe.get_cached_doc()`, `frappe.get_mapped_doc()`, `frappe.rename_doc()`, `frappe.delete_doc()` |107| **Database** | `frappe.db.get_list()`, `frappe.db.get_all()`, `frappe.db.get_value()`, `frappe.db.get_single_value()`, `frappe.db.set_value()`, `frappe.db.exists()`, `frappe.db.sql()`, `frappe.db.commit()`, `frappe.db.rollback()`, `frappe.db.escape()` |108| **Query Builder** | `frappe.qb` (full query builder) |109| **HTTP** | `frappe.make_get_request()`, `frappe.make_post_request()`, `frappe.make_put_request()` |110| **Utility** | `frappe.utils.*` (all utility functions), `frappe.parse_json()`, `frappe.as_json()` |111| **User/Session** | `frappe.session.user`, `frappe.get_roles()`, `frappe.has_permission()` |112| **Messages** | `frappe.throw()`, `frappe.msgprint()`, `frappe.log_error()`, `frappe.sendmail()` |113| **Module** | `json` (the ONLY importable module) |114115---116117## Script Type Selection Errors118119ALWAYS verify you selected the correct Script Type:120121| Script Type | Trigger | Has `doc`? | Has `frappe.form_dict`? | Auto-commit? |122|-------------|---------|:----------:|:-----------------------:|:------------:|123| Document Event | DocType lifecycle (Before Save, After Save, etc.) | YES | NO | YES |124| API | HTTP request to `/api/method/{method_name}` | NO | YES | YES |125| Scheduler Event | Cron schedule | NO | NO | NO — MUST call `frappe.db.commit()` |126| Permission Query | Every list query on the DocType | NO | NO (has `user`) | N/A |127128### Common Mistake: Wrong Event129130```python131# ❌ WRONG — "After Save" cannot prevent save132# Script Type: Document Event, Event: After Save133if not doc.customer:134 frappe.throw("Customer is required") # Document already saved!135136# ✅ CORRECT — Use "Before Save" or "Before Validate"137# Script Type: Document Event, Event: Before Save138if not doc.customer:139 frappe.throw("Customer is required") # Prevents save140```141142---143144## Sandbox Workarounds145146### try/except Is Blocked: Use Conditional Checks147148```python149# ❌ BLOCKED in sandbox150try:151 customer = frappe.get_doc("Customer", doc.customer)152except Exception:153 frappe.throw("Customer not found")154155# ✅ CORRECT — Check first, then access156if not frappe.db.exists("Customer", doc.customer):157 frappe.throw(f"Customer '{doc.customer}' not found")158customer = frappe.get_doc("Customer", doc.customer)159```160161### raise Is Blocked: Use frappe.throw()162163```python164# ❌ BLOCKED165if amount < 0:166 raise ValueError("Amount cannot be negative")167168# ✅ CORRECT169if amount < 0:170 frappe.throw("Amount cannot be negative")171```172173### frappe.throw() Exception Types for API Scripts174175| Exception | HTTP Code | Use When |176|-----------|:---------:|----------|177| `frappe.ValidationError` | 417 | Input validation failure |178| `frappe.PermissionError` | 403 | Access denied |179| `frappe.DoesNotExistError` | 404 | Record not found |180| `frappe.AuthenticationError` | 401 | Not logged in |181| (default, no exc) | 417 | General validation error |182183```python184# API Script — Correct exception types185if not customer:186 frappe.throw("Customer param required", exc=frappe.ValidationError) # 417187if not frappe.db.exists("Customer", customer):188 frappe.throw("Customer not found", exc=frappe.DoesNotExistError) # 404189if not frappe.has_permission("Customer", "read", customer):190 frappe.throw("Access denied", exc=frappe.PermissionError) # 403191```192193---194195## Scheduler Script: Critical Mistakes196197```python198# ❌ WRONG — No limit, no commit, no error logging199invoices = frappe.get_all("Sales Invoice", filters={"status": "Unpaid"})200for inv in invoices:201 frappe.db.set_value("Sales Invoice", inv.name, "reminder_sent", 1)202203# ✅ CORRECT — Limit, batch commit, error logging204BATCH_SIZE = 50205invoices = frappe.get_all(206 "Sales Invoice",207 filters={"status": "Unpaid", "docstatus": 1},208 fields=["name", "customer"],209 limit=500 # ALWAYS limit210)211212errors = []213for i in range(0, len(invoices), BATCH_SIZE):214 batch = invoices[i:i + BATCH_SIZE]215 for inv in batch:216 if not frappe.db.exists("Customer", inv.customer):217 errors.append(f"{inv.name}: Customer not found")218 continue219 frappe.db.set_value("Sales Invoice", inv.name, "reminder_sent", 1)220 frappe.db.commit() # REQUIRED221222if errors:223 frappe.log_error("\n".join(errors), "Reminder Errors")224frappe.db.commit()225```226227---228229## SQL Injection Prevention230231```python232# ❌ VULNERABLE — String interpolation with user input233territory = frappe.form_dict.get("territory")234conditions = f"`tabCustomer`.territory = '{territory}'" # SQL INJECTION!235236# ✅ SAFE — Use frappe.db.escape()237territory = frappe.form_dict.get("territory")238conditions = f"`tabCustomer`.territory = {frappe.db.escape(territory)}"239240# ✅ SAFEST — Use parameterized query or Query Builder241results = frappe.db.get_all("Customer", filters={"territory": territory})242```243244---245246## ALWAYS / NEVER Rules247248### ALWAYS2492501. **Use `frappe.utils.*` instead of Python imports** — Only `json` module is importable2512. **Use `frappe.throw()` instead of `raise`** — `raise` is blocked by sandbox2523. **Use conditional checks instead of `try/except`** — Exception handling is blocked [v14-v15]2534. **Call `frappe.db.commit()` in Scheduler scripts** — Changes are NOT auto-committed2545. **Add `limit` to ALL queries in Scheduler scripts** — Prevent memory exhaustion2556. **Set `frappe.response["message"]` in API scripts** — Otherwise response is empty2567. **Use `frappe.db.escape()` for user input in SQL** — Prevent SQL injection2578. **Log errors in Scheduler scripts** with `frappe.log_error()` — No user to see errors2589. **Verify Script Type matches your intent** — Document Event vs API vs Scheduler259260### NEVER2612621. **NEVER use `import` statements** (except `json`) — Blocked by RestrictedPython2632. **NEVER use `try/except` or `raise`** — Blocked by sandbox [v14-v15]2643. **NEVER call `doc.save()` in Before Save** — Causes infinite recursion2654. **NEVER use string formatting for SQL with user input** — SQL injection risk2665. **NEVER process unlimited records in Scheduler** — Always use `limit`2676. **NEVER assume `doc` exists in API/Scheduler scripts** — Only available in Document Events2687. **NEVER forget `frappe.db.commit()` in Scheduler** — All changes will be lost269270---271272## Reference Files273274| File | Contents |275|------|----------|276| `references/examples.md` | Real error scenarios with diagnosis |277| `references/anti-patterns.md` | Common sandbox mistakes with fixes |278| `references/patterns.md` | Defensive error handling patterns by script type |