The BPF Web Application allows users to be notified of new Cases available in their inbox via Process Engine (PE) e-mail notification. In order to leverage this functionality, e-mail notification must be configured for PE. Instructions on configuring e-mail notification in PE are available in the FileNet P8 Platform documentation.
This help topic provides information about configuring e-mail notification within BPF as well as configuring PE e-mail templates to work with BPF Cases in notification messages. E-mail notification in BPF utilizes the BPF integration servlet for Case access. Detailed information about capabilities and usage of the integration servlet can be found in the integration_servlet.htm section of the BPF online help.
E-mail notification of new work can be enabled in the BPF Web Application user interface using the user preferences tool (located in the upper-right of the user interface). By checking the box Receive New Work Assignments Via Email and entering a valid e-mail address in the Workflow Notification Email text box, e-mail notification is enabled. This will cause a single e-mail notification to be sent to the designated e-mail address each time a new Case is received in the current users inbox. E-mail notification in BPF can only be configured for personal Inbaskets and not for public work queues.
The format of the e-mail message is determined by a PE e-mail template. These
templates are located on the PE server in the \fnsw_loc\sd\msg\1
folder and have a .msg extension. For more information about locating these files, e-mail templates, and available system variables, see the Configuring
E-Mail Notification and Modifying E-Mail Notification Templates
subjects in FileNet P8 Platform documentation. The BPF Web Application will always use the stp_new.msg
e-mail template. The appearance of these templates can be modified using
standard HTML and PE variables to provide dynamic messages containing links
to the new Cases that have been received. Currently there is no built-in macro
to supply the BPF Web Application URL to the .msg
file dynamically
so the URL to the BPF deployment must be manually entered in the template.
By default the stp_new.msg template contains a link to the PE work item. For use with BPF, this template must be modified to contain a link to the BPF Case via the BPF integration servlet. The stp_new.msg file is an HTML document and can be modified using any text editor. This document will only address updating the specific link to the PE work object to a link to the BPF Case object. Other modifications to this file are possible but not addressed here. Follow the steps below to update the stp_new.msg file.
To update the stp_new.msg file
<a href="<$F_WEBSERVER>/eprocess/stepprocs/<$F_STEPPROC>?queueName=<$F_WORKQUEUE>&wobNum=<$F_WobNum>">
Step Assignment...
</a>
/bpf
for
BPF).<a href="http://SERVERNAME:PORT/BPFDEPLOYMENT/Bp8IntegrationServlet?_commandId=9010&hideInbaskets=1&_mode=1&wobNum=<$F_WobNum>">
Process Case...
</a>
An example of a modified URL to the BPF integration servlet is:
<a href="http://p8design:7001/bpf/Bp8IntegrationServlet?_commandId=9010&_mode=1&wobNum=<$F_WobNum>">
Modifying the URL above formatting adjustments can be performed to provide
a more visually appealing message format. See BPF code samples for a sample
of a modified .msg file.