Sidebar

How to search messages based on condition in Message history tab?

0 votes
340 views
asked Jul 29, 2016 by ramaswamy-s-6353 (440 points)
I want to know if I can use the advanced mode search in messages tab to check if a particular field is blank or has a particular value etc. For eg. if I want to find all messages with blank PV1.7 value.

1 Answer

+1 vote

Yes, you can check for blank fields with the advanced search feature.

1. From the Messages, Error, Completed, Inbound, Processing, or Outbound tabs click on the elipsys button next to the search field.

2. Click on the Advanced button at the bottom of the Search Messages dialouge.

3. Provide a description (e.g. search for blank field) and then click on insert.

4. Choose a type of Custom and then past the following code in place.

var value = source.getNode('PV1-7');
return StringUtils.isBlank(value);
 
5. Click ok and then Search.
 
answered Aug 2, 2016 by gary-t-8719 (14,860 points)
...