Advertisement
IDNPeterL

IPP .NET DevKit v2 - QBD Summary1099 Report

Oct 24th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. ReportingServices reportingService = new ReportingServices(context);
  2. Summary1099 reportSearchQuery = new Summary1099();
  3. reportSearchQuery.ReportBasis = Intuit.Ipp.Data.Qbd.ReportBasisEnum.Accrual;
  4. reportSearchQuery.ReportBasisSpecified = true;
  5. reportSearchQuery.Items  = new object[] { DateMacro.All };
  6. reportSearchQuery.ItemsElementName = new ItemsChoiceType6[] {ItemsChoiceType6.DateMacro};
  7. reportSearchQuery.UseThresholds = false;
  8. Report summary1099report = reportingService.Summary1099Report(reportSearchQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement