$ 0 0 Topic by Pramod VContentHi All,Here is a small piece of code to retrieve Products of a Category. Hope this helps:VersionNov 2014Code Block public void getProducts() { ServiceCategory category = new ServiceCategory(); category.ID = new ID(); category.ID.id = 70; category.ID.idSpecified = true; RNObject[] rnObj = new RNObject[1]; rnObj[0] = category; GetProcessingOptions gpo = new GetProcessingOptions(); gpo.FetchAllNames = true; rnObj = _client.Get(ciH, rnObj, gpo); if (rnObj != null) { foreach (RNObject obj in rnObj) { category = (ServiceCategory)obj; Console.WriteLine("Category Name : " + category.Name); ServiceProductDelta[] service_products = category.ProductLinks; for (int i = 0; i < service_products.Length; i++) { NamedIDHierarchy product_hierachy = service_products[i].ServiceProduct; Console.WriteLine("ID : " + product_hierachy.ID.id); Console.WriteLine("Name : " + product_hierachy.Name); } } } }