Great Plains Integration Manager scripting and translation - overview for programmer, software developer, database administrator, IT specialist
Microsoft Business Solutions main middle market ERP application - Microsoft Great Plains has multiple integration options: MS SQL Scripting (stored procedures and views), ADO.Net programming, Microsoft SQL Server DTS packages. You certainly can deploy such SDK tools as eConnect. However here we would like to show you how to program the simplest user friendly tool: Microsoft Great Plains Integration Manager.
We assume that you are familiar with Microsoft scripting technologies: Visual Basic for Application (VBA). You should be aware, however, about poor performance of Integration Manager. We recommend it for low volume of complex transactions. It is good tool, if you are importing about 100 transactions per day from text file (when you need to come through empty lines or something not matching the template to filter integration lines). If you have thousand transactions and performance is critical - switch to SQL Stored procs or Dexterity custom process server.
1. VBA Scripting ? Launch Great Plains Integration Manager, open your integration, right click->Properties, switch tab to scripts, open Before Document script. Now place this code in it:
If Left(SourceFields("F4"), 4)="THRU" Then
SetVariable "DocDate", Right(SourceFields("F4"), 8)
End If
If IsNull(SourceFields("F1")) Or IsNull(SourceFields("F7")) Then
CancelDocument
End If
It should mean that you can create DocDate variable and assign it the value from your query field. The second statement cancels document integration if certain condition met (when line is empty or is not actually integration line - something like comment record, etc.)
Now open Before Document Commit script and place this code there:
Dim MyTime, MyHour
MyTime = Now
MyHour = Hour(MyTime)
If Not IsNull(GetVariable("DocDate")) then
SetVariable "DocNumber", GetVariable("DocNumber")+1
DestinationFields("Document Number")="THRU"+GetVariable("DocDate") &"A" & GetVariable("DocNumber")
DestinationFields("Posting Date")=GetVariable("DocDate")
DestinationFields("Description")="Client Check "+ SourceFields("F1")
If Not IsNull(SourceFields("F8")) Then
DestinationFields("Check.Check Number")=SourceFields("F8")
Else
SetVariable "DocNumber", GetVariable("DocNumber")+1
DestinationFields("Check.Check Number")=GetVariable("DocDate")& MyHour&GetVariable("DocNumber")
End If
DestinationFields("Check.Date")=GetVariable("DocDate")
If Month(DestinationFields("Check.Date")+1)= Month(DestinationFields("Check.Date")) Then
DestinationFields("Check.Date")=DestinationFields("Check.Date")+1
End If
End If
Here you do two things. First you construct check number, using Date and time plus Document number. And the second is even more interesting - you alter check date.
In After Integration script place this code:
ClearVariables
It is good idea to nullify your variables.
2. Translation. Imagine that your are something like collection agency and you need to translate your vendors (from whom you purchase AR) into real vendors (banks). In AP integration open Destination Mapping, select Vendor ID, in the Rule Properties, click on the button next to Translation field, answer No, click on Translation tab and paste from Excel your translation list, something like this:
JOHNB BANKOFAMERICA
PETERP BANKOFAMERICA
MARTHAM CITIBANK
Now your vendors from integration file will be replaced with real vendors from Great Plains.
Happy integrating! if you want us to do the job - give us a call 1-866-528-0577! help@albaspectrum.com
About The Author
Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM customization company, based in Chicago, California, Colorado, Arizona, New York, Texas, Florida, Georgia, Canada, UK, Australia and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer; akarasev@albaspectrum.com
![]() |
|
![]() |
|
![]() |
|
![]() |
In part III of this ISDN primer, we learned that... Read More
1. Replace Dexterity cursor with SQL Stored Procedure Dexterity... Read More
It is a well known fact that Java as a... Read More
IntroductionDuring the early years of our modern computer era, very... Read More
At the end of XX century, in the late 1990th... Read More
Bill of Lading is required report for Logistics and Freight... Read More
The COSMIC FP (function point) software quality metric, is no... Read More
Microsoft Great Plains is becoming more and more popular and... Read More
Some companies that are in need of fleet management may... Read More
If you have Microsoft Great Plains and support it for... Read More
Microsoft Business Solutions ? Navision is an integrated solution for... Read More
(1) Avoid using the same variable again and again for... Read More
Microsoft bought Navision, Denmark based software development company, along with... Read More
Handling character strings in Java is supported through two final... Read More
While I was in college, if you would have asked... Read More
You would like to protect your documents, wouldn't you? Reasons... Read More
Our opinion is based on our Microsoft Business Solutions Great... Read More
Microsoft PowerPoint has dramatically changed the way in which academic... Read More
It's all about turn times in the eMedia industry! The... Read More
Microsoft-Outlook is a pretty amazing program. So much more than... Read More
Stop the Runaway MouseWhat's the "runaway mouse?" You've seen it...you... Read More
Accounts payable is just one area of office management where... Read More
Enabling Chinese input is quick and easy, there are only... Read More
There are two major WYSIWYG(What You See Is What You... Read More
C++ Function templates are those functions which can handle different... Read More
In our case ? we serve Microsoft Business Solutions ERP... Read More
Three highly respected names in Human Resources have joined forces... Read More
Microsoft Business Solutions Great Plains, former Great Plains Software eEnterprise,... Read More
Innovative Maintenance Systems (IMS) is one company that offers solutions... Read More
NOTE: Please take time to read on - it may... Read More
If you company is small or mid-size special products or... Read More
To all web designers out there, this article is for... Read More
Fleet Maintenance Management is a critical position in any company... Read More
Make-or-Break Factors in Success and ProfitabilityFor quick printers, estimating can... Read More
Fortunately one of the most common reasons cited for the... Read More
I have always regretted how Microsoft price gouges and rips... Read More
Writing software manuals is boring, isn't it? We often think:... Read More
What is Interactive Mapping?Interactive mapping is a visual display medium... Read More
Microsoft Great Plains is main mid-market application from Microsoft Business... Read More
Document Manager and Version HistoryIn previous articles I have discussed... Read More
C++ Function templates are those functions which can handle different... Read More
Microsoft-Outlook is a pretty amazing program. So much more than... Read More
Microsoft Business Solutions Great Plains has full-featured manufacturing set of... Read More
Are you lost in the mess of documents that get... Read More
Have you noticed WordPerfect is gearing up for a comeback... Read More
Microsoft Business Solutions products: Great Plains, MS CRM, Navision, Axapta,... Read More
Bill of Lading is required report for Logistics and Freight... Read More
The title of "software engineer" has got to be among... Read More
Is Photoshop CS2 worth the upgrade? You bet it is!... Read More
Internet worms. Is your PC infected?If your computer has become... Read More
There are two approaches for application integration:? Programmer's approach ?... Read More
The research in the field of Natural Language Processing usually... Read More
Microsoft Business Solutions Great Plains is marketed for mid-size companies... Read More
The fact that a software tester is a most infamous... Read More
Since its release in 1987, QuarkXpress had made an immediate... Read More
Every organization which creates collaborative documents, whether they are budgets,... Read More
Task Manager is a Windows system utility that displays thetasks... Read More
I have always had a tendency to focus on the... Read More
Before September of 1995, Microsoft ignored the Internet because their... Read More
In this small article we will show you the possible... Read More
Microsoft Business Solutions Great Plains as new ERP for multinational... Read More
IntroductionDuring the early years of our modern computer era, very... Read More
Microsoft bought Navision, Denmark based software development company, along with... Read More
OEComplete is a utility for managing the personal information of... Read More
If you are in a business that passes documents around... Read More
After almost two decades of existence, Quark has become the... Read More
Software |