| ID: | 8431 |
| Title: | How to Get Table Info in Great Plains - 2 Ways |
| URL: | http://greatplainsguy.blogspot.com/2008/03/how-to-get-table-info-in-great-plains-2.html |
| Description: | I mentioned yesterday that I had to restore some Item records after making a horrendous change to one of my Unit of Measure Schedules. It occurred to me that not everyone may be familiar with the underlying GP tables, maybe because they are named oh-so-intuitively...NOT! So, for those of us who can't read minds, here's two ways for finding out what the table IV00106 really is. From the GP Menu, select: Tools >> Resource Descriptions >> Tables That pops up the Table Descriptions window. From there you can click the elispes to select a table. Once you select a table, you get the down and dirty details. Another way, which is actually the way I use most of the time, simply because it's a quick and dirty look up using SQL in Query Analyzer (or SQL Server Management Studio, as it's now called, but I still like the old name) , which is where I am at most of the day. So, without further ado, here's the script: SELECT * FROM DYNAMICS..SY40501 Gives you all the physical table names, what series they belong to, and a little descriptive info on what the table actually contains. While the first way to obtain table info (i.e. through the GP GUI) certainly gives a more complete picture, the second way (i.e. through SQL) usually gives me what I am looking for. Have fun! |
| Category: | DEVELOPMENT: Tables Information |
| Link Owner: | |
| Date Added: | June 17, 2010 02:06:11 AM |
| Number Hits: | 7 |