Microsoft Dynamics GP Table Structure Overview
Microsoft Great Plains, former Great Plains Software Dynamics/eEnterprise should be considered as ERP platform for midsize and large business, so SQL data maintenance and repair is normal IT procedure, this is why table structure and MRP architecture should be familiar to SQL DB administrator. We will begin with architecture and table name coding and then go down to typical data repair
o Setup Tables. These tables have 4 prefix. IV40100 - this is Inventory Control Module setup table. Setup tables may have only one record, if this is module setup or multiple records, if this is something like Inventory Class setup (vendor, customer class setup to give additional examples)
o History Tables. These tables have 3 prefix. SOP30200 - this is Sale Transaction Header history table. When you post transactions - they go to open (optional phase) and history
o Open Tables. These tables have 2 prefix. GL20000 - this table stores all your open year posted GL transactions. For some of the module open stage is skipped (Sales Order Processing - here transactions when posted go to the history tables directly)
o Work Tables. These tables have 1 prefix. These tables are present in each module: GL, Inventory Control, Invoicing, Receivable Management, Payroll, Payable Management, Purchase Order Processing, Bill of Material. Great Plains has batch posting module - this feature allows you to save and store work (or unposted) transactions in the batch. SOP10100 - this is Sales Transaction Header Work table
o Master Tables. These tables have 0 prefix. We will give you several examples: IV00101 - inventory item master stores all your inventory items, RM00101 - customer master table, IV00200 - vendor master table, GL00100 - General Ledger account master table
o Table repair technique. When you consider to repair one of GP tables, you do backup of the table, execute this SQL statement:
Select * into IV00101_Backup from IV00101
Then do you data repair. If you need to roll back to old backed up version of the table, do this:
1. Clean your original table: delete IV00101
2. Restore it from backup: alter table IV00101_Backup drop column DEX_ROW_ID insert into IV00101 select * from IV00101_Backup
Some additional hints. Microsoft Great Plains is Dexterity application. Dex internal logic adds autoid column DEX_ROW_ID, so you have to drop it prior to restoring the table from backup.
Microsoft Dynamics GP Table Structure Overview
Microsoft Great Plains, former Great Plains Software Dynamics/eEnterprise should be considered as ERP platform for midsize and large business, so SQL data maintenance and repair is normal IT procedure, this is why table structure and MRP architecture should be familiar to SQL DB administrator. We will begin with architecture and table name coding and then go down to typical data repair
o Setup Tables. These tables have 4 prefix. IV40100 - this is Inventory Control Module setup table. Setup tables may have only one record, if this is module setup or multiple records, if this is something like Inventory Class setup (vendor, customer class setup to give additional examples)
o History Tables. These tables have 3 prefix. SOP30200 - this is Sale Transaction Header history table. When you post transactions - they go to open (optional phase) and history
o Open Tables. These tables have 2 prefix. GL20000 - this table stores all your open year posted GL transactions. For some of the module open stage is skipped (Sales Order Processing - here transactions when posted go to the history tables directly)
o Work Tables. These tables have 1 prefix. These tables are present in each module: GL, Inventory Control, Invoicing, Receivable Management, Payroll, Payable Management, Purchase Order Processing, Bill of Material. Great Plains has batch posting module - this feature allows you to save and store work (or unposted) transactions in the batch. SOP10100 - this is Sales Transaction Header Work table
o Master Tables. These tables have 0 prefix. We will give you several examples: IV00101 - inventory item master stores all your inventory items, RM00101 - customer master table, IV00200 - vendor master table, GL00100 - General Ledger account master table
o Table repair technique. When you consider to repair one of GP tables, you do backup of the table, execute this SQL statement:
Select * into IV00101_Backup from IV00101
Then do you data repair. If you need to roll back to old backed up version of the table, do this:
1. Clean your original table: delete IV00101
2. Restore it from backup: alter table IV00101_Backup drop column DEX_ROW_ID insert into IV00101 select * from IV00101_Backup
Some additional hints. Microsoft Great Plains is Dexterity application. Dex internal logic adds autoid column DEX_ROW_ID, so you have to drop it prior to restoring the table from backup.
RELATED POST:
Data Recovery Solution
- The Hows and Whys Behind Reminiscence Card Corruption
- Recuperate Lost Photos - Lexar Compact Flash Cards
- The way to Retrieve Deleted Photographs on Blackberry - Sony Cyber-Shot Get better Accidentally Deleted Photos
- Data Restoration - Options to Get better Information Your self Or Have a Professional Do It
- Recovering Data From Your BlackBerry Or Multimedia Device Memory Card
- How Do I Retrieve Items Deleted From My Recycle Bin? Restore the Recycle Bin Quickly
- The way to Repair Corrupt iPod in Event of '-forty eight' Error
- Is it Potential to Retrieve Deleted Text Messages? - Tips on how to Go About Retrieving Deleted Text Messages
- Few Simple Diagnostic Steps to Check For Failed Or Failing Mac Arduous Drive
- Picture Deletion Because of Empty Cell Telephone Battery
- The way to Get better Deleted Textual content From Android Gadgets
- Learn how to Restore Your Data on Your iPhone
- Home windows 7 - Restoration of Corrupted Onerous Drive in Case of MBR Corruption
- Repair XP Set up Utilizing Restoration Console
- Windows Partition Restoration Answer in Case of the Error - 'Load Wanted DLLs for Kernel'
- Windows File Loss After Restore, Reinstall Or Upgrade XP
- FAT32 Data Recovery Software program
- Top 10 Information Restoration Software program
- Perform Recordsdata Recovery on User Profile Deletion From Windows XP
- Home windows Crash With STOP: C0000221 Unknown Hard Error Message
- How To Get Past the Black Display screen Displaying 'Boot Failure, System Halted' Error in Home windows XP
- NTFS Knowledge Restoration - How one can Get Knowledge Back for NTFS
- Tips For Using Data Restoration Software program That's Free to Download
- Forensic Data Restoration Software
No comments:
Post a Comment