Adding a phone number field to Salesforce.com Opportunities
We recently had an InGenius Connector Enterprise customer who wanted to have clickable phone numbers associated with each opportunity. By default, opportunities don’t have any phone number fields.
The customer’s workflow was that they wanted their workers to go through the opportunities, and call each one every few days, until the sales was closed.
The Solution:
We advised the customer to add a field to the opportunity of type “Phone.” We called this field “Account Phone.” Since this field is of type “Phone,” it will automatically be converted to a “click-to-dial” field by InGenius Connector Enterprise.
We then added a trigger to the Account that detects any changes, and then loops through all the opportunities associated with this account, and updates the “Account Phone” field in all the opportunities.
This way, the opportunities all have a clickable phone number field that stays in sync with the phone number field in the Account.
The Trigger Apex Code:
trigger UpdateOpportunityPhoneField on Account (after insert, after update) {
// Loop through all account updates in this trigger (there will generally be one)
for(Account acct: Trigger.new) {
List<Opportunity> oppList = [SELECT id, Account_Phone__c FROM Opportunity WHERE Accountid = :acct.id AND Account_Phone__c != :acct.Phone]; // Find all the opportunities for this account.
for(integer i = 0 ; i < oppList.size(); i++){
oppList[i].Account_Phone__c = acct.Phone; // Update all opportunities with the new phone number.
}
update oppList;
}
}
Things to be aware of:
- The solution uses some Apex code to accomplish its magic. You’ll need an appropriate Salesforce.com subscription to use this solution.
- The code loops through all the Opportunities each time an Account is changed. This could use up your Apex allowance.
- If the user edits the Account Phone field in the Opportunity, this is not copied back up to the Account. You could add a second trigger for this, if needed. If the user edits the Account Phone field, the changes will be wiped out the next time the Account is edited. Another alternative is to make the Account Phone field read-only in the Opportunity Layout.
InGenius Connector How-to: setup Windows telephony location and dialing rules
InGenius Connector can create and manage it’s own dialing rules, but it also relies on the Windows Telephony Location rules to tell it how to dial. You can set these rules up in “Phones and Modems” on your Windows Control Panel, or directly from a link in InGenius Connector’s configuration window.
If you do not see the checkbox beside “Use Windows Telephony Location” where the arrow points in the image above, that means you are not an administrator on your computer and this option is already automatically checked off for you. Click on the “Edit” button encircled (ensquared?) in red above.
Clicking the “Edit” button will take you to the “Phone and Modem” dialogue box on the left. If you do not see an area code and location that matches your current location, click “New” to set it up. If it’s there, or once you’ve created your location, click “Edit.” This will bring you to the window on the right of the image above. Double check your settings, and make sure that all of the right numbers are in the yellow highlighted box. For example, I have “9″s there to access a line outside of my office network. You probably also want to make sure that “Tone” dialing is selected. Finally, click the “Area Code Rules” tab at the top of this window.
Clicking on the “Area Code Rules” tab at the top the of the “Edit Location” screen on the left of the image above will let you define rules for a specific area code. For example, if you want to make sure that your local area code is always dialed, you would select/create the area code from the window on the left, and then click “Edit.” This will open the Edit Area Code Rule window on the right of the image above. Make sure these settings are to your liking, and then click “OK” on all of the windows you’ve opened.
As a final test, you can open up the InGenius Connector settings window and navigate to the “Dialing Rules – Advanced” screen, as shown above. Type in the number you want to dial in the highlighted field above, and make sure the number that appears in the “Dialed number:” box is what you want to see.
If you are located outside North America and need to use our country-specific dialing rules, this screen is also where you have the option to select different dialing rules, or to import new dialing rules.
Finally, if your dialing rules queries are still unanswered, or if you want to know even more, you can read about Advanced Dialing Rules on our Knowledge Base: http://bugs.ingenius.com/default.asp?W19. Warning: Advanced dialing rules look scary.
Receive desktop notifications for voicemail with InGenius Connector Softphone
To make sure that you always see your softphone voicemail notifications, navigate to the Advanced settings in your softphone profile:
Click on the General Settings tab in the Advanced Softphone Configuration Window:
Once you fill in the required information, you’ll be able to access your voicemails from the desktop! Sometimes Windows hides these notifications in the systray. To make sure that you always see your InGenius Connector notifications, you can do the following:
Click on the little upward facing arrow in the Windows system tray and select Customize…
From here you can select which icons you want to always see in the systray. If you ‘show icon and notifications’ for InGenius Connector, you will always see whether or not you have voicemails waiting for you:
Let us know if this was helpful, or if you have other questions!
Creating workflow rules in Salesforce
Happy Valentine’s Day everyone!
A client recently asked about how to automate task creation based on the result of a call in the call center. This is what we recommended. In order to make these changes and set up a workflow task, you’ll have to be a Salesforce Administrator on your company’s Salesforce.com account.
First, navigate to the Setup under your name in the top right hand corner of Salesforce, and then to Create -> Workflows and Approvals -> Workflow Rules under App Setup on the left. If a splash page appears, just scroll down and click continue. You should wind up here:
Now you’ll create a new rule – this rule is the task creation trigger.
Not all of the objects will give you the option to select “Call Result,” so choose accordingly! Click next to move on to the next page:
In the example above, the call result “Need to follow up” will follow a rule called “Reconnect,” that we’ve just created. Hit Save and Next to move on to the task creation.
In the page above, you will define what action is going to be taken. In this case, I’ve chosen to create a new task. This will take me to the next screen, which lets me define the task.
Here I can select who the task will be assigned the task, when the task becomes due, and other task descriptions.
You can also indicate whether the workflow rule is triggered immediately, or if there are time dependent workflow rules. You can add different actions to the same workflow rule too – this can really ensure that nothing gets missed!
The last step is to head back to the Workflow Rules page and Activate your rule:
So that’s how you make workflow rules and automatic tasks based on the Call Center call result in Salesforce.com. We’re still experimenting with the best setup here to keep our developers, support, sales and marketing teams connected. If there are specific tasks or workflow rules that work well for your company, let us know.
InGenius Connector and TAPI
TAPI (Telephony Application Programming Interface) is an API provided by Windows computers for the control of telephones connected to your PC. There’s a great overview of TAPI at Wikipedia if you want to learn more.
InGenius Connector, and its cousin Mitel’s Unified Communicator Express can use TAPI in two ways.
- InGenius Connector can appear as a TAPI telephony provider to CRM systems,
- InGenius Connector can make use of TAPI to control your desktop phone (Connector as a TAPI consumer).
InGenius Connector as a TAPI provider for connecting to CRM systems
This is also called the TAPI Plug-in, and is an optional component of InGenius Connector and Unified Communicator Express. This feature is enabled for an existing installation of our product by simply entering a license key. When you’ve done this, InGenius Connector will now appear in the list of TAPI devices that are available on your computer, when you use a TAPI enabled CRM.
This mode is commonly used with CRMs such as Act, Maximizer, and Outlook and many custom CRM systems. From within your CRM, select the InGenius Connector from the list of TAPI devices on your computer, and your CRM will now be able to place calls using the telephone connected to InGenius Connector. You’ll also be able to see the caller ID for incoming calls, and the CRM will be able to pop the appropriate CRM contact automatically. Note that the functionality provided varies between CRM’s. Some CRM’s may not provide the screen-pop functionality, for instance.
On the telephone side of things, the TAPI Plugin is commonly used with Mitel phone systems (using Unified Communicator Express or Unified Communicator Advanced, with the appropriate InGenius plugin), as well as users of Polycom phones, Aastra Phones, Asterisk PBX’s, and Broadsoft PBX’s – systems which are generally quite difficult to control via TAPI.
Using InGenius Connector with a TAPI-enabled phone system
The other way to use TAPI with InGenius Connector is to set up a phone profile within InGenius using the TAPI phone profile (which will be available within InGenius Connector in the first Quarter of 2012). In this case, the customer has a phone system that provides a TAPI interface, and want to use the features of InGenius Connector to control their phone system, or they want to use an InGenius Connector CRM integration with their phone system.
Users will have to install InGenius Connector, as well as the TAPI service provider which is provided by the telephone system manufacturer. In the case of Cisco, this is available for free, and can be downloaded by the Cisco Call Manager administrator.
We are currently developing TAPI support for Cisco phone systems, and will be certifying other phone systems soon.
Our customers generally use this option to connect their TAPI-enabled phone system to Salesforce.com, Microsoft Dynamics CRM, and Sugar CRM.
Starting with the basics: terms for newbies
Integrated CRM and telephony programs can be intimidating for the uninitiated. Programs are often full of acronyms and may feel overly technical. The customizable options are exciting for seasoned professionals, but potentially overwhelming to first time users. So what does someone fresh to the field really need to know about CRMs and telephony to get started and to make the programs work well for their business?
The Basics
CRMs: Customer Relationship Management programs
These help document, monitor, and track a company’s interactions, primarily with its customers. The most popular CRMs right now seem to be the web-based programs. There are lots of great CRM programs out there, and we’ll get to those in a later post.
Telephony
A word for a phone system or a bunch of phones networked together. If your office has a phone system with extensions, or if you need to do something like “press 9 for an outside line” then you something about telephony.
A few important terms and features:
VoIP: Voice over Internet Protocol
This means speaking through the internet rather than through phone lines. The most well known VoIP provider is probably Skype, which allows users to download it’s software for free, make calls between web-based Skype users for free, and make calls from web-based Skype users to landlines for reduced prices.
SIP: Session Initiation Protocol
This is a standard internet language for calling via voice and video. I don’t really think it is important for the lay person to understand. It might be important to know whether you are connected to a SIP based service provider.
IP: Internet Protocal
Internet language – or – how information is sent and received over the internet. You may need to know something called your IP Address, which is a string of numbers separated by dots. This is the location of your machine on the internet, just like your home address is the location of your house in the world.
T1
This is a kind of phone line.
Call waiting
The ability of the phone to signal that another call is trying to access your line while you are on a call.
Conference call
A call involving more than two parties.
Screen Pops
This is like caller ID for computers, except that instead of just the number showing up on your phone’s screen, the contact information for the incoming caller “pops” up onto your computer screen. InGenius Connector Plugins can help your CRM “pop” screen identify additional information such as your history of calls with that phone number and notes made about that phone number, in addition to the number itself
Toast Pops
Ha! No really, this is a thing. Actually, it’s the same thing as above, except maybe the ‘pop’ isn’t the whole screen but rather a smaller window that appears from another application. Like toast. Coming out of a toaster. Get it?
CLID or CID: Caller ID
Why don’t we just call this ‘Caller ID,’ which everyone understands? I don’t know. Caller ID means that you can see who is ringing your phone before picking up.
Call Logs
These are records of inbound and outbound calls, or, all of the calls made from your phone. InGenius Connector Plugins will help your CRM log calls and attach records or notes to those calls. This is helpful for remembering each step of the sale or interaction and making sure that tasks do not fall through the cracks.
Cloud Based
When a program is based in the ‘cloud’ it means that there is nothing stored on your hard drive or local server. People appreciate that they do not need to download or install anything onto their computers, and that their data can be accessed from anywhere. Salesforce is known for being a cloud based CRM.
- — -
Things are evolving fast and different stuff is appearing all the time. Are there any other terms that you think are important for beginners? Are there other important features that you use currently, or would like to see in the future?
Happy 2012!
Wow!
It’s been a few months since we’ve updated the InGenius blog. That’s because we’ve been busy developing and perfecting some really great, easy to use telephony-CRM integrations.
What are telephony-CRM integrations you say? So glad you asked! It’s a way to make hard and soft phones connect to contact managers, (like Microsoft Outlook), and CRMs, (like Sugar and Salesforce). Your contact managers and CRMs are programs and software pieces you already know and use everyday. We just want to make it easier to put all these pieces together, saving you time and keeping you from losing track of important calls.
Our InGenius integrations are really smart applications. Over the next few posts, I’m going to show you the smartest ways to use these smart applications. If there is anything in particular you’d like to see, let me know.
What a great way to start 2012!
One Sweet Suite! Mitel Releases Live Content Suite for 5360 IP Phones
It has been a few months since we first mentioned Mitel’s Live Content Suite application, and we are thrilled that the product has finally been released for Mitel 5360 IP phones.
Developed by the InGenius Telephony Software team, this application is truly innovative and forward thinking in the way it embraces personalization and leverages live content.
Live Content Suite has three main parts:
- Live Desktop Portal, a web-based phone programming portal
- Live Blogger, an application for using standard blog tools to deliver custom content to phones
- Live Applications, applications such as LiveTwitter Reader, Live Weather, and Live Flickr that deliver dynamic content to phones
This is just one of the many “Unified Communications 2.0″ applications to come out InGenius and users can expect to see more in the very near future!
Live Content Suite is expected to become available for other Mitel display phone models (5320, 5330, and 5340) in the coming months.
Check out www.livecontentsuite.com to learn more!
InGenius Application Server for SpectraLink Handsets
After just releasing InGenius Connector for General Availability on Asterisk Exchange and unpacking from ITExpo, the InGenius team is packing their bags again to head West to attend the TEAM Polycom event next week in San Diego, CA.
Located in the Applications Beyond Voice Pavilion, booth 504, InGenius will be revealing the InGenius Application Server for Spectralink Wireless Handsets.
This incredibly cool application server offers something for both Spectralink users and Spectralink Application developers. It is shipped with a set-to-set texting application and a corporate directory look-up application, and also has the ability to run multiple applications simultaneously. As an added bonus, InGenius Application Server houses a framework that can be extended to develop or customize applications using commonly available Microsoft .Net development tools.
Whether you are looking to increase company communication and productivity or trying to extend the value of your Spectralink 8020/8030 Wireless telephone offering, InGenius Application Server offers a quality solution that fits current and future business needs. If you are attending TEAM Polycom we would love to give you a demo, stop by booth 504 and say hello!
InGenius is attending ITExpo East 2010
InGenius is very happy to be attending ITExpo East in Miami on January 20-23 as members of the Ontario pavilion in Booth 512. We are going to be showing InGenius Connector and all the cool things that it can do to help accelerate and simplify phone communications for those with a Polycom phone, Asterisk switch, BroadSoft Network or Mitel switch.
InGenius Connector has been in beta for the past few months and we are receiving a tremendous response from Polycom sales representatives, Asterisk solution providers, ITSPs and basic end-users about the value and benefits it supplies to them and their customers. Over and over we hear how much people love InGenius Connector and how well it integrates with their Outlook contacts, and Active Directory or LDAP directory. Users just can’t get over the cool Google search functions and how easy the application is to install and use. Once a person starts using InGenius Connector, they really wonder how the ever got along with out it. If you plan on attending ITExpo East please stop by booth 512 and we will be happy to give you a demo of InGenius Connector.
The World is Just One Click Away with InGenius Connector
We are at BroadSoft Connections 2009 and we are very happy to introduce InGenius Connector as a fully supported application for the BroadSoft Network.


Combine the power of the Microsoft®, the power of Google®, and the power of Broadsoft to accelerate and simplify all your phone communications with InGenius Connector. InGenius Connector is a PC application that provides click-to-dial capabilities and incoming caller ID screen pop, with full BroadSoft Directory, Microsoft® Outlook® and Active Directory® or LDAP Directory integration. And, InGenius Connector provides integrated web searches with GoogleMaps® and GoogleSearch® to locate and dial new contacts with just a single click. Integrated optional softphone, same great UI!
If you are at BroadSoft Connections we would be happy to give you a demo. Stop by booth 41 and talk with our CEO Dale Gantous, or our CTO Rich Loen. Click here to see a video of InGenius Connector in action!
SimplER released! Emergency Notification for Mitel 3300 systems
We’re thrilled to announce the general availability of InGenius SimplER for Mitel 3300s – a simple emergency notification application that emails the appropriate First Responders whenever someone calls 911 (or up to 5 emergency numbers).
InGenius SimplER is designed to work with Mitel’s 3300 systems.
Not only do you know that someone called 911, you also know who that person is and where they sit so that you can respond fast.
How Does SimplER Work?
1. User initiates emergency call.
2. SNMP trap picks up the emergency call at the 3300 switch. SimplER server is notified.
3. SimplER initiates look-up in Active Directory.
4. SimplER generates email to appropriate First Responders.
InGenius exhibiting Mitel solutions at IT Expo
We’re heading off to IT Expo tomorrow (Booth 501) to show off our new Mitel product line, including:
- Unified Communicator Express
- InGenius Broadcast Alert
- InGenius App Builder
- InGenius simplER
So, what the heck is this stuff?
Mitel Unified Communicator Express
The marketing blurb goes like this:
<blurb> Mitel Unified Communicator® (UC) Express is a lightweight, serverless unified communications client that connects your Mitel business phone with Microsoft Outlook, Microsoft Active Directory, Windows Live Messenger, and Windows Desktop Search on your PC. Productivity enhancements like click-to-dial, incoming caller ID pop-up, PC-based missed calls and speed calls list, and personal (Microsoft® Outlook®) directory integration. Available at Mitel. </blurb>
UCX is cool, because it’s a PC telephony client done right. It can optionally run right in your Windows taskbar, and can even be fully utilized from the tray icon. We have spent hundreds of hours trying to make the UI simple, yet extremely functional. You won’t find a huge app popping up every time the phone rings, or when you want to make a call – simply type in a few characters of the name of the person you want to call – and the app will find the number and dial. Nothing pops up or distracts the user.
UCX is the new version of Mitel’s Integrated Office Companion. UCX is an incredible upgrade to IOC, adding many cool features such as:
- Multiple phone profiles: If you have phones at your office, home, and on the road, you can set up phone profiles. UCX will automatically sign onto the phone appropriate for your location,
- Support for Mitel 5330, 5340, and the new 5312 and 5324 phones,
- Excellent support for Vista,
- And, we’re very excited to announce that UCX will soon have a built-in softphone, which you can use when you’re away from your desk.
- UCX is also extendable through TAPI, or our plugin API which we can adapt to your CRM solution, even if web based like salesforce.com. It’s a powerful tool for all employees, not just sales or call center agents.
InGenius Broadcast Alert
Broadcast Alert is a mass notification system that can send alerts to 10′s of thousands of your employees, via alerts that pop up on their PC’s, and their Mitel phones. Features include:
- PC client that’s easy to role out in large installations,
- PC client can display an alert, including an audio alert, and text and graphical instructions, and can even completely lock out the user’s PC – so the user is compelled to leave their office.
- Alerts can be displayed on Mitel’s 5300 series phones – currently supported on the 5340 and 5330 models, and soon on all 53xx phones.
- Alerts can be sent to user specified zones,
- Each Zone can have a custom exit instructions and graphic, allowing you to specify exit instructions for each floor of a building, or each building on campus,
- The system is EXTREMELY easy to maintain – new clients show up in the right zones automatically, without any administrator involvement.
- Users automatically change zones if they are mobile – so a laptop user will automatically join the zone of whatever building they are in as they move about the campus.
InGenius Application Builder
Build HTML applications for your Mitel and Polycom phones using a wizard based online tool.
App Builder is an online tool that makes it easy to create HTML applications for the hospitality industry, with other verticals coming soon.
You simply follow through the wizard, then click on download to obtain a sophisticated HTML application customized for your property.
We’re excited to be demonstrating new support for Polycom phones at IT Expo. Polycom’s phones include colour models which are perfect for use with App Builder. Stop by and check it out!
InGenius simplER
simplER is a great product for users of Mitel’s 3300 series of switches. simplER monitors your 3300 looking for calls to 911 or any other emergency numbers you specify. When it detects an emergency call in progress, simplER looks up the caller in your Active Directory database, determines the caller’s location and name, then alerts approriate first responders for that office area, building floor, or campus building.
As the name implies, simplER is incredibly easy to configure and maintain, and is extremely flexible in it’s notification options. You can customize the notifications that are sent, and easily manage the notification groups by simply creating Active Directory groups following a simple naming convention.
simplER is an essential tool for EVERY Mitel 3300 system installation.
New and Exciting Stuff we can’t talk about here!
We’ll be highlighting some other exciting new stuff at IT Expo – including solutions for Asterisk users, advanced SIP softphone functionality and more. Please stop by at booth 501!
We’ll be posting photos and more blog entries from the show. Keep checking back for more exciting news from the show!
Intelligent Directory for Mitel 5330 and 5340 phones released!
We’re pretty excited around here! Our Intelligent Directory product is now available through Mitel. I’ve talked about Intelligent Directory before (check out the details here) – ID is an application that runs on your Mitel 5330 or 5340 phone, and provides a simple on-screen searchable directory of all your corporate contacts (from your corporate Active Directory), as well as your personal Outlook contacts.
The application has been in trials since May – it’s solid and really useful.
We have had to work very hard to make the application as responsive as possible when running on a Mitel phone. The CPU in the phone is nowhere near as fast as a desktop PC’s CPU – so you have to apply a ton of optimizations and special techniques to ring every bit of performance out of the device as possible.
In fact, we’ve made performance improvements throughout our beta cycles, improving performance by 5 times. We’ve also streamlined the User Interface, and added features as requests came in from our beta trial customers.
Some examples:
- The application used to run in “Corporate Contacts” mode or in “Outlook Contacts” mode. We found a way to largely get rid of this modality, and allow you to choose where your search will take place right when you are entering the characters you want to search for.
- We introduced the concept of “Favorites” and made it easy to add any Outlook or Corporate contact to your favorites list.
- Doing queries of your Outlook contacts through the exchange server was quite slow – something people complained about. So, we have changed the product to cache any Outlook contacts you save as “Favorites” so that they pop up very quickly.
- We added the ability to refine a search – if you enter a few characters of someone’s name, and get back too many results, you can easily refine your current search to narrow down your choices.
- We added AJAX style interactions on the phone pages, so as you click between pages, only the data on the pages change – none of the graphics or underlying code on the page have to reload.
The application has ended up being very usable and friendly.
Intelligent Directory is available here - download the application, the user guide and installation guide.
If you want to purchase the application, the Mitel part numbers are:
- Intelligent Directory 30 Pack: 51011224
- Intelligent Directory Presence Option 30 Pack: 51011225 (This upgrade to the basic product provides LCS presence indications on the phone beside each directory entry that is shown)
Have fun!
A real business app for Facebook!
Iotum just released the first Facebook application I’ve seen that might actually be useful for business use. Their application: “FREE Conference Calls” (what a GREAT name!!!) – allows you to set up conference calls with your buddies on Facebook – AND your friends who aren’t yet on Facebook.
The application has a ton of nice features:
- Just a couple of clicks to set up a call.
- Enter a Time, Subject, and an Agenda,
- Add your Facebook friends or anyone else, by email or by phone number,
And your call is on!
Call quality is pretty good, and the app is very easy to use.
Best Feature: Your friends will receive a Facebook message, email and/or a text message with the call info just before the call! Makes it simple to just click on the phone number in your Blackberry to join the call.
One quibble – it would be nice if the app sent the call organizer an email and SMS message as well. It’s really nice to be able to call in via a simple click.
Some Screenshots:
Step 1: Call Time and Title
Step 3: Invite your Facebook friends, or ANYONE else!
Step 3a: Inviting a non-facebook contact to the call
![]()
Step 4: Manage and monitor your call
Nicely done Iotum!!






















