SQL Scripts for Microsoft Dynamics GP: Update Account Description by Adding 3rd Segment Description

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 will update the description of G/L accounts by suffixing them with the description of the third segment.

/*
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 ['Account Master'] SET ['Account Master'].ACTDESCR = LEFT(RTRIM(['Account Master'].ACTDESCR) + ' - ' + RTRIM(['Segment Description Master-Segment 3'].DSCRIPTN),50) FROM GL00100 AS ['Account Master'] --Breakdown Account Master (GL00100) INNER JOIN GL40200 AS ['Segment Description Master-Segment 3'] --Segment Description Master (GL40200) ON ['Segment Description Master-Segment 3'].SGMTNUMB = 3 AND ['Segment Description Master-Segment 3'].SGMNTID = ['Account Master'].ACTNUMBR_3 AND LEN(RTRIM(['Segment Description Master-Segment 3'].DSCRIPTN)) > 0 GO

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

In Microsoft Dynamics 365 Business Central (Financial), how do I… Create a General Business Posting Group

Microsoft Dynamics 365 Business CentralThis post is part of the In Microsoft Dynamics 365 Business Central (Financial), 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.

To configure the setup for general posting roups requires three steps, which I’ll start covering in the first post of this series and complete in the next two.

The first element to configure is the general business posting group, which is the “who” part of the key to the general posting setup. This is often setup for regional groups such as domestic, European or ROW (Rest of World).

To configure, do a search for and select the General Business Posting Group page:

General Business Posting Groups

Enter a Code and Description for each of the codes; you can also enter a Default VAT Business Posting Group and whether this should Auto Inert the Default.

As Business Central saves as you work, you can just close the page when all of the required codes have been entered.

In Microsoft Dynamics 365 Business Central, how do I…

In Microsoft Dynamics 365 Business Central (Financial), how do I…