GetHolidayList Method See Also Example DescriptionReturns the HolidaysParams data collection that identify all holidays. SyntaxVisual BasicPublic Function GetHolidayList() As HolidaysParams ExampleC#Copy CodeSAPbobsCOM.CompanyService oCmpSrv = oCompany.GetCompanyService(); SAPbobsCOM.HolidayService holidayService = oCmpSrv.GetBusinessService(SAPbobsCOM.ServiceTypes.HolidayService); SAPbobsCOM.HolidaysParams hdList = holidayService.GetHolidayList(); for (int i = 0; i < hdList.Count; i++) { Console.WriteLine(hdList.Item(i).HolidayCode); } See AlsoHolidayService Object