How to Use BPM Messages in Epicor ERP

BPM Messages

BPM messages can be used to both debug BPMs and show information to Epicor users. The code shown below gives two examples of how messages can be used in your BPMs.

Please click on the images below for the larger size.

This is the complete code used in this example. Code can be copied at the bottom of this post.

Screenshot of the code needed

This information message warns that the new customer address is missing.

Screenshot of the code needed

This informational message about adding a new customer, in this example, with the name John Smith.

Screenshot of the code needed

The following is the code I used for these examples:

/* Display informational and warning messages */ Define Variable debugMessage as Character. Define Variable debugMode as Logical init True.

If (ttCustomer.Address1 = “”) Then {lib/PublishInfoMsg.i &InfoMsg = “‘Warning: Address is missing from new customer'” &InfoSeverity = {&MESSAGE_WARN}}

If (debugMode = True) Then Do:

            Assign debugMessage = “Adding new Customer with name ” + ttCustomer.Name.
           {lib/PublishInfoMsg.i &InfoMsg = debugMessage &InfoSeverity =
           {&MESSAGE_INFO}}
      End.

End.

Suggested

Tech Stressed?

Top Posts

Subscribe For More Content