1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
494 views
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.
 
by gary-t-8719 (15.1k points)
...