Browse by Tags
All Tags »
native report »
Office Accounting (RSS)
A few people have had this problem now: They create a report add-in for Office Accounting but when they deploy to the end users the reports does not show up in the menu. One of those ”but it works for me!!” problems… A typical reason can be that you forgot
Read More...
I just got this question: “The problem is that I am creating a new custom report using the INativeReportV2 interface. I am trying to apply Aging Options Filter to the report. The problem is, how I do capture those values in the CreateDesign method? The
Read More...
I was asked how you can access the data in an Office Accounting report in code. As the code shows below this is very simple – you just have to remember a few things: · There is no guarantee that the columns in the data view won’t change between versions
Read More...
The question about the ReportColumnType came up in a comment for a prior post, and yeah I guess it’s fair that I tell you about it :o) First a brief description of the values, from the quick overview you can see that you really do not have that many ColumnTypes
Read More...
What if I have created a INativeReport and I want to filter it, but the build in filters are not exactly what I need? Well you can create your own filters! It does require some coding though (but we like code, right?). As an example let’s add a “Region”
Read More...
[ Serializable ] class RegionFilter : IReportFilterGenericV2 , ISerializable { private int censusRegion; private string state; private bool visible = true ; private string [] censusRegionNames = { "All" , "Northeast" , " New England " , " Middle Atlantic
Read More...
Ok - it’s been way too long since my last post, and I now feel forced to cover a topic that several people has asked me: “native reports are great and all, but can I add a total to my report”. The good news is the answer is yes, the bad news is it requires
Read More...
I was asked If you need a new Report add-in for each report you want to add. I think it is a good question and one of the things you do not get for free in you generate your reports using the templates (there I had a chance to mention it again) The answer
Read More...
I got a comment on one of the prior post asking if I would create a new post on how to query the data in the Office Accounting database directly, thank you for the question. I would like to encourage other readers to ask for other posts on other things
Read More...
I have been asked how to do these things if you are a VB programmer. Well my very first comment you may have guessed already :o) Use the templates! – yes that’s right, some sweet soul has created templates for the VB side of things as well. Back to my
Read More...
In my last post I showed that you can add a native report to Office Accounting. but really the report I created in my example was kind of bla – don’t you think? Let’s try to add a little meat to the report! Filtering To add filters to the report we have
Read More...
Ok, I’m back from vacation so let’s take a look at the next thing you can do with the report SDK; adding native reports. A native report is a report that will run in the Office Accounting report engine and it will be shown in the native Office Accounting
Read More...