Home
Blogs
Forums
Downloads
Site Search:
Sign in
|
Join
|
Help
This Blog
Home
Contact
Syndication
RSS
Atom
Comments RSS
Receive Email Updates
Subscribe
Recent Posts
Script to insert a line into the batch table (SY00500)
Script to increment the next SOP number
GP10: Cannot access this form because the dictionary containing it is not loaded
SP to move a SOP transaction from open to history
.NET 2.0 Framework Not Detected while installing Dynamics GP 10.0
Tags
IV00101
IV00102
SOP10200
Archives
March 2010
(2)
January 2010
(3)
December 2009
(1)
November 2009
(1)
October 2009
(3)
September 2009
(4)
August 2009
(2)
July 2009
(4)
June 2009
(2)
May 2009
(1)
April 2009
(2)
March 2009
(3)
February 2009
(1)
August 2008
(2)
July 2008
(2)
February 2008
(2)
November 2007
(1)
October 2007
(1)
September 2007
(4)
August 2007
(2)
July 2007
(4)
June 2007
(2)
May 2007
(5)
April 2007
(9)
January 2007
(2)
Dynamics GP
Notes, Tips and Tricks on Developing in Dynamics GP
January 2007 - Posts
POP Transaction Flow Primer for Dynamics GP
This is a primer for the transaction flow in Microsoft Dynamics GP (formerly Great Plains).
POs are entered into POP10100 and POP10110
There are three types of receiving docs - Shipments, Shipment/Invoices, and Invoices. Shipments and Shipment invoices are entered directly into the POP10500 through the TRANSACTIONS > PURCHASING > RECEIVINGS TRANSACTION ENTRY form.
Invoices are entered through TRANSACTIONS > PURCHASING > ENTER/MATCH INVOICES. These lines also go into the POP10500 table, and links to the shipment are entered in the POP10600 table. So in this case there is a link from POP10500 (invoice) to POP10600 to POP10500 (shipment)
This query will show all items on order that have outstanding quantities:
select pol.qtyorder- pol.qtycance- shipments.qtyshppd as qtyOnOrder, pol.itemnmbr, pol.itemdesc, pol.uofm
from pop10100 po
join pop10110 pol on pol.ponumber = po.ponumber
--get the total amount already received
left join (select ponumber, polnenum, sum(qtyshppd) as qtyshppd
from pop10500
group by ponumber, polnenum)
shipments on shipments.ponumber = pol.ponumber and shipments.polnenum = pol.ord
where pol.qtyorder - pol.qtycance - shipments.qtyshppd > 0
Posted
Jan 11 2007, 08:19 PM
by
Steve Gray
with
no comments
Migrate Inventory Data in Dynamics GP 9
Here is a script that migrates most of the tables that are needed for setup of the inventory module in Dynamics GP. I created only the tables that I needed for this installation, it is not exhaustive. But it is a good starting point.
www.4penny.net/SQL_Scripts/migrate_iv_data_for_dynamics_gp_9.txt
Posted
Jan 11 2007, 08:18 PM
by
Steve Gray
with
no comments