Creating a custom column in Job Monitor for IBM Datacap Taskmaster Capture
To add a column:
- In the tmBatch table in the Taskmaster engine database, add a column, giving it the desired name preceded with pb_ (ex: pb_MyColumn).
- Save the table.
- For SQL only, also do the following:
- Open the JMView view for design.
- Delete each item appearing in the 'Alias' column.
- Press the ! (exclamation mark) icon.
- Save the view.
- Open the JobMonitor view for design.
- Press the ! (exclamation mark) icon.
- Save the view.
- Restart Taskmaster Server.
- To populate this field with dynamic content, scripting is required.
- If using a Batch Pilot form, the following command is used.
pilot.XtraBatchFieldValue("pb_MyColumn") = "my value" - If using a Rulerunner action, the pilot.XtraBatchFieldValue parameter must be uppercase. For example:
sValue = pilot.XtraBatchFieldValue("PB_MYCOLUMN")
No comments:
Post a Comment