SQL Scripts for Microsoft Dynamics GP: Change Location on Word Status Purchase Order Lines From CSV

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

This script updates the location on work status purchase order lines from a CSV file. I vaguely recall this script and after running it we ran the reconcile process against both Purchase Ordering and Inventory Control.

As with any script, before running on production test the script to make sure it works and have a good backup of the database.

/*
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). */
CREATE TABLE #SiteXRef (PONUMBER VARCHAR(100) ,ITEMNMBR VARCHAR(100) ,LOCNCODE VARCHAR(100) ) GO BULK INSERT #SiteXRef FROM 'C:\TEMP\StockCodes.csv' WITH ( FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' ) GO UPDATE POP SET POP.LOCNCODE = SiteXRef.LOCNCODE FROM POP10110 POP INNER JOIN #SiteXRef As SiteXRef ON SiteXRef.PONUMBER = POP.PONUMBER AND SiteXRef.ITEMNMBR = POP.ITEMNMBR GO DROP TABLE #SiteXRef GO

In Microsoft Dynamics 365 Business Central (Administration), how do I… Use List Pages

Microsoft Dynamics 365 Business CentralThis post is part of the In Microsoft Dynamics 365 Business Central (Administration), how do I… series and of the wider In Microsoft Dynamics 365 Business Central, how do I… series which I am posting as I familiarise myself with Microsoft Dynamics 365 Business Central.

In this series’ last article, I introduced the different types of pages used within Dynamics BC. I thought it might be useful to give a run through of how to use each of the pages, starting with the list pages.

A list page presents a view of data from a table and allows you to interact with the date; list pages are used for both card/master data and transactional data.

I am going to show a few of the ways in which you can interact with the data on a list page, using items as the example, but what I’ll show applies to all types of list page, whether card or transactional. Each list page will have a default view, which for items is Tile which shows a few pieces of information along with the associated image of the item.

Items list page in tile layout

Continue reading “In Microsoft Dynamics 365 Business Central (Administration), how do I… Use List Pages”