ERP Planning Lab
ERP-style planning, demand-supply review, planned order release, PO/job output, score validation, and registers.
Open ERP Planning LabQuick access to key tools from Tools, ERP, AI, Workspaces, and Portal Directory pages.
ERP-style planning, demand-supply review, planned order release, PO/job output, score validation, and registers.
Open ERP Planning LabExplain Oracle SQL/PLSQL, review joins, identify tables, and improve code quality. Sign-in may be required.
Open SQL / PL-SQL ToolConnect to Oracle, write formatted SQL, browse objects, extract DDL, run read-only SQL, and load CSV data.
Open Oracle WorkbenchUse these smoke tests to confirm that the Quantum API Console menu link, backend routes, mock optimizer, and API calling workflow are working correctly.
Expected result: Quantum API Console page loads successfully.
/quantum-api-caller/help.Expected result: Help and console navigation works.
This test does not require any paid quantum provider. It calls the internal mock optimizer route.
curl -sS -X POST https://www.technopkg.com/api/quantum/mock-optimizer \
-H 'Content-Type: application/json' \
-d '{
"scenario": "supplier_selection",
"objective": "minimize cost, lead time, and risk",
"supplier_data": [
{"supplier":"SUP_A","unit_cost":12.5,"lead_days":12,"quality_score":0.96,"risk_score":0.20,"capacity":700},
{"supplier":"SUP_B","unit_cost":11.8,"lead_days":18,"quality_score":0.92,"risk_score":0.35,"capacity":900},
{"supplier":"SUP_C","unit_cost":13.1,"lead_days":8,"quality_score":0.97,"risk_score":0.15,"capacity":500}
]
}'
Expected result: response JSON contains "ok": true, "provider": "TechnoPkg Mock Quantum-Inspired Optimizer", and a recommendation.
Expected result: Response tab shows HTTP 200 and a mock optimization result.
Use this to confirm that unsafe local/private targets are blocked by default.
| Field | Value |
|---|---|
| Method | GET |
| Base URL | http://127.0.0.1:5000 |
| Endpoint Path | / |
Expected result: Request is blocked because private/local network targets are not allowed unless explicitly enabled for a lab setup.
Use this body JSON for supplier-selection or planning experiments.
{
"scenario": "supplier_selection",
"objective": "select best supplier mix using cost, lead time, quality, risk, and capacity",
"demand_qty": 1000,
"supplier_data": [
{"supplier":"SUP_A", "unit_cost":12.5, "lead_days":12, "quality_score":0.96, "risk_score":0.20, "capacity":700},
{"supplier":"SUP_B", "unit_cost":11.8, "lead_days":18, "quality_score":0.92, "risk_score":0.35, "capacity":900},
{"supplier":"SUP_C", "unit_cost":13.1, "lead_days":8, "quality_score":0.97, "risk_score":0.15, "capacity":500}
]
}