How to correct Dynamics GP Errors Lab Exercises

Similar documents
When you try to post a batch in Microsoft Dynamics GP, you receive the following error message:

RDS ADVANTAGE FAST CHECK TUTORIAL

Dynamics GP SmartList Lab. Matt Mason

PSTL Free Tools That Can Save Your Life!

Microsoft Dynamics GP. RapidStart Services

CHAPTER 4: MULTIDIMENSIONAL ANALYSIS

Microsoft Dynamics GP Professional Services Tools Library

CYMA IV. Accounting for Windows. CYMA IV Getting Started Guide. Training Guide Series

MICROSOFT DYNAMICS GP GENERAL LEDGER YEAR-END CLOSING PROCEDURES

Microsoft Dynamics GP Professional Services Tools Library

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Intercompany Postings

Microsoft Dynamics GP. Analytical Accounting

Tenrox 2015 R1 Great Plains Integration Guide

GP Data in SQL. Understanding SQL Tables to Find GP Data

Microsoft Dynamics GP: General Ledger Year-End Closing Procedures

Microsoft Dynamics GP is a robust accounting package that can meet

Genesis Advantage. Version 7

Gift Card Instructions Daxko Spectrum

QuickBooks 2010: The Basics

Setup Specification Document

Year-end closing procedures for General Ledger in

RG Connect 2015 Microsoft Dynamics GP Tips and Tricks October Prepared by Sheri Carney

Versions GP GP GP GP Updated November Company Data Archive

CHAPTER 3: DAILY PROCEDURES

GP Utility Update Overview and Installation

Welcome. CE Tips, Tricks and Shortcuts

Professional Services Tools Library. Release 2011 FP1

SmartList & Introduction SmartList Designer

Furniture Work in Progress

Copy Company. User Guide

Nexsure Training Manual - Accounting. Chapter 7

7. Run the TRAVERSE Data Migration Utility from TRAVERSE 10.2 into TRAVERSE 10.5.

User's Guide. Alpha Five Accounting. Accounting Made Easy. Version 3.0. Copyright BetaSoft LLC - All Rights Reserved

By Musick International, Inc.

Nexsure Training Manual - Accounting. Chapter 13

Dynamics GP 50 tips in 50 Minutes

Table of Contents *** IMPORTANT NOTE ***

QuickBooks 2016 Getting Started Guide for Financial Institutions. Financial Institution Support OFX Connectivity Group

Version Company Data Archive

L E S S O N 1 Lesson objectives

QUICKBOOKS PRO 2008 AN INTRODUCTION TO QUICKBOOKS PRO

Bank Reconciliation Release 2015

R2 and Great Plains Integrations

PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING

Getting Around QuickBooks Online

Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP V2013. User Guide

Sage 100 Contractor Query & Alerts Lab

Microsoft Dynamics GP. Analytical Accounting

Setting Up the Accounting Interface for QuickBooks

Great Plains 8.0 Integration Manager Payables Transaction Integration

LESSON 1 System Manager

Contents OVERVIEW... 3

Contents OVERVIEW... 3

Enhancements Guide. Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD General Phone: (800)

Microsoft Dynamics GP. System User s Guide

Adagio Payables 9.3A ( ) Upgrade Complexity from 9.2B

Brandon s Cabinet Shop

IMPORTING QUICKBOOKS DATA. Use this guide to help you convert from QuickBooks to Denali

Cross Check. Modified the program to create the default backup folder during the backup/restore process if the folder did not already exist.

Bridgestone National Accounts Interface

InsightSoftware.com. for Oracle E-Business Suite

The data files on the Data DVD were prepared using the Windows 7 operating CHAPTER ONE. Objectives. Getting Started. Data Files

American Data Group Inc. Calendar Year End. Help Document

Bank Reconciliation First Time Setup

Scribe Sample Dynamics GP Migration. October 12, 2010

Accounts Receivable WalkThrough

MYOB Advanced Business

BillQuick 2011 Update Log

Copy Company. User Guide

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financials Module: General Ledger

RG Connect Sheri s Tips and Tricks. October Prepared by Sheri Carney

YEAR END PROCEDURES (2017)

IN-HOUSE DISTRICTS Please contact your Technology person for details. Your district tech person will be receiving notice of this release directly.

RELEASE NOTES DECEMBER This document explains new product enhancements added to the ADMINS Unified Community for Windows General Ledger system.

Tabs3 General Ledger Guide

Reports in QuickBooks

The maximum number of users permitted by your registration code has been reached

ShelbyNext Financials: Accounts Payable Best Practices (Course #N210)

Accounting Table of Contents

Quick Books Online Training

KASBO Fall 2014 Session 4T Excel for Munis Accounts Payable and Purchase Orders (Lab) Presenter: Sheila Miller, KDE Business Analyst

Lockbox. Chapter 13. Lockbox Integration Setup. Nexsure Training Manual - Admin. In This Chapter

ShelbyNext Financials Portal

ShelbyNext Financials (Pre-ISC Hands-On)

Sage What s New. October 2017

Open Systems Holdings Corp. All rights reserved.

CONVERSION GUIDE. Use this guide to help you convert from CMS Professional to Denali

General Ledger Updated December 2017

Keller Williams Realty International. Monthly Checklist. Susan Cook Stacia Thompson

Part 2: How to convert QuickBooks Desktop data to QuickBooks Online. The Accountant s Guide to Moving Clients Online

RELEASE NOTES: JUNE 22, 2016

Dynamics GP Tips and Tricks. Steve Michaelson

Integrated ACH. Business Concentration Consumer Pre-authorized Debit

The Energy Grid Powerful Web Marketing for the Alternative Energy Industry

Client-Account Receivable

PACS. Installation & Going Live. User Guide. pacs1.4

Nextgen Bank Reconciliation

InsightUnlimited Release Notes. JD Edwards World & EnterpriseOne Version

Transcription:

How to correct Dynamics GP Errors Lab Exercises Matt Mason mmason@manersolutions.com

Fixing GP Errors Lab Exercise 1 Running Check Links Screen: (From Toolbar). Microsoft Dynamics GP Maintenance Check links. Choose Purchasing Series. Click All button. Click OK. BE SURE TO PRINT ERROR LOG TO SCREEN. Minimize Dynamics GP for later use.

Fixing GP Errors Lab Exercise 2 Running Reconciles Purpose: Matches summary records to the total of transaction details in specific places in GP. Screen: Sales Utilities Reconcile Choose Current Customer Information. Click Process. Print Output to screen.

Fixing GP Errors Lab Exercise 3 Backing up GP company This is done by accessing SQL Management Studio Upon launching, you ll need to access the SQL server by using sa login. Password is access Click Connect button. Goal: to back up the TWO database (Fabrikam, Inc.) On left side, click the + next to Databases folder in the Object Explorer panel. Right click on the TWO database. Then click Tasks. Then click Back Up

You will see the following screen: Click Remove button to get rid of latest backup. Click Add Click Elipsis button (the one with 3 dots).

Click the + next to TWO folder. Then, click ON the TWO folder. In File Name field, type TWO.bak. Then click OK. Click OK 2 more times. You re backing up. When you re done, you ll see the following message:

Click OK. Minimize SQL Management Studio for later use.

Fixing GP Errors Lab Exercise 4 Clearing Stuck Batches Bring up minimized SQL Management Studio Click New Query on top left of window Change database from master to TWO

In the big white space, type in the following: SELECT * FROM SY00500

Click the Execute button above the white space. Results of this Query will appear at the bottom of the screen Search BCHSTTUS column for batches with status other that 0. There should be 2 batches: PETTY AND UPTOWN TRUST Change Query Statement to: SELECT BCHSTTUS, * FROM SY00500 WHERE BACHNUMB = PETTY Click Execute button. You will see only one record now.

Change Query Statement to: UPDATE SY00500 SET BCHSTTUS = 0 WHERE BACHNUMB = PETTY Click Execute button. You should see one row affected. Type in the query statement again SELECT BCHSTTUS, * FROM SY00500 WHERE BACHNUMB = PETTY

You should see that BCHSTTUS = 0, which means the batch is available

Fixing GP Errors Lab Exercise 5 Deleting and Rebuilding the PM Key file Step 1 Delete: Do this in SQL Management Studio Click New Query button Type the following Query Statement: SELECT * FROM PM00400 Click the Execute button. Examine results at bottom on window. There should be a lot of records. There should be Control Numbers and Vendor ID s.

CHANGE (don t type new statement) EXISTING STATEMENT TO: DELETE PM00400 Click the Execute button. You should see lots of rows affected.

Step 1 Delete: Do this in Dynamics GP Bring up Dynamics GP. Run check links just like in Exercise 1, EXCEPT ONLY CHOOSE TWO FILES: Payables History Logical Files Payables Transaction Logical File Screen: (From Toolbar). Microsoft Dynamics GP Maintenance Check links. Choose Purchasing Series. Choose Payables History Logical Files. Click Insert button. Choose Payables Transaction Logical File. Click Insert button. Click OK. BE SURE TO PRINT ERROR LOG TO SCREEN. You ll see a record added for each line of Key file. Don t bother printing, just close.

A Short Primer on Dynamics GP Tables Each GP table name is 7 or 8 characters. The first 2 or 3 characters are letters; the last 5 are numbers. An example is: UPR30300 Microsoft SQL Every character (almost) means something. The letters denote which module they are a part of. Names and Modules Table Name AF BM CM GL IV IVC MC PM POP RM SOP SY TX UPR Others Module Advanced Financial (Dinosaur module) Bill of Materials Bank reconciliation (formerly Cash Management) General Ledger Inventory Invoicing Multicurrency Payables Management better known as Accounts Payable Purchase Order Processing Receivables Management - better known as Accounts Receivable Sales Order Processing System Manager Taxes United States Payroll (as opposed to Canadian Payroll) 3 rd Party programs have their own file names The numbers denote what kind of table it is. The most important number is the first one that tells what series it s in. Numbers and Table Types Number Type of Table 00 s Master (card) files 10000 s Work (unposted) files 20000 s Open files 30000 s History files 40000 s Setup files Other Don t worry about them So, the table UPR30100 is a payroll history table. If you want to know EXACTLY what kind of table it is, you can find this out in the Resource Table Descriptions inside Dynamics. Screen: Tools => Resource Descriptions => Tables

Click the next to the Table: Product: Dynamics Series: Choose module View by: By Table Physical Name In this case, you find that the UPR30100 is the Payroll Check History Table. But it goes even farther to find out what each field is in the table, double-click on the line. You will be able to see the Physical Field Name (very important for SQL Management Studio), the type of each field, and what the key fields are.

But there s EVEN MORE double-click on a particular field and you will see more information on that field, such as field size, and formatting. And finally a list of common tables that you ll find a lot of fields useful in SQL Reports.

Physical Name GL00100 GL00105 GL20000 GL30000 PM00200 PM20000 PM30200 RM00101 RM20101 RM30101 SOP30200 SOP30300 UPR00100 UPR00400 UPR00500 UPR00600 UPR30100 UPR30300 IV00101 IV30200 IV30300 IV30301 IVC30101 IVC30102 Display Name Account Master (Chart of Accounts) Account Index GL Year-to-Date Transactions GL Account Transaction History (prior years transactions) Vendor Master (Vendor Maintenance) A/P Open Transactions (open invoices) A/P Paid Transactions (paid invoices and checks) Customer Master (Customer Maintenance) A/R Open Transactions (open invoices) A/R Paid Transactions (paid invoices and checks) Sales Order Processing Transactions Header file Sales Order Processing Transactions Line file (Inventory items) Employee Master (Employee Maintenance) Pay Code Master (What everyone gets paid) Deduction Master Benefit Master Check History Transaction History Inventory Item Master (Item Maintenance) Inventory Transaction History Header file Inventory Transaction History Line file Inventory Transaction History Line file Invoicing Transaction History Header file Invoicing Transaction History Line file