SQL Scripts for Microsoft Dynamics GP: Update Inventory Accounts from Item Class

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 accounts on an inventory item from the linked Item Class. The script was written after some accounts were updated and the user opted not to roll-down the changes to the items. The roll-down should have been performed and was needed, so this script was created to updsate the items.

/*
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). */
UPDATE ['Inventory Item Master'] SET IVIVINDX = ['Item Class Setup'].IVIVINDX ,IVIVOFIX = ['Item Class Setup'].IVIVOFIX ,IVCOGSIX = ['Item Class Setup'].IVCOGSIX ,IVSLSIDX = ['Item Class Setup'].IVSLSIDX ,IVSLDSIX = ['Item Class Setup'].IVSLDSIX ,IVSLRNIX = ['Item Class Setup'].IVSLRNIX ,IVINUSIX = ['Item Class Setup'].IVINUSIX ,IVINSVIX = ['Item Class Setup'].IVINSVIX ,IVDMGIDX = ['Item Class Setup'].IVDMGIDX ,IVVARIDX = ['Item Class Setup'].IVVARIDX ,DPSHPIDX = ['Item Class Setup'].DPSHPIDX ,PURPVIDX = ['Item Class Setup'].PURPVIDX ,UPPVIDX = ['Item Class Setup'].UPPVIDX ,IVRETIDX = ['Item Class Setup'].IVRETIDX ,ASMVRIDX = ['Item Class Setup'].ASMVRIDX ,IVSCRVIX = ['Item Class Setup'].IVSCRVIX FROM IV00101 AS ['Inventory Item Master'] INNER JOIN IV40400 AS ['Item Class Setup'] ON ['Item Class Setup'].ITMCLSCD = ['Inventory Item Master'].ITMCLSCD GO

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

In Microsoft Dynamics 365 Business Central (Administration), how do I… Understand the Action Bar

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.

Each page in Dynamics BC has a different set of actions depending on the page type, and the processes that the page supports. These actions are contained within the action bar.

Action bar on the Vendor card

Continue reading “In Microsoft Dynamics 365 Business Central (Administration), how do I… Understand the Action Bar”