Tuesday, June 29, 2010
Great Article on SQL grouping by time periods
http://weblogs.sqlteam.com/jeffs/archive/2007/09/10/group-by-month-sql.aspx
Tuesday, June 15, 2010
Birt Reports on Aim Desktop - Trailing 13 months
I like to show the trailing 13 complete months in chart reports that auto-load on the work desk so that the user can see the annual trend and the same month from the year prior. I riffed of the last second of the month sql discussed in my "nice looking date parameters" article to come up with the where clause for the chart dataset.
First, read up on the dateadd function here. http://www.w3schools.com/sql/func_dateadd.asp
Maybe there's a cleaner way to do this, but it works.
Here's a simple application:
select ph_workorder, ph_date_created
from phase
where ph_date_created > dateadd (m, -13, dateadd
(ss,-1, convert(datetime, convert(varchar,(dateadd (mm,1,getdate() - day (getdate())+2)-1), 101))) )
order by ph_date_created
Wednesday, June 9, 2010
Nice Looking Date Parameters in Birt
select distinct convert(datetime, convert(varchar,dateadd(day,-datepart(day,ae_p_pst_e.status_date)+1,ae_p_pst_e.status_date), 101)) as starting_date,
right(convert(varchar, status_date, 106), 8) as display_name
from ae_p_pst_e
order by date desc
right(convert(varchar, status_date, 106), 8) as display_name
from ae_p_pst_e
Tuesday, June 8, 2010
Shortening long string fields and removing carriage returns


Inevitably, your users will want a work order list report. In AiM, the work order and phase description fields are up to 255 chars long, which can eat up a lot of space in the limited space available on your report. To avoid killing tons of trees every time a report is printed, there are a couple options to shorten the text passed to the report.
Use the sql command SUBSTRING to limit the number of characters retrieved from the database.
select
substring (ph_desc, 1, 60) as ph_desc
from phase
which means that 60 chars, starting with the first character, of the ph_desc field will be retrieved.
Then, AiM allows users to enter carriage returns and line feeds, so I do a couple more modifications to remove those since they can also eat up space.
--to remove carriage returns
select
replace (ph_desc, CHAR (13), ' ') as ph_desc
from phase
and/or
--to remove line feeds
select
replace (ph_desc, CHAR (10), ' ') as ph_desc
from phase
All of these can be combined in the following way.
select
replace (replace (substring(ph_desc,1,60), CHAR (13), ' '), CHAR(10), ' ') as ph_desc
from phase
Friday, June 4, 2010
Report Item Visibility based on parameter
Multiple, Multi-Select Parameters

var endOfQuery = " WHERE workorder.proposal IN ('" + params["proposal"].replace(/,/g,"','") + "')";
this.queryText += endOfQuery;
Another way to view this would be:
var endOfQuery = " WHERE tablename.columnname IN ('" + params["parametername"].replace(/,/g,"','") + "')";this.queryText += endOfQuery;
This will append the where clause onto the end of the query. It may be possible to modify this script to accomodate additional where clauses. It's been a while since I used this method and I may have tried and failed or maybe I never tried it.
My current preferred method is to write the query, but to include the where clause. A script is still required, but write string variables in the where clause. The script replaces these strings with selected parameter values.
The where clause may be something like this:
where tablename1.columname1 in ('xxx') and tablename2.columname2 in ('yyy')
Here's the script.
this.queryText = this.queryText.replace("xxx",params["parameter1"].value.join("','" ))
this.queryText = this.queryText.replace("yyy",params["parameter2"].value.join("','" ))
Hyperlinks from a Birt Report to Aim
In Birt, build your report. Then select the particular field for which the hyperlink is to be applied. Click on the properties editor and choose hyperlink. Select Link to and the hyperlink editor is displayed. In the hyperlink editor, select URI. Click the Fx button on the right to open the Expression builder. Type the URL of the AIM application surrounded by double quotes and end by referring the unique value that will direct the hyperlink to the corresponding Aim record.
A couple examples:
"https://gwuapp.assetworks.com/fmax/screen/WO_VIEW?proposal=" + row ["PH_WORKORDER"]
"https://gwuapp.assetworks.com/fmax/screen/SC_INVOICE_VIEW?tranxNo=" + row ["tranx_no_con"]
To find the exact URL, you can see it Aim, by doing a search and then selecting a record. The URL that is displayed is the unique url associated with that record. From that you'll understand the basic format, and how you need to modify it as a dynamically constructed hyperlink in BIRT.










