I have joined the ranks of many fellow Dynamics GP MVP’s and experts and got an article published on MSDynamicsWorld.com. It’s called The “Right” Way to Maximize the Growing Number of Online Resources for Microsoft Dynamics GP and talks about how to get the most out of the many fabulous online resources available now for Dynamics GP. To read the entire article you’ll need to create a free login, but if you’re working with Dynamics GP, you should already be reading MSDynamicsWorld.com. For a list of the online resources I am referring to, check out the links along the right hand side of this blog.
Posted in Dynamics GP | Tagged Dynamics GP, MSDynamicsWorld | 4 Comments »
The Crystal Reports tip from Flexible Solutions GP Reports November newsletter shows how to selectively highlight values in a list without having to write a formula.
Let’s say you have a customer list with balances:
Now what if you wanted to make all customers with balances of $50,000 or higher more visible? Here are the steps to do this using the Highlighting Expert in Crystal Reports (click on any of the screen shots to enlarge them):
- Right click on the field you want to change the display for and choose Highlighting Expert (or click on the field and go to Format > Highlighting Expert).
- Click New at the bottom of the Item list.
- Under Item editor select the conditions to check for and the color, font, background or border you want to display. Below is an example to simply highlight any amount $50,000 or greater in yellow:

Or to make the amounts show in red, bold and italics, it would look like this:

Note that I set the Background to Default Color, so that my alternate line shading is preserved. (Check out my Alternating shading for lines in Crystal Reports to see how to set up alternate shading.) - Click OK to close the Highlighting Expert window and your report will now look like this:

If you want to highlight the entire line instead of just the amount, you can repeat the steps above for each field on your line, the only change would be under the Item editor section, where you would be testing the condition for your balance field, here is what that looks like:
And here is the final result, after adding the highlighting to each detail field:
For more tips like this, sign up to receive GP Reports newsletters via e-mail. Or check out the newsletter archives on the Flexible Solutions website.
Posted in Crystal Reports | Tagged Crystal Reports, GP Reports | 1 Comment »
I found out yesterday that I have been awarded with the Microsoft® Most Valuable Professional Award for Dynamics GP for another year. I first became a Dynamics GP MVP in 2005, so this will be my 6th year to receive the award and I could not have done it without the support of all of you reading this!
I am honored to be recognized in this program, which has existed for 14 years and recognizes independent experts who actively share their knowledge with others in various technical communities. Take a look at the current list of Dynamics GP MVP’s to find out more about all of us.
Here is wishing a happy, healthy and prosperous 2010 to everyone!
Posted in Dynamics GP, Microsoft | Tagged Microsoft MVP | 18 Comments »
This view is a little bit of a twist on my previous SQL view for inventory quantities on hand. The results of this view will give you a list of your Microsoft Dynamics GP inventory items, current quantities and the last sales and purchase dates along with the vendor.
For other SQL views on Dynamics GP data, please visit my GP Reports page.
~~~~~
CREATE VIEW view_Inventory_with_Dates
AS
/********************************************************************
view_Inventory_with_Dates
Created on Dec 4, 2009 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
All inventory items with quantity on hand and last sale
and receipt dates
Functional amounts only
Tables used:
I - IV00101 - Item Master
S - IV30300 - Transaction Amounts History with DOCTYPE = 6 (sales)
Q - IV00102 - Item Quantity Master
U - IV40201 - U of M Schedule Header
Updated Dec 22, 2009 to add WHERE clause at end
********************************************************************/
SELECT I.ITEMNMBR Item_Number,
I.ITEMDESC Item_Description,
Q.QTYONHND Quantity_on_Hand,
U.BASEUOFM U_of_M,
CASE I.ITEMTYPE
WHEN 1 THEN 'Sales Inventory'
WHEN 2 THEN 'Discontinued'
WHEN 3 THEN 'Kit'
WHEN 4 THEN 'Misc Charges'
WHEN 5 THEN 'Services'
WHEN 6 THEN 'Flat Fee'
END Item_Type,
I.CURRCOST Current_Cost,
I.ITMCLSCD Item_Class,
coalesce(S.LastSale,'1/1/1900') Last_Sale_Date,
coalesce(Q.LSRCPTDT,'1/1/1900') Last_Receipt_Date,
coalesce(Q.LSORDVND,'') Last_Vendor
FROM IV00101 I
INNER JOIN
(SELECT ITEMNMBR, MAX(DOCDATE) LastSale
FROM IV30300
WHERE DOCTYPE = 6
GROUP BY ITEMNMBR) S
ON I.ITEMNMBR = S.ITEMNMBR
INNER JOIN
IV00102 Q
ON I.ITEMNMBR = Q.ITEMNMBR
AND RCRDTYPE = 1
INNER JOIN
IV40201 U
ON U.UOMSCHDL = I.UOMSCHDL
WHERE Q.QTYONHND <> 0
//** the following will grant permissions to this view to DYNGRP, leave this section off if you do not want to grant permissions **/
GO
GRANT SELECT ON view_Inventory_with_Dates TO DYNGRP
~~~~~
Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone
Posted in GP Reports, GP SQL scripts | Tagged Dynamics GP, GP Reports, Inventory, SQL code | 6 Comments »
Here is a tip from the Flexible Solutions GP Reports October newsletter on how to create a running total in Crystal Reports.
Running totals are a great way to show totals that have a different calculation than a subtotal without having to write additional formulas.
Let’s look at an example: You have a list of unapplied vendor transactions grouped and subtotaled by vendor class. Below is an example of what this report looks like right now:
For each vendor class you already have a total due, but you also want to show the total credit limit so that you can compare the totals for each class. The credit limit is stored at the vendor level and because your report has more than one transaction per vendor, you cannot simply subtotal the credit limits for all the detail lines. Here are the steps to create a running total for the credit limit by vendor class:
-
Add the Credit Limit field somewhere in your detail section
-
Choose a name for the Running Total
-
Change the Evaluate setting to ‘On change of field’ and enter the vendor ID field (in this case PM00200.VENDORID)
-
Click OK to close the Create Running Total Field window
-
Click OK to close the Record Sort Expert window
Your report now has the credit limit totals per vendor class:
For more tips like this, sign up to receive GP Reports newsletters via e-mail. Or check out the newsletter archives on the Flexible Solutions website.
Posted in Crystal Reports | Tagged Crystal Reports, GP Reports | 4 Comments »









