IBM InfoSphere Master Data Management, Version 11.3The mpi_handler table defines the handlers that are started per callback type and interaction code combination.
| Attribute | Description |
|---|---|
| caudrecno | Creation of this particular record, from mpi_audhead |
| maudrecno | Last time the record value was modified, from mpi_audhead |
| recstat | Record status |
| handlerno | Unique ID for the handler |
| callbacktype | Indicates the callback type to which this handler
applies; values are
|
| ixncode | Unique number assigned per defined interaction |
| handlerseqno | Order the handler is started if more than one handler is registered for any given Callback Type and IxnCode combination |
| handlername | For Java™ handlers,
the fully qualified class name (for example, com.initiate.handler.MyHandler). For .NET handlers, the dll name and class name (for example, handler.dll: com.initiate.handler.MyHandler) |
| handlerargs | Optional string passed to the handlers init() method |
CREATE TABLE mpi_handler
(
caudrecno bigint NOT NULL,
maudrecno bigint NOT NULL,
recstat nchar(1) NOT NULL,
handlerno int NOT NULL,
callbacktype int NOT NULL,
ixncode nvarchar(16) NOT NULL,
handlerseqno int NOT NULL,
handlername nvarchar(255) NOT NULL,
handlerargs nvarchar(255) NULL
)
CREATE UNIQUE INDEX mpi_handler on mpi_handler (handlerno)