SQL Scripts for Microsoft Dynamics GP: Assembly Transaction Quantities Required

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 returns a list of work status assemblies and the quantity required for the assembly.

CREATE VIEW uv_AZRCRV_AssembleQuantityRequired AS
/*
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 TRX_ID ,ITEMNMBR ,Assemble_Quantity FROM BM10300 --Assembly Component (BM10300) WHERE Component_ID = 0 AND Parent_Component_ID = -1 GO

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

In Microsoft Dynamics 365 Business Central (Administration), how do I… Create a Sandbox for a Preview Release

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.

While I intend to cover the Release 2023 Wave 1 preview which has just been made available, the same process will hold true for future releases as well.

With previews you can only create these as new environments; you cannot upgrade an existing sandbox environment to a preview. To create the new sandbox, you need to access the Business Central Admin Center.

On the top action bar click the New button to open the Create Environment sidebar.

Enter your new Environment Name, set the Type to Sandbox and select your Country; the final field is the Version, which will default to the currently available live version, but if you click the drop down you ill be able to select the clearly marked Preview version:

Business Central Admin Center showing the Create environment sidebar after clicking the New button on the action bar

Continue reading “In Microsoft Dynamics 365 Business Central (Administration), how do I… Create a Sandbox for a Preview Release”