The 1C:Enterprise developers forum
I would like to capitalize first letters of descriptions for all items in Items catalog. Could you advice on how to do so?
Selection = Catalogs.Goods.Select(); While Selection.Next() Do Item = Selection.GetObject(); Item.Description = Title(Item.Description); Item.Write(); EndDo;
That is even better than I needed! Thank you, alexht!