Resolution 1 (May get DBMS errors for GP 20488 or 20486)
To resolve this problem, re-create the SY00500 - Posting Definitions Master table. To re-create this table, use one of the following methods.
Note If the SY00500 table contains a trigger, the trigger must be re-created after you follow these steps.
Method 1: Use SQL Maintenance
- Make a full backup of Microsoft Dynamics GP.
- From the Microsoft Dynamics GP menu, point to Maintenance, and then click SQL.
- Click the company database that is receiving the error.
- In the Table list, click Posting Definitions Master.
- On the right side of the window, click to select every check box, and then click Process.
- Click
Yes when you receive the following message:
You have selected to drop tables; this will delete any data in them. Are you sure you want to continue?
This procedure re-creates the SY00500 - Posting Definitions Master table. However, you will temporarily lose all unposted batches. To retrieve these unposted batches, run the Check Links program on the sub modules. Then, reconcile the batches for General Ledger. However, this sets any batches that are set to
Recurring to
Single Use. You must change these batches back to
Recurring.
To retrieve the batches, follow these steps.
Note If you use the
Multicurrency option in Payables Management in Microsoft Dynamics GP, run the Check Links program on the Payables Transaction History Logical file before you run the Check Links program on the Payables Transaction Logical file.
- To run the Check Links program on the following files, from the Microsoft Dynamics GP menu, click Maintenance, click
Check Links, click one of the following series names, and then type the corresponding file name. Follow this step for the following files:
- Series name: Payables Management
File name: Purchasing Series - Payables Transaction Logical
- Series name: Purchase Order Processing
File name: Purchasing Series - Purchasing Transaction Logical
- Series name: Receivables Management
File name: Sales Series - Receivables Open Transaction
- Series name: Invoicing
File name: Sales Series - Invoice Work File
- Series name: Sales Order Processing
File name: Sales - Sales Work File
- Series name: Inventory
File name: Inventory - Inventory Transaction Work file
- Series name: Bill of Materials
File name: Inventory - Inventory - Bill of Materials Transactions file
- If you use Project Accounting with Microsoft Dynamics GP, you must also run Check Links on the following files. To run Check Links on the following files, on the Microsoft Dynamics GP menu, point to Maintenance, click PA Check Links, click Insert, and then click one of the following table names. Follow this step for the following files:
- Timesheet Batches – PA Timesheet Transactions
- Miscellaneous Log Batches – PA Miscellaneous Log Transactions
- Equipment Log Batches - PA Equipment Log Transactions
- Inventory Transfer Batches - PA Inventory Transfer Transactions
- Receivings Batches – PA Purchasing Transactions
- Revenue Recognition Batches – PA Revenue Recog Transactions
- Employee Expense Batches – PA Employee Expense Transactions
- Billing Batches – PA Billing Transactions
- If any batches exist in Microsoft Great Plains General Ledger, on the Microsoft Dynamics GP menu, point to Tools, point to Utilities, point to Financial, and then click Reconcile. Click to select the Batches check box, and then click Reconcile to reconcile your batches.
Method 2: Use the free toolkit from Professional Services Tools Library
- Make a full backup of Microsoft Dynamics GP.
- Have all users log off from the system.
- Install the Professional Services Tools Library (PSTL). To do this, visit the following CustomerSource website:
Note This download is located under Downloads and Updates, Service Packs & Product Releases, Professional Services Tools Library (PSTL) for Microsoft Dynamics (North America Only). Installation instructions are included with the download.
- After you install the PSTL, start Microsoft Dynamics GP. When you are prompted to include new code, click Yes.
- Log on to Microsoft Dynamics GP as the system administrator.
- To add Professional Services Tools Library to the shortcut bar, in your Home series, click Add, click Other Window, expand Technical Service Tools, expand
Project, click Professional Tools Library, click Add, and then click Done.
- On the Home series shortcut bar, click Professional Service Tools. Wait for the SQL objects build. When you are prompted to enter registration keys, click Cancel. You do not have to have registration keys to use this tool.
- Click Toolkit, and then click
Next.
- Under Toolkit Options, click
Recreate SQL Objects, and then click
Next.
- Next to Series, click
Company.
- Next to Table, click
SY00500.
- Under Maintenance Options, click to select the Recreate Selected Table check box, and then click to select the Recreate data for selected table(s) check box.
- Click Perform Selected Maintenance.
- When you receive the following messages, click
OK:
Table will be recreated with data
SY00500 table will be recreated with data. Verify a backup has been made before proceeding
SY00500 has been recreated
Resolution 2
Re-create the stored procedures for both glpBatchCleanup and glpBatchPost by using Database Maintenance. To do this, follow these steps:
- Make sure all users are logged off from Microsoft Dynamics GP.
- Click the Start, click All Programs, click Microsoft Dynamics GP, click the version of Microsoft Dynamics GP on which this problem occurs, and then click Database Management.
- Enter the Server Name for the Dynamics Server that you are using. For example, use the following:
COMPUTER_NAME\SERVER_INSTANCE
- Click to select the DYNAMICS Database ID check box, and then click Next.
- Click to select the Microsoft Dynamics GP check box, and then click Next.
- Click to select the Functions check box, and then click Next.
Resolution 3
Third-party products may be altering the stored procedures. Disable any third-party products from the Dynamics.set file, and test again. For more information about how to disable third-party products in the Dynamics.set file, click the following article number to view the article in the Microsoft Knowledge Base:
872087 How to disable third-party products or temporarily disable additional products in the Dynamics.set file in Microsoft Dynamics GP
Resolution 4 - (may get DBMS errors for GP 20488 or 20957)
The information between the GL work tables are inconsistent. Run the script below against the company database and review the records for this batch in both tables. If you do not get records from both scripts, then review the whole table to make sure the batch number field is not blank in one table. The BACHNUMB should be the same between both tables for this batch. The GL10001 should contain records for the transactions in this batch.
select * from GL10000 where BACHNUMB = 'xxx'
select * from GL10001 where BACHNUMB = 'xxx'
--update the xxx placeholder with the GL batch name and run against the company database.
Resolution 5- (may get DBMS error for GP 20486 from KB 860710)
Users may be stuck in the GP activity table for the GL work tables.
a. Ask all users to log out of all companies in Dynamics GP.
b. When all users are out of Dynamics GP, these tables should be empty:
SELECT * FROM DYNAMICS..ACTIVITY
SELECT * FROM DYNAMICS..SY00800
SELECT * FROM DYNAMICS..SY00801
SELECT * FROM TEMPDB..DEX_LOCK
SELECT * FROM TEMPDB..DEX_SESSION
c. Run these scripts to delete any activity returned:
DELETE DYNAMICS..ACTIVITY
DELETE DYNAMICS..SY00800
DELETE DYNAMICS..SY00801
DELETE TEMPDB..DEX_LOCK
DELETE TEMPDB..DEX_SESSION
Resolution 6- (may get DBMS error for GP 229)
The 229 reference in the error message indicates a permissions issue. Run the grant.sql script against both the company and Dynamics databases. (The grant.sql script can be found in the GP code folder, SQL| UTIL folder)