If ColdFusion is your backend you can use ReportBuilder:
http://www.adobe.com/support/coldfusion/downloads.html
Paul
On Oct 10, 2009, at 5:34 PM, Kim Hoopingarner wrote:
>
> What would be suggested in creating PDF reports when I'm using Flex
> as the
application?
That is what I tried. I keep getting an error that I'm trying to figure out.
It's an odd one.
Channel disconnected before an acknowledgement was received.
I call the cfc in flex who gets the query info and sends it to the report.
Here's the cfc.
Ideas?
<cffunction name="TALENT_AttendanceSheet" access="remote" >
<cfargument name="RegID" required="true">
<cfargument name="SessionNo" required="true">
<cfquery name="getAll" datasource="KimberlyH85">
select *
from e_classes
ORDER BY ProgramOrder, ClassName, ClassDay, ClassTime
</cfquery>
<cfreport template="TALENT_AttendanceSheet.cfr" query="getAll"
format="PDF">
</cfreport>
</cffunction>