Adimpact.com
GoldMine Productivity Boosters
Name:

Primary Email:

I value your email privacy. I will never ever spam you or rent/share your email address with anyone. Period.



Share

When you invest in Crystal Reports for GoldMine not only do you get 49 ready-to-use to Crystal Reports for your edition of GoldMine (Corporate 6.7, Corporate 7.0, Corporate 7.5 or Premium 8.x/9.x) but I’ll also release BONUS reports from time to time that you’ll be able to get at no additional charge.

Here’s one of those…

(Click on the images for a larger version)

Call and Appointment Report by User – Selection Criteria

Call and Appointment Report by User – Report Sample

If you have already purchased Crystal Reports for GoldMine simply login to the download site with your credentials to download the new Crystal Report.

Of course, if you need some custom Crystal work for GoldMine or other applications please drop me at chad.smith@thegoldmineblog.com.

Share

{ 0 comments }

I’ve been a long time user of CompanionLink for syncing GoldMine with applications like Outlook as well as my iPhone.  The folks at CompanionLink have recently released a major new release 5.0, which has a great new user interface for syncing GoldMine with Outlook, iPhones, Android devices, etc.  I just tested out the GoldMine to Gmail sync for contacts and am very impressed!  Worked like a charm.  More info on the upgrade at: http://www.companionlink.com/blog/2011/09/companionlink-5-launches-today/

http://www.companionlink.com

When purchasing CompanionLink be sure to use Affinity Code TB5222….

Share

{ 0 comments }

Happy New Year Everyone!

If one of your New Year’s resolutions is to improve your follow ups here’s a SQL Query that you’ll find helpful.  It will show a list of contacts as well as the date of the last completed appointment, and next scheduled appointment, as well as last completed call, and next scheduled call.

SELECT   c1.company            ,
 c1.contact            ,
 c1.phone1             ,
 la.ondate AS Last_Appt,
 na.ondate AS Next_Appt,
 lc.ondate AS Last_Call,
 nc.ondate AS Next_Call,
 c1.key1               ,
 c1.key2               ,
 c1.key3               ,
 c1.key4               ,
 c1.key5               ,
 c1.accountno
FROM     contact1 c1
 LEFT OUTER JOIN
 (SELECT  MAX(ch.ondate) AS ondate,
 ch.accountno
 FROM     conthist ch
 WHERE    srectype = 'A'
 GROUP BY accountno
 ) AS la
 ON       la.accountno = c1.accountno
 LEFT OUTER JOIN
 (SELECT  MAX(ca.ondate) AS ondate,
 ca.accountno
 FROM     cal ca
 WHERE    rectype = 'A'
 GROUP BY accountno
 ) AS na
 ON       na.accountno = c1.accountno
 LEFT OUTER JOIN
 (SELECT  MAX(ch.ondate) AS ondate,
 ch.accountno
 FROM     conthist ch
 WHERE    srectype = 'C'
 GROUP BY accountno
 ) AS lc
 ON       lc.accountno = c1.accountno
 LEFT OUTER JOIN
 (SELECT  MAX(ca.ondate) AS ondate,
 ca.accountno
 FROM     cal ca
 WHERE    rectype = 'C'
 GROUP BY accountno
 ) AS nc
 ON       nc.accountno = c1.accountno
WHERE    c1.key1               = 'Customer'
AND      c1.key4               = 'BILL'
ORDER BY c1.company

To run this simply go Tools | SQL Query then past in the query and click on Query.

You’ll notice at the end in the WHERE clause I have:

c1.key1 = ‘Customer’

which will limit the contacts returned to just customers.

I also have:

c1.key4 = ‘BILL’

which limits these only to Bill’s contacts.  You will want to tweak fields and values for your particular needs, or take the entire where clause out for the entire database.

Share

{ 1 comment }

There are many ways to encourage users to fill out fields… Here’s a very non-draconian and non-invasive way to encourage the users to fully fill out a record. This method will make the field label red if the field is left blank, therefore drawing attention to the field.

In our example we’ll use the Company field; however, this can be done for any field in the top-half of the screen or the Fields tab. First, do a Right-Click | Properties on the Company field while logged in as a user with ‘Master’ rights. Then go to the Color tab.

Click on the Expression radio box under Label Color and enter this:

iif(trim(company) <= '', 255, -1)

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

If you are using a different field you’ll need to substitute that field name for ‘Company’. The 255 is the color red while the -1 is the default label color.

Then OK.

So now the Company field is Red if the field is left blank.

 

 

 

 

 

 

 

 

 

Happy GoldMining!

Share

{ 0 comments }

Occasions

  • Yearly Reminders
    • Birthdays
      • Anniversaries
      • Setting an Occasion
  • Viewing Occasions
    • Calendar
    • Activity List


Share

{ 0 comments }

If you’ve been using GoldMine for a while, and I am sure you have, you probably have a lot of old and outdated data in your database.  For example, everyone probably has something of an Account Type field in your system.

Our pick-list is quite current and update to date, but how do you see if there are any outdated entries in the system?

The solution is pretty easy!

First, find the database name of the field you want to review.  This can be done with a Right-Click | Properties of the field in question.

Since this is my KEY1 field I can use this SQL Query:

SELECT   key1     AS field,
 COUNT(*) AS COUNT
FROM     contact1
GROUP BY key1
ORDER BY COUNT(*) DESC

To run this simply go Tools | SQL Query then past in the query and click on Query.

If the field you want to examine does not have a ‘U’ in front of it simply swap out KEY1 for your field name in the query.  If the field does begin with a ‘U’ then swap out the field name as well as contact1 for contact2 as you’ll be looking at a user-defined field.

From here you can use filters to find those records that don’t fit and fix as needed.

Share

{ 0 comments }

Upcoming wMobile Webinars

October 22, 2011

in Misc.

wMobile is an excellent 3rd party add-on for GoldMine that allows you to access GoldMine from browsers, smartphones, and tables.  It’s an excellent product that I highly recommend.

W-Systems, the makers of wMobile have several upcoming webinars, here’s a link to register.  It’s definitely something worth checking out.

http://www.w-systems.com/www/campaign/2011/10/introducing-wmobile-2-1/index.html

Share

{ 0 comments }

GoldMine Record Alerts

  • Alert demo
  • Adding an alert to a contact
    • Edit > Record Properties > Record-related Settings
  • Creating new alerts
  • Changing an alert
    • Knowledge Base > System
  • How to change the alert default time
    • GM.INI
    • [GoldMine]
    • SectionRecAlertSec=<number of seconds before alert appears>
  • SQL Query for alerts to see all contacts with alerts

 


Share

{ 0 comments }

Let’s say you want to find all contacts in Florida who are Customers…  We want to filter on these two fields.


This example will work for filtering or segmenting on any standard or custom GoldMine field.

First double-click on the first field to bring up the Contact Search Center based on that field.  For our example we’ll use State as the field to double-click on.

 

 

 

 

 

Click the “+” sign to add another filter criteria.

We can then change the highlighted items to an additional search criteria, e.g. “Account Type” and “Customer”.

Get a Full Year of GoldMine Training for Less Than .50$/Day!

Share

{ 0 comments }

GoldMine 9.0.2 Release

June 29, 2011

in Misc.

To everyone in the US & Canada – Happy Independence Day!

GoldMine 9.0.2 is now in General Availability – “Below the Fold” are the Release Notes.

Get a Full Year of GoldMine Training for Less Than .50$/Day!

[click to continue…]

Share

{ 0 comments }

Hey there – hope everyone is having a great summer!

Keeping your data clean in a CRM system like GoldMine, can be a chore.  Here’s a nifty SQL Query that’ll help you find invalid email addresses in Goldmine.  Simply Copy & Paste this into GoldMine’s SQL Query window (Tools | SQL Query) and start cleaning!

SELECT c1.company                                      ,
 c1.contact                                      ,
 cs.contsupref + ISNULL(cs.address1, '') AS email,
 c1.accountno
FROM   contact1 c1
 INNER JOIN contsupp cs
 ON     c1.accountno = cs.accountno
 AND    cs.contact   = 'E-mail Address'
 AND    cs.rectype   = 'P'
 AND
 (
 (
 cs.contsupref + ISNULL(cs.address1, '') NOT LIKE '%@%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%]%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%[%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%)%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%)%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%,%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%..%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%/%'
 )
 OR
 (
 cs.contsupref + ISNULL(cs.address1, '') LIKE '%\%'
 )
 )

Don’t miss our June Special on GoldMineTraining.NET

Share

{ 0 comments }

Fixes in companionlink.exe 5/23/2011 build 4044
- Added logic to increase update sync speed for Outlook and/or Google sync.
- Fixed issue where sync with Google would occasionally prompt for .NET 2.0 installation.
- Fixed issue where edited instances of GoldMine 9 recurring events would not sync without a reread.
- Added support for syncing contact linking info with Zoho calendar events.
- Cleaned up some minor UI issues under the Applications tab.
- Stability enhancements for Secure Hosted Sync.
- Stability enhancements for GroupWise sync.
- (Pro only) Added support for syncing Palm custom fields 5 – 9 to Blackberry contact note.
- Fixed issue syncing certain company names with Salesforce.
- Added support for syncing Outlook tasks created from email via drag and drop.
- Fixed issue syncing Highrise account with no contacts present.
- Fixed issue where certain events in Google could be moved to a different Google calendar after syncing with ACT!.
- Added option to transfer cleared records in CLTC.
- Fixed issue where “Acct:” prefix could sync from handheld device back into BCM.
- Added support for sending ACT!/GM linking info to Outlook calendar note when configured for iPhone via Outlook.
- Added conflict resolution settings for WiFi sync.
- Fixed issue where certain unicode characters could prevent data from syncing with Palm Desktop.
- Fixed issues syncing xml characters with Google phone fields.
- Fixed issues syncing “last day of the month” recurring events with Google.
- Improved category filter interface for CompanionLink Express/Pro/FA.
- Fixed issue where relabeled email field in Google could cause email deletion in Zoho.

http://www.companionlink.com

When purchasing CompanionLink be sure to use Affinity Code TB5222….

Share

{ 0 comments }

LinkedIn

June 1, 2011

in Misc.

Just added a link to the site to allow you to find and add me to your LinkedIn contacts…

linked-in-add-graphic

Share

{ 0 comments }

In GoldMine Premium Edition you’re probably very use to seeing the Toolbar.

toolbar1

The GoldMine Toolbar provides easy one-click access to commonly used functionality.  If you’d like to add/remove options from the Toolbar simply click on the down-arrow to the right of the Toolbar.

toolbar2

Then choose Standard and you can Check/Uncheck the options you’d like to see.

toolbar3

GoldMine Blog Notification Form

Share

{ 0 comments }

Frequently Asked Questions (FAQ)

Question: How long will FrontRange Solutions support GoldMine Corporate Edition 6.6 & 6.7?

Answer: FrontRange Solutions will continue to provide support for these versions until December 30th 2011.

Question: What about GoldMine Corporate Edition 6.6 & 6.7 customers who have bought maintenance?

Answer: GoldMine Corporate Edition 6.6 & 6.7 clients currently on maintenance are able to upgrade to the latest version GoldMine Corporate Edition 7.6 at no additional license cost. To recognize these GoldMine Corporate Edition 6.6 & 6.7 customers who are current on maintenance, you can upgrade to GoldMine Corporate Edition 7.6 at no charge as part of your maintenance coverage. In addition we are offering a one time only promotion for you to upgrade to GoldMine Premium Edition. Contact us at (617) 942-1438.

Question: What about GoldMine Corporate Edition 6.6 & 6.7 customers who are not currently on maintenance?

Answer: For GoldMine Corporate Edition 6.6 & 6.7 customers not currently on maintenance are able to upgrade under a special promotion. Contact us at (617) 942-1438

Share

{ 0 comments }

Customizing GoldMine Fields Part 3: Record Types

  • What are Record Types… Based on field condition change:
    • Primary Field View (Top 1/2 of Record)
    • Custom Screen (Fields tab)
    • Default GM+View
  • Setup Primary Field Views
  • Create Record Type
  • Set Record Type Rules
  • New Record Window

 


Share

{ 0 comments }

3-25-2009-11-03-06-pm

So, the spring season has now begun and, it’s time for some Spring cleaning on our GoldMine database!

Today’s tip is how to do a ‘Merge Purge on Tagged Records’.  When a merge/purge is done we combine two records into one.  Information on the contacts, details, referrals, history, links, opportunity, and project tabs will be combined into a single record.  For fields like contact, company, etc. the record we tag first will win.  If the first record tagged is missing information, say a fax number, but the second tagged record isn’t, the fax number will be populated in the surviving record.  This is my favorite method for removing duplicate records from my GoldMine!

First, we need to Tag two records.  This is done in the Contact Search Center by holding down the Control key and doing a Single-Left Click on the two records you want to merge together.

If you’re using GoldMine Premium Edition, we’ll still do this within the Search Center, but just click the check boxes to the two duplicates.

3-25-2009-9-59-03-pm1

After tagging two records you’ll notice the title bar of your contact record will tell you that you have two tagged records.

… or in GoldMine Premium Edition

3-25-2009-10-05-20-pm1

There is no undo after a merge/purge so be sure you have the correct two records tagged.  Check and Double-Check!

With the two records tagged choose Tools | Merge/Purge Records | Merge Tagged Records from the main menu.

Or in GoldMine Premium Edition choose Tools | Data Management| Merge/Purge Records  |Merge Tagged Records

3-25-2009-10-07-50-pm

GoldMine will warn you…

Click Yes to complete the Merge/Purge.

Happy GoldMining!

Share

Fixes in companionlink.exe 3/22/2011 build 4036
* Additional fix for the issue where USB sync would fail for some Android users. The general issue was addressed in build 4035. Build 4036 includes a fix for a special case of the issue, which affects Android devices that use the most recent SQLite SDK. As of 3/22/2011, this still appears to be a very limited subset of Android devices presently available.

Fixes in companionlink.exe 3/21/2011 build 4035
* Fixed an issue where USB sync would fail for some Android DejaOffice users.
* Added Outlook fields “Office” and “Children” for DejaOffice for iPhone via WiFi.

Fixes in companionlink.exe 3/14/2011 build 4034
* Fixed issue where DejaOffice for Android databases were sometimes unreadable due to an sdk update.
* Fixed issue syncing Chinese/unicode characters to DejaOffice via WiFi. Problem only existed when using Chinese/Hong Kong locale in Windows.
* Fixed issue where the “Transfer Cleared” setting was not displayed in some multi-profile configurations.
* Fixed issue where accounts in BCM were prepended with “Acct:”.
* Fixed issue where task priorities were syncing incorrectly from PDT 6.2 to Android DejaOffice.
* Fixed issue where recurring event end dates were not syncing correctly from PDT 6.2 for time zones east of GMT.
* Fixed issue syncing contacts from Google if they originated on iPhone.
* Fixed bug where the completed field for PDT6 would not sync to Android via all sync methods.
* Improved handling of Outlook meeting attendees when syncing with DejaOffice for Android.
* Improved support for syncing recurring task alarms with DejaOffice for Android.
* Added feature where “Other” Gmail contacts without name or company are ignored. This prevents nameless, email-only contacts from syncing.
* Added support for syncing more GroupWise contact fields.
* Added support for syncing additional contact fields with Lotus Notes 8.

Fixes in companionlink.exe 3/2/2011 build 4033
* Fixed issue where “improper argument” error could be generated during WiFi sync.
* Added ability to apply Outlook category filter separately for contacts, calendar, tasks, and notes (under the Category Filter tab).

http://www.companionlink.com

When purchasing CompanionLink be sure to use Affinity Code TB5222….

Share

{ 0 comments }

If you use GoldMine’s Links tab it’s easy!

In each GoldMine record you will have “Links” tab.  Often times I’ll rename it “Docs” when I implement, but it’s the same thing.  If you don’t see it, you may need to turn it on with the Tab selector button.

Here is our Links tab.

Once a document is on the Links tab a simple Double-Click will open it.  Any kind of document, from Word, to Excel, to PDF, to a Graphic can be ‘linked’ via the Links tab.

To manually add a document…  First, Right-Click | New from within the white area of the Links tab.

This will bring up the Linked Document window.  Type in a few words to describe the document in the Document Name area.

Then click the Open button, I’ve high-lighted that in Red in the graphic.

This will bring up the standard Windows Open Dialogue box.  Navigate to where you’ve saved the document, select it, then click Open.

That doesn’t actually open the document; it just tells GoldMine where you’ve saved it.  If you want other people in your office to be able to open the document from GoldMine as well as yourself, you’ll need to save it somewhere on the network where everyone is able to access it.  GoldMine doesn’t save the document in its database, it’s saving a pointer to the document.

Click OK, and it’ll show up on the links tab!

If you’re saving a Word or Excel document, and you have the GoldMine link to Word and Excel installs you can save that document to the Links tab simply by selecting Save as Linked Document from the GoldMine menu.

Share

Setting up the GoldMine/Outlook Link

  • Supported Versions: Office 2003, 2007, 2010 (32-Bit Only)
  • Global Sync Settings (Administrator)
  • Installation of the Link
  • Configuration of Synchronization


Share

{ 0 comments }