New

200 standard - Goods received in needs an item description added.

When confirming goods have been received it only shows the stock code. It would be useful to show a stock description so it's clear exactly what is on each line (As in Sage 50).

Parents
  • I had asked the same thing just a couple of weeks ago and was advised that it would have to be carried out by the development team at cost of 1.5 days plus annual support charge.  I am aware that you can click down each part and the item description be shown individually but want it showing alongside each part number to make it easy for stores staff to check and book in orders

Comment
  • I had asked the same thing just a couple of weeks ago and was advised that it would have to be carried out by the development team at cost of 1.5 days plus annual support charge.  I am aware that you can click down each part and the item description be shown individually but want it showing alongside each part number to make it easy for stores staff to check and book in orders

Children
  • That's odd as I didn't think Sage 200 Standard could be amended!

    In Sage200 Professional, you'd add this script (Sage.MMS.POP.ConfirmGoodsReceivedForm.vbs)

    Imports Sage.ObjectStore.Controls
    Imports System
    Module addInModule
    Sub Main
            CType(form.FindControlByName("grid").UnderlyingControl, Grid).Columns.Insert(6,New GridColumn With {.Caption = "Description", .DisplayMember = "ItemDescription", .Autosize=True})
    End Sub
    End Module