paulosinuk
IS-IT--Management
Hi,
I'm using CR XI SP2 and SQL Server 2000. I'm trying to code a mailto hyperlink on a text object. The hyperlink sits in the report footer and is a generic email address that the user can send emails to in the event that they have any enquiries about the report. As part of the email I want to send information on the report paramaters as I'm not likely to get this information if I asked the user.
Code as follows:
"mailto:Email@MyCompany.com" +
"?subject="+ ReportTitle +
"&body= &body=Enquiry Description" +
"%0D"+
"%0D"+
"%0D"+
"%0D"+
"The following section is for support purposes only. Please do not alter or delete this section." +
"Report Name: "+
"%0D"+
"Parameters Values of Report: "+
"%0D"+
" OrgLevel: "+ totext({?@OrgLevel},0) +
"%0D"+
" Location: " + {?@Location} +
"%0D"+
" Dept_or_Division_Switch: " + totext({?@Dept_or_Division_Switch}) +
"%0D"+
" Division: " +{?@Division} +
"%0D"+
" Time Period: " + {?@Period} +
"%0D"+
" Partner : " + {?@Partner} +
Code passes syntax check but if you leave the Email address in the hyperlinking information dialog blank nothing happens. If you enter an email address it uses that instead of the formula associated.
Has anyone experienced this or have a workaround?
I'm using CR XI SP2 and SQL Server 2000. I'm trying to code a mailto hyperlink on a text object. The hyperlink sits in the report footer and is a generic email address that the user can send emails to in the event that they have any enquiries about the report. As part of the email I want to send information on the report paramaters as I'm not likely to get this information if I asked the user.
Code as follows:
"mailto:Email@MyCompany.com" +
"?subject="+ ReportTitle +
"&body= &body=Enquiry Description" +
"%0D"+
"%0D"+
"%0D"+
"%0D"+
"The following section is for support purposes only. Please do not alter or delete this section." +
"Report Name: "+
"%0D"+
"Parameters Values of Report: "+
"%0D"+
" OrgLevel: "+ totext({?@OrgLevel},0) +
"%0D"+
" Location: " + {?@Location} +
"%0D"+
" Dept_or_Division_Switch: " + totext({?@Dept_or_Division_Switch}) +
"%0D"+
" Division: " +{?@Division} +
"%0D"+
" Time Period: " + {?@Period} +
"%0D"+
" Partner : " + {?@Partner} +
Code passes syntax check but if you leave the Email address in the hyperlinking information dialog blank nothing happens. If you enter an email address it uses that instead of the formula associated.
Has anyone experienced this or have a workaround?