SQL Scripts for Microsoft Dynamics GP: Sales Line Items

Microsoft Dynamics GPThis script is part of the SQL Scripts for Microsoft Dynamics GP where I will be posting the scripts I wrote against Microsoft Dynamics GP over the 19 years before I stopped working with Dynamics GP.

This script returns a list of all line items from Sales Order Processing at a status of work.

/*
Created by Ian Grieve of azurecurve | Ramblings of an IT Professional (http://www.azurecurve.co.uk) This code is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0 Int). */
SELECT SOP10200.SOPNUMBE ,CASE SOP10200.SOPTYPE WHEN 1 THEN 'Quote' WHEN 2 THEN 'Order' WHEN 3 THEN 'Invoice' WHEN 4 THEN 'Return' WHEN 5 THEN 'Back Order' WHEN 6 THEN 'Fulfillment Order' END AS 'Trx Type' ,SOP10200.LNITMSEQ ,SOP10100.DOCDATE ,SOP10100.CURNCYID ,SOP10100.CSTPONBR ,SOP10200.ITEMNMBR ,SOP10200.ITEMDESC ,SOP10200.ReqShipDate ,SOP10200.LOCNCODE ,SOP10200.QUANTITY ,SOP10200.UNITCOST ,SOP10200.EXTDCOST ,SOP10200.UNITPRCE ,SOP10200.XTNDPRCE ,SOP10100.SUBTOTAL + SOP10100.TAXAMNT + SOP10100.FRTAMNT + SOP10100.MSCTXAMT - SOP10100.TRDISAMT AS 'Value (Gross)' ,SY01200.INETINFO FROM SOP10200 --Sales Transaction Amounts Work (SOP10200) INNER JOIN SOP10100 --Sales Transaction Work (SOP10100) ON SOP10100.SOPTYPE = SOP10200.SOPTYPE AND SOP10100.SOPNUMBE = SOP10200.SOPNUMBE LEFT JOIN SY01200 --Internet Addresses (SY01200) ON SY01200.Master_Type = 'ITM' AND SY01200.Master_ID = SOP10200.ITEMNMBR

Click to show/hide the SQL Scripts for Microsoft Dynamics GP Series Index

Create a Windows Demo Environment: Configure Ethernet on Domain Controller Server

WindowsThis article is part of the Create a Windows Demo Environment series where I am installing and configuring a small Windows domain for use with demo installs of software.

When creating demo environments I always give them their own range of IP addresses in the internal Hyper-V network. This is so that I can make sure that each machine is able to see all of the others without any issues. The first machine I configure is always the which I will be using as the domain controller.

On the most recent demo environment I created, I used the IP address of 40.1.1.1; I usually use something well outside the range of IP address on my main network or ones used on the Internet so as to avoid any potential conflicts.

To configure a static IP address, right click on the network icon in the system tray and select Open Network & Internet settings and, in the Settings window which opens, click Change adapter settings under Advanced network settings:

Network and internet settings window

Continue reading “Create a Windows Demo Environment: Configure Ethernet on Domain Controller Server”