Follow these steps to install Pretius Developer Tool without the plugin.
Compile the package spec and body:
pkg_com_pretius_apex_devtool_spec.sqlpkg_com_pretius_apex_devtool_body.sql
From: plugin/db
Create a Build Option with:
Create an Application Process with:
-
Name:
PDT_AJAX -
Point:
Ajax Callback -
PL/SQL:
pkg_com_pretius_apex_devtool.pdt_ajax; -
Authorization Scheme:
No Authorization Scheme -
Build Option:
PDT
Use this guide to choose a bundle:
| Name | Pros | Cons |
|---|---|---|
pdt-bundle.zip |
All features | Adds ~9 static files |
pdt-bundle-lite.zip |
Only 2 static files | No Master-Detail Debug feature |
Go to Static Application Files > Create File and upload one of:
server-dist/pdt-bundle.zipserver-dist/pdt-bundle-lite.zip
Go to Page 0 > Dynamic Actions > Page Load and create:
-
Name:
Pretius Developer Tool -
Action:
Execute JavaScript Code -
Build Option:
PDT -
Code:
function loadPretiusTool(cb) { if (window.pdt) return cb(); const s = document.createElement('script'); s.src = '#APP_FILES#pretiusDeveloperTool.bundle.min.js'; s.async = false; s.onload = cb; s.onerror = () => apex.debug.error('Pretius tool load failed'); document.head.appendChild(s); } loadPretiusTool(() => pdt.renderBundle());


