------------------------------------------------
Item
------------------------------------------------
SELECT 
    [No_], 
    [Description],
    [VAT Prod_ Posting Group],
    [Location Code],
    [Country_Region of Origin Code]
FROM dbo.[MyCompany$Item]
where  [Description]  LIKE   '%A%'
ORDER by [VAT Prod_ Posting Group]
GO
------------------------------------------------