Source: projects/identity-management/oim-kb-update/runs/2026-04-27-16.md
> Source: projects/identity-management/oim-kb-update/runs/2026-04-27-16.md
OIM KB Update Run - QBM_PJobCreate Methods and Events
Scope
User request: research which methods and events can be used by the QBM_PJobCreate* stored procedures, especially the object-layer HOCallMethod and HOFireEvent variants.
Work Done
- Queried live sandbox DB metadata for
QBM_PJobCreate_HOCallMethod*andQBM_PJobCreate_HOFireEvent*procedure parameters. - Queried method/event metadata tables:
DialogMethodDialogObjectHasMethodDialogObjectQBMEventJobEventGenJobChain- Scanned SQL module definitions for shipped calls to
QBM_PJobCreate_HOCallMethod*andQBM_PJobCreate_HOFireEvent*. - Updated the DBQueue/Object Layer Jobs KB note and added a sandbox evidence note.
Findings
QBM_PJobCreate_HOCallMethod*accepts a target object type and object selection plus@MethodName,@save, and@param1...@param10.QBM_PJobCreate_HOFireEvent*accepts a target object type and object selection plus@EventNameand parameter pairs@p2/@v2...@p31/@v31.DialogMethodis not the complete callable method list. It only captures UI/dialog methods. Shipped SQL invokes object-layer/customizer methods such asAbort,MakeDecision,ESCALATE,PrepareAttestations, andMakeDecisionOnInsertAsync, none of which appear asDialogMethodrows in this sandbox.QBMEventis the durable event catalog. Events are table-scoped(TableName, EventName)pairs, andJobEventGen/JobChainmust be checked to see what process work is generated and whether it is disabled by preprocessor.
Files Updated
projects/identity-management/knowledge-base/oim-dbqueue-and-object-layer-jobs.mdprojects/identity-management/oim-kb-update/sandbox-db/2026-04-27-pjobcreate-method-event-evidence.mdprojects/identity-management/oim-kb-update/README.mdresources/glossary.md
Safety
SELECT-only sandbox DB inspection. No DML, no job creation, no event firing, no DBQueue insert.