Users Guide
This guide describes how to use Informant from the Account view. Depending on the specific setup in your organization you might not see all fields we refer to below. Ask your Admin about the Page Layout and the Related Objects ”Informant Hits”, ”Informant Subscriptions” and ”Informant Announcements”.
Create a Subscription
From the Account you want the Subscription to relate to
- Hoover over or click ”Informant Subscription”
- Click ”New Informant Subscription”
- Name the Subscription
- Add at least one or more URL (https://…)
Separate URLs with New Line - Add a filter (optional), see Filters below
- Save
Hits
Hits from Subscriptions you have created will be published on Account View > ”Informant Hits”.
In addition you can have personal alerts either via Chatter or e-mail or both
see Announcements
Announcements
Hits from the Subscription will be published on Account View under ”Informant Hits”. In addition you can have personal alerts either via Chatter or e-mail or both.
- Make sure you Follow the Account (check +Follow button at the top right)
- Hoover over or click Informant Announcements
- Add or remove e-mail and Chatter
- Save
Filter – Quick Guide
Informant handles unstructured information. That is why we use Regular Expressions (Regex) for powerful filtering. Regex is a sequence of characters (text, numbers and variables, boundaries and more) which the textblock we capture must match) that specifies a search pattern.
The text Informant capture is matched against a Regex to create a Hit.
Some ground rules:
- No filter lets everything pass through
- Simple string
A keyword ord expression that must be met in whole
Example:United Kingdom
- OR logic
Separate expressions with a vertical line (also called ”pipe” | ) on the same row
Example:
USA|Russia (Note the pipe)
- AND logic
Put expressions on different rows
You can add as many rows you need. All rows must be trueExample:
USA
Russia - NOT logic
If a row starts with a minus sign ”-” it is true if the expression does not occurExample:
USA
Russia
-England - Filter is not case sensitive (UPPER and lower case doesn’t matter)
Useful codes
( )
Group an expression
Boundary: b
Matches everything inside – but not outside – the boundary.
b can be use in the beginning, the end or both sides of a string
Example:
bLAWb
does not match LAWFUL or COLESLAW
LAWb
matches COLESLAW, but not LAWFUL
bLAW
matches LAWFUL, but not COLESLAW
Word Character: w
Matches any letter or numeric character (a-z 0-9), but not special character as ü ö ä å etc.
Dot: .
Matches any character
?
Character is optional
(example: colou?r maches alternative spelling)
+
Matches one or more consecutive characters
*
Matches zero or more consecutive a characters
*
Matches zero or more consecutive a characters
{n}
Matches exactly n consecutive characters.
{n,}
Matches at least n consecutive characters
{m, n}
Matches between m and n consecutive characters