• Advertising
  • Advice
  • Affiliate Programs
  • Auto
  • Awards
  • Business
  • Careers
  • CGI
  • Computers
  • Communication
  • Copywriting
  • CSS
  • DHTML
  • Direct Mail
  • Domain Names
  • EBooks
  • ECommerce
  • Education
  • Email
  • Entertainment
  • Environment
  • Family
  • Finance
  • Fitness
  • Food
  • Free
  • Gardening
  • Government
  • Health
  • Hobbies
  • Home Business
  • Home Repair
  • HTML
  • Humor
  • Internet
  • Javascript
  • Law
  • Link Popularity
  • Management
  • Marketing
  • Marriage
  • Metaphysical
  • MLM
  • Motivational
  • Multimedia
  • Newsletters
  • Off-Line Promotion
  • Online Promotion
  • Other
  • Pets
  • Politics
  • Psychology
  • Publishing
  • Religion
  • Sales
  • Scams
  • Science
  • SE Optimization
  • SE Positioning
  • SE Tactics
  • Self Help
  • Sexuality
  • Site Security
  • Social Issues
  • Spam
  • Sports
  • Technology
  • Traffic Analysis
  • Travel
  • Viral Marketing
  • Web Hosting
  • Web Design
  • Webmasters
  • Weight Loss
  • Women's Issues
  • Writing
  • Product Review
  • Life Style
  • Celebrities
  • Online Business
  • Self Improvement and Motivation

  • Microsoft Great Plains Integration Manager – advanced techniques

    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:
    JOHNBBANKOFAMERICA
    PETERPBANKOFAMERICA
    MARTHAMCITIBANK
    
    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
    More articles:
    How To Survive An Operating System Crash

    Zone Labs vs. Windows XP Service Pack 2 Firewall

    Medical Practice Software Simplifies the EMR Process

    Data Visualization Flash Charts: Information in a Flash

    1Click Backup : Backup Utility Software For Windows

    File sharing - What you need to know!

    Touch Screen Monitor

    Monitor Repair Screen Touch

    Monitor Screen Touch Wireless

    New MSN Search Engine: How Good Is It?

    Starting Your Own Blog

    Tips For Safer Computing Online

    Digital Imaging Explained

    Microsoft Business Solutions - Navision Customization: C/SIDE, C/ODBC, C/FRONT, XBRL

    Ten Things Everyone Should Know about Ordering an Inkjet Cartridge Online

    Free Traffic vs. Extra Revenue - Earning From PPC Search Engines

    20 Extra Hous Per Week: What Would You Do?

    Search Engine monopoly

    Having A User Friendly Website

    So, Is It Possible To Earn Free Money Online Fast?

    advanced



       Reviews phones mobiles
       Free games
       Anunturi masini second hand
       Ziarul Buna ZIUA IASI
       Matrimoniale
       Auto-Dealer.RO
       website value
    Home     About Us     Services     Products     Support     Contact
    © Article Storage 2006 - 2012