You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
(54) |
Nov
(34) |
Dec
(45) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(49) |
Feb
(17) |
Mar
(13) |
Apr
|
May
(30) |
Jun
(13) |
Jul
(18) |
Aug
(23) |
Sep
(8) |
Oct
(10) |
Nov
(15) |
Dec
(24) |
2005 |
Jan
(16) |
Feb
(33) |
Mar
(58) |
Apr
(61) |
May
(37) |
Jun
(6) |
Jul
(30) |
Aug
(31) |
Sep
(12) |
Oct
(18) |
Nov
(8) |
Dec
(8) |
2006 |
Jan
(30) |
Feb
(4) |
Mar
(5) |
Apr
(4) |
May
(2) |
Jun
(6) |
Jul
(11) |
Aug
(21) |
Sep
(12) |
Oct
(9) |
Nov
(1) |
Dec
(15) |
2007 |
Jan
(4) |
Feb
(6) |
Mar
(7) |
Apr
(1) |
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(4) |
Sep
(6) |
Oct
|
Nov
|
Dec
(3) |
2008 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(3) |
Dec
|
2010 |
Jan
(5) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bob D. <bd...@si...> - 2005-04-20 13:49:03
|
On Wed, 2005-04-20 at 08:24 -0500, Al Arzaga wrote: > Can I add a report part inside a <break> section? Nope. Keep in mind parts are are only "layout helpers" for reports. Similar to HTML tables. > > I'd like to display data within the 'summary' section of a report. Which you can do, but just not with parts. Parts contain whole reports. Each report drives a whole resultset from top to bottom. What are you trying to do exactly here? - bob |
From: Al A. <aa...@ge...> - 2005-04-20 13:23:45
|
Can I add a report part inside a <break> section? I'd like to display data within the 'summary' section of a report. -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Wednesday, April 20, 2005 7:43 AM To: Al Arzaga Cc: RLIB USERS Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour Al, There are two ways 1) Call multiple rlib_add_report 2) Use parts <pr> <pd> <Report>.....</Report> </pd> </pr> <pr> <pd> <Report>.....</Report> </pd> </pr> <pr> <pd> <Report>.....</Report> </pd> </pr> - bob On Tue, 2005-04-19 at 14:48 -0500, Al Arzaga wrote: > If I were to concatenate reports, what should be done? > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Tuesday, April 19, 2005 10:08 AM > To: Al Arzaga > Cc: RLIB USERS > Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour > > > Are you looking to do side by side or concatenation of reports? > > - bob > > On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > > When adding a query="'something_else'" to the report's xml > > it is from that query that the report part iterates through a data set. > > > > Is there a way to have a second query's data set be included in that > report > > part so that it, too iterates, through the report? They both will contain > > the same number of rows/records. > > > > > > > > > > -----Original Message----- > > From: Bob Doan [mailto:bd...@si...] > > Sent: Friday, April 01, 2005 12:07 PM > > To: Al Arzaga > > Cc: RLIB USERS > > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > > > > Hi, > > > > The first query added to RLIB is the "Main Loop" Query. That drives the > > number of ROWS. > > > > In the <Report> > > > > tag you can have a query="'something_else'" to override this > > > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > > Hi, again > > > > > > I'm trying to implement something similar to that of RLIB's > > > flow_part.php/flow_part.xml example. > > > > > > What I'm seeing is a weird behavior where if I were to switch the order > > > of the rlib_add_query_as() calls, I get different results. The output > > > of the second result set ends up displaying only as many as the row > > > count of the first result set. > > > > > > In the context of the flow_part example, for instance, you have the > > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > > resulting output would show 5 rows for both sets of data in the > > > resulting output. If I were to switch the order of the > > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > > > Now, this isn't what I see with _the_ example code. I'm only > > > explaining my problem in terms of the example code just so that people > > > can get the general idea. > > > > > > What I'm wondering is if others have seen this problem. PHP code > > > snippet: > > > > > > $rlib = rlib_init(); > > > rlib_add_datasource_array($rlib, "local_array"); > > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > > > // switching this with > > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > > > // this gives different results. > > > rlib_add_report($rlib, "main.xml"); > > > rlib_set_output_format_from_text($rlib, $format); > > > rlib_execute($rlib); > > > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > > Depending on which is called first, I get either a single listing for > > > op_array in the report, or all 78. > > > > > > > > > -Al > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: New Crystal Reports XI. > > Version 11 adds new functionality designed to reduce time involved in > > creating, integrating, and deploying reporting solutions. Free runtime > info, > > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users ------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2005-04-20 12:43:31
|
Al, There are two ways 1) Call multiple rlib_add_report 2) Use parts <pr> <pd> <Report>.....</Report> </pd> </pr> <pr> <pd> <Report>.....</Report> </pd> </pr> <pr> <pd> <Report>.....</Report> </pd> </pr> - bob On Tue, 2005-04-19 at 14:48 -0500, Al Arzaga wrote: > If I were to concatenate reports, what should be done? > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Tuesday, April 19, 2005 10:08 AM > To: Al Arzaga > Cc: RLIB USERS > Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour > > > Are you looking to do side by side or concatenation of reports? > > - bob > > On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > > When adding a query="'something_else'" to the report's xml > > it is from that query that the report part iterates through a data set. > > > > Is there a way to have a second query's data set be included in that > report > > part so that it, too iterates, through the report? They both will contain > > the same number of rows/records. > > > > > > > > > > -----Original Message----- > > From: Bob Doan [mailto:bd...@si...] > > Sent: Friday, April 01, 2005 12:07 PM > > To: Al Arzaga > > Cc: RLIB USERS > > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > > > > Hi, > > > > The first query added to RLIB is the "Main Loop" Query. That drives the > > number of ROWS. > > > > In the <Report> > > > > tag you can have a query="'something_else'" to override this > > > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > > Hi, again > > > > > > I'm trying to implement something similar to that of RLIB's > > > flow_part.php/flow_part.xml example. > > > > > > What I'm seeing is a weird behavior where if I were to switch the order > > > of the rlib_add_query_as() calls, I get different results. The output > > > of the second result set ends up displaying only as many as the row > > > count of the first result set. > > > > > > In the context of the flow_part example, for instance, you have the > > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > > resulting output would show 5 rows for both sets of data in the > > > resulting output. If I were to switch the order of the > > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > > > Now, this isn't what I see with _the_ example code. I'm only > > > explaining my problem in terms of the example code just so that people > > > can get the general idea. > > > > > > What I'm wondering is if others have seen this problem. PHP code > > > snippet: > > > > > > $rlib = rlib_init(); > > > rlib_add_datasource_array($rlib, "local_array"); > > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > > > // switching this with > > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > > > // this gives different results. > > > rlib_add_report($rlib, "main.xml"); > > > rlib_set_output_format_from_text($rlib, $format); > > > rlib_execute($rlib); > > > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > > Depending on which is called first, I get either a single listing for > > > op_array in the report, or all 78. > > > > > > > > > -Al > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: New Crystal Reports XI. > > Version 11 adds new functionality designed to reduce time involved in > > creating, integrating, and deploying reporting solutions. Free runtime > info, > > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-04-19 19:48:38
|
If I were to concatenate reports, what should be done? -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Tuesday, April 19, 2005 10:08 AM To: Al Arzaga Cc: RLIB USERS Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour Are you looking to do side by side or concatenation of reports? - bob On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > When adding a query="'something_else'" to the report's xml > it is from that query that the report part iterates through a data set. > > Is there a way to have a second query's data set be included in that report > part so that it, too iterates, through the report? They both will contain > the same number of rows/records. > > > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Friday, April 01, 2005 12:07 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > Hi, > > The first query added to RLIB is the "Main Loop" Query. That drives the > number of ROWS. > > In the <Report> > > tag you can have a query="'something_else'" to override this > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > Hi, again > > > > I'm trying to implement something similar to that of RLIB's > > flow_part.php/flow_part.xml example. > > > > What I'm seeing is a weird behavior where if I were to switch the order > > of the rlib_add_query_as() calls, I get different results. The output > > of the second result set ends up displaying only as many as the row > > count of the first result set. > > > > In the context of the flow_part example, for instance, you have the > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > resulting output would show 5 rows for both sets of data in the > > resulting output. If I were to switch the order of the > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > Now, this isn't what I see with _the_ example code. I'm only > > explaining my problem in terms of the example code just so that people > > can get the general idea. > > > > What I'm wondering is if others have seen this problem. PHP code > > snippet: > > > > $rlib = rlib_init(); > > rlib_add_datasource_array($rlib, "local_array"); > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > // switching this with > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > // this gives different results. > > rlib_add_report($rlib, "main.xml"); > > rlib_set_output_format_from_text($rlib, $format); > > rlib_execute($rlib); > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > Depending on which is called first, I get either a single listing for > > op_array in the report, or all 78. > > > > > > -Al > > > > > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users ------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2005-04-19 15:13:04
|
Then you probably want to use a follower rlib_add_resultset_follower(rlib, LEADER, FOLLOWER); The makes rlib move the follower query the same way as the leader Only use this if there are going to be the same number of rows in the LEADER and the FOLLOWER Keep in mind by default per report RLIB is only going to navigate one result set. - bob On Tue, 2005-04-19 at 10:10 -0500, Al Arzaga wrote: > side-by-side. > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Tuesday, April 19, 2005 10:08 AM > To: Al Arzaga > Cc: RLIB USERS > Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour > > > Are you looking to do side by side or concatenation of reports? > > - bob > > On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > > When adding a query="'something_else'" to the report's xml > > it is from that query that the report part iterates through a data set. > > > > Is there a way to have a second query's data set be included in that > report > > part so that it, too iterates, through the report? They both will contain > > the same number of rows/records. > > > > > > > > > > -----Original Message----- > > From: Bob Doan [mailto:bd...@si...] > > Sent: Friday, April 01, 2005 12:07 PM > > To: Al Arzaga > > Cc: RLIB USERS > > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > > > > Hi, > > > > The first query added to RLIB is the "Main Loop" Query. That drives the > > number of ROWS. > > > > In the <Report> > > > > tag you can have a query="'something_else'" to override this > > > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > > Hi, again > > > > > > I'm trying to implement something similar to that of RLIB's > > > flow_part.php/flow_part.xml example. > > > > > > What I'm seeing is a weird behavior where if I were to switch the order > > > of the rlib_add_query_as() calls, I get different results. The output > > > of the second result set ends up displaying only as many as the row > > > count of the first result set. > > > > > > In the context of the flow_part example, for instance, you have the > > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > > resulting output would show 5 rows for both sets of data in the > > > resulting output. If I were to switch the order of the > > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > > > Now, this isn't what I see with _the_ example code. I'm only > > > explaining my problem in terms of the example code just so that people > > > can get the general idea. > > > > > > What I'm wondering is if others have seen this problem. PHP code > > > snippet: > > > > > > $rlib = rlib_init(); > > > rlib_add_datasource_array($rlib, "local_array"); > > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > > > // switching this with > > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > > > // this gives different results. > > > rlib_add_report($rlib, "main.xml"); > > > rlib_set_output_format_from_text($rlib, $format); > > > rlib_execute($rlib); > > > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > > Depending on which is called first, I get either a single listing for > > > op_array in the report, or all 78. > > > > > > > > > -Al > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: New Crystal Reports XI. > > Version 11 adds new functionality designed to reduce time involved in > > creating, integrating, and deploying reporting solutions. Free runtime > info, > > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-04-19 15:10:08
|
side-by-side. -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Tuesday, April 19, 2005 10:08 AM To: Al Arzaga Cc: RLIB USERS Subject: RE: [Rlib-users] odd rlib_add_query_as() behaviour Are you looking to do side by side or concatenation of reports? - bob On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > When adding a query="'something_else'" to the report's xml > it is from that query that the report part iterates through a data set. > > Is there a way to have a second query's data set be included in that report > part so that it, too iterates, through the report? They both will contain > the same number of rows/records. > > > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Friday, April 01, 2005 12:07 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > Hi, > > The first query added to RLIB is the "Main Loop" Query. That drives the > number of ROWS. > > In the <Report> > > tag you can have a query="'something_else'" to override this > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > Hi, again > > > > I'm trying to implement something similar to that of RLIB's > > flow_part.php/flow_part.xml example. > > > > What I'm seeing is a weird behavior where if I were to switch the order > > of the rlib_add_query_as() calls, I get different results. The output > > of the second result set ends up displaying only as many as the row > > count of the first result set. > > > > In the context of the flow_part example, for instance, you have the > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > resulting output would show 5 rows for both sets of data in the > > resulting output. If I were to switch the order of the > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > Now, this isn't what I see with _the_ example code. I'm only > > explaining my problem in terms of the example code just so that people > > can get the general idea. > > > > What I'm wondering is if others have seen this problem. PHP code > > snippet: > > > > $rlib = rlib_init(); > > rlib_add_datasource_array($rlib, "local_array"); > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > // switching this with > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > // this gives different results. > > rlib_add_report($rlib, "main.xml"); > > rlib_set_output_format_from_text($rlib, $format); > > rlib_execute($rlib); > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > Depending on which is called first, I get either a single listing for > > op_array in the report, or all 78. > > > > > > -Al > > > > > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users ------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2005-04-19 15:08:28
|
Are you looking to do side by side or concatenation of reports? - bob On Tue, 2005-04-19 at 10:04 -0500, Al Arzaga wrote: > When adding a query="'something_else'" to the report's xml > it is from that query that the report part iterates through a data set. > > Is there a way to have a second query's data set be included in that report > part so that it, too iterates, through the report? They both will contain > the same number of rows/records. > > > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Friday, April 01, 2005 12:07 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour > > > Hi, > > The first query added to RLIB is the "Main Loop" Query. That drives the > number of ROWS. > > In the <Report> > > tag you can have a query="'something_else'" to override this > > On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > > Hi, again > > > > I'm trying to implement something similar to that of RLIB's > > flow_part.php/flow_part.xml example. > > > > What I'm seeing is a weird behavior where if I were to switch the order > > of the rlib_add_query_as() calls, I get different results. The output > > of the second result set ends up displaying only as many as the row > > count of the first result set. > > > > In the context of the flow_part example, for instance, you have the > > arrays data, with 5 rows in the result set, and moredata, with 59. My > > resulting output would show 5 rows for both sets of data in the > > resulting output. If I were to switch the order of the > > rlib_add_query_as() calls, I'd get all sets of data to appear. > > > > Now, this isn't what I see with _the_ example code. I'm only > > explaining my problem in terms of the example code just so that people > > can get the general idea. > > > > What I'm wondering is if others have seen this problem. PHP code > > snippet: > > > > $rlib = rlib_init(); > > rlib_add_datasource_array($rlib, "local_array"); > > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > > > // switching this with > > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > > > // this gives different results. > > rlib_add_report($rlib, "main.xml"); > > rlib_set_output_format_from_text($rlib, $format); > > rlib_execute($rlib); > > > > Size of main_array result set is 1. Size of op_array result set is 78. > > Depending on which is called first, I get either a single listing for > > op_array in the report, or all 78. > > > > > > -Al > > > > > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-04-19 15:04:39
|
When adding a query="'something_else'" to the report's xml it is from that query that the report part iterates through a data set. Is there a way to have a second query's data set be included in that report part so that it, too iterates, through the report? They both will contain the same number of rows/records. -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Friday, April 01, 2005 12:07 PM To: Al Arzaga Cc: RLIB USERS Subject: Re: [Rlib-users] odd rlib_add_query_as() behaviour Hi, The first query added to RLIB is the "Main Loop" Query. That drives the number of ROWS. In the <Report> tag you can have a query="'something_else'" to override this On Fri, 2005-04-01 at 10:54 -0600, Al Arzaga wrote: > Hi, again > > I'm trying to implement something similar to that of RLIB's > flow_part.php/flow_part.xml example. > > What I'm seeing is a weird behavior where if I were to switch the order > of the rlib_add_query_as() calls, I get different results. The output > of the second result set ends up displaying only as many as the row > count of the first result set. > > In the context of the flow_part example, for instance, you have the > arrays data, with 5 rows in the result set, and moredata, with 59. My > resulting output would show 5 rows for both sets of data in the > resulting output. If I were to switch the order of the > rlib_add_query_as() calls, I'd get all sets of data to appear. > > Now, this isn't what I see with _the_ example code. I'm only > explaining my problem in terms of the example code just so that people > can get the general idea. > > What I'm wondering is if others have seen this problem. PHP code > snippet: > > $rlib = rlib_init(); > rlib_add_datasource_array($rlib, "local_array"); > rlib_add_query_as($rlib, "local_array", "main_array", "main_array"); > // switching this with > rlib_add_query_as($rlib, "local_array", "op_array", "op_array"); > // this gives different results. > rlib_add_report($rlib, "main.xml"); > rlib_set_output_format_from_text($rlib, $format); > rlib_execute($rlib); > > Size of main_array result set is 1. Size of op_array result set is 78. > Depending on which is called first, I get either a single listing for > op_array in the report, or all 78. > > > -Al > > > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2005-04-18 23:27:06
|
Roddy, src/examples/php/fixed_part.[php/xml] Provides a nice example of rlib_query_refresh, rlib_signal_connect Possible Signals are: "row_change" "report_done" "report_start" "report_iteration" "part_iteration" There are two types of followers: rlib_add_resultset_follower(rlib, LEADER, FOLLOWER) is for tables that have the same number of rows. An example of this would be year to year reporting (where there are the same number of rows in the year). So you could have a report w/ this year and last year... ect rlib_add_resultset_follower_n_to_1 rlib_add_resultset_follower_n_to_1(rlib, LEADER, LEADER_FIELD_EXPRESSION, FOLLOWER, FOLLOWER_FIELD_EXPRESSION) This is used to make relations in data So say the LEADER table has a field category_uid and the FOLLOWER table was a table of category_uid and cateogry_name You would do: lib_add_resultset_follower_n_to_1(rlib, "LEADER", "LEADER.category_uid", "FOLLOWER", "FOLLOWER.category_uid") The expressions can be normal RLIB Expressions so you can get creative here. rlib_add_datasource_mysql_from_group: rlib_add_datasource_mysql_from_group(rlib, "DATA_SOURCE_NAME", "GROUP NAME"); I didn't write the group stuff, but my understand is mysql allows you to define a "group" where you put the user name/password/host/port,db_name, ect in. This way you don't need to put the username/password in the source Hope this helps - bob On Mon, 2005-04-18 at 17:16 -0500, Roddy G. Posada Santos wrote: > I need some help with how to use this functions..... > and please an example of the use symbols like ">" or "<" because i > when execute the report using them xml file sends error outputs. > > rlib_add_datasource_mysql_from_group > rlib_add_resultset_follower > rlib_add_resultset_follower_n_to_1 > rlib_add_report_from_buffer > rlib_query_refresh > rlib_signal_connect > > this functions are not in the manual, i need to know how to make a > relation from the principal query to a second one (like parent -child > or master-detail) this is because i have a master table who have > relations with 2 different tables, if i do one "select" i obtain > duplicate values "cartesian product"... > > thanks > > -- roddy > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-04-18 22:16:59
|
Yes, Lines and HorizontalLines have a "suppress" field so <Line suppress="iif(expression, yes, no)"> . . . </Line> - bob On Mon, 2005-04-18 at 17:04 -0500, Al Arzaga wrote: > Is there a way, on the XML side, to keep data and field literals from being > printed if a condition is met? > > I have some data that sits in the <Break> section of my XML. Some of the > data need not be printed when specific fields are equal to zero. Under > those instances, I'd like the report to not include that data. Anyway I can > do this? > > > -Al > > > ------------------------------------------------------- > This SF.Net email is sponsored by: New Crystal Reports XI. > Version 11 adds new functionality designed to reduce time involved in > creating, integrating, and deploying reporting solutions. Free runtime info, > new features, or free trial, at: http://www.businessobjects.com/devxi/728 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Roddy G. P. S. <rp...@gm...> - 2005-04-18 22:16:22
|
I need some help with how to use this functions..... and please an example of the use symbols like ">" or "<" because i when execute the report using them xml file sends error outputs. rlib_add_datasource_mysql_from_group=20 rlib_add_resultset_follower=20 rlib_add_resultset_follower_n_to_1=20 rlib_add_report_from_buffer=20 rlib_query_refresh=20 rlib_signal_connect=20 this functions are not in the manual, i need to know how to make a relation from the principal query to a second one (like parent -child or master-detail) this is because i have a master table who have relations with 2 different tables, if i do one "select" i obtain duplicate values "cartesian product"... thanks -- roddy |
From: Al A. <aa...@ge...> - 2005-04-18 22:04:56
|
Is there a way, on the XML side, to keep data and field literals from being printed if a condition is met? I have some data that sits in the <Break> section of my XML. Some of the data need not be printed when specific fields are equal to zero. Under those instances, I'd like the report to not include that data. Anyway I can do this? -Al |
From: Bob D. <bd...@si...> - 2005-04-14 13:25:52
|
On Thu, 2005-04-14 at 13:45 +0400, Guest007 wrote: > Hello 2 All! > > I'm python programmer and try to find a reporting tool for me. rlib looks very good. > I try to compile and have some questions: > 1) Why in $ ./configure --disable-perl --with-pythonver=2.4 > I've got this: > checking for a Python interpreter with version >= 2.4... python > checking for python... /usr/bin/python > checking for python version... 2.4 > checking for python platform... linux2 > checking for python script directory... ${prefix}/lib/python2.4/site-packages > checking for python extension module directory... ${exec_prefix}/lib/python2.4/site-packages > > {exec_prefix}={prefix}=/usr/local and for testing it's fine for me, but I have not python there... > Python installed in /usr add a "--prefix=/usr" to your configure > > 2) Are you planning to add a sqlite3 support? Very good local sql database. For local projects and > for testing purpose it will be better choice. But for non-C programs may be Array Table Data Sources > is better... I have no immediate plans to add sqlite support, feel free to however :) Also I have not added Array table data source to python. I don't have any immediate plans on do that either. Again, feel free to tack a crack at it > > 3) Why > checking for gdlib-config... no > *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT FOR IT > Only GD is supported? Not GD2? You probably need "gd-progs" package installed on your distro. - bob |
From: Guest007 <tr...@ya...> - 2005-04-14 09:43:57
|
Hello 2 All! I'm python programmer and try to find a reporting tool for me. rlib looks very good. I try to compile and have some questions: 1) Why in $ ./configure --disable-perl --with-pythonver=2.4 I've got this: checking for a Python interpreter with version >= 2.4... python checking for python... /usr/bin/python checking for python version... 2.4 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.4/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.4/site-packages {exec_prefix}={prefix}=/usr/local and for testing it's fine for me, but I have not python there... Python installed in /usr 2) Are you planning to add a sqlite3 support? Very good local sql database. For local projects and for testing purpose it will be better choice. But for non-C programs may be Array Table Data Sources is better... 3) Why checking for gdlib-config... no *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT FOR IT Only GD is supported? Not GD2? thanks a lot Aleksej -- WBR Guest007 JID: gue...@ja... |
From: Bob D. <bd...@si...> - 2005-04-11 13:46:28
|
Hi, On Mon, 2005-04-11 at 14:40 +0200, Jeremy Pointer wrote: > Hi there, > > I am in the process of converting foxpro (and some old dbase/clipper) > apps to PHP/MySql/PgSql and looking for a decent Open Source Report > Designer/Reporter came across your library. > > I guess from the reference to foxpro and the usage of foxpro style > functions in the rlib library that somewhere along the line foxpro was > used by the authors, so my question is, Is there a way to convert Foxpro > Report (fr?) Files into the required XML files for use with RLIB. Guilty! RLIB was specifically designed with FoxPro In mind (I used foxpro for years) I didn't however write a conversion. I last left foxpro on 2.6 (DOS BASED) RLIB can do a lot more things then FoxPro's report generator so sometimes a 1:1 conversion isn't always the "best" solution - bob |
From: Jeremy P. <je...@po...> - 2005-04-11 12:41:28
|
Hi there, I am in the process of converting foxpro (and some old dbase/clipper) apps to PHP/MySql/PgSql and looking for a decent Open Source Report Designer/Reporter came across your library. I guess from the reference to foxpro and the usage of foxpro style functions in the rlib library that somewhere along the line foxpro was used by the authors, so my question is, Is there a way to convert Foxpro Report (fr?) Files into the required XML files for use with RLIB. I suppose I could write one myself but if anyone already has one why reinvent the wheel. Regards Jeremy Pointer je...@po... -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. |
From: Bob D. <bd...@si...> - 2005-04-10 15:37:30
|
On Sun, 2005-04-10 at 17:18 +0200, Bruno Sadiez wrote: > hi Bob, > > > HOWEVER on 12/4/2004 someone sent in a patch that > > added support for > > Can this guy be contacted ? Warren Smith <wa...@wa...> > > > > If you know c writing a custom input method is not > > hard at all. All you > > are doing is implementing some basic functions > > (fist, next, previous, > > last, ...) > You do not tell me much here. I need to bypass > rlib_add_datasource and rlib_add_query_as in order to > use RLIB this way. How can this be done ? RLIB works by having data sources (MYSQL, POSTGRESQL, ODBC, Custom) You Implement a "Class" that provides basic methods Then you call rlib_add_datasource(rlib_pointer_here, "Some Name", POINTER_TO_CLASS HERE); I attached the patch that Warren sent me. You can see how he implemented the XML Input class. > I am working on a philanthropy project (something like > > www.betterworldtelecom.com). I am not a professional > programmer and I started C writing 3-4 month ago. I'm > afraid my C is even worse than my english. Anyway if > the xml extentions I may add to rlib might be of > anyhelp I'd be glad to contribute. > > > If my software can be of any help to anybody why not ? > > > Regards > Bruno Maybe you can try to work w/ Warren to get the XML Input method included in the RLIB Source tree. - bob |
From: Bob D. <bd...@si...> - 2005-04-10 14:18:15
|
Hi, Right now in RLIB There is no native support for a libxml input method, HOWEVER on 12/4/2004 someone sent in a patch that added support for libxml as a input. They didn't however sign the dual copy right agreement :( If you know c writing a custom input method is not hard at all. All you are doing is implementing some basic functions (fist, next, previous, last, ...) RLIB should provide the speed you are looking for. We just ran some tests @ SICOM and we were able to make a 10,000 page reports in under 10 seconds. Right now I don't have time to add a generic libxml input method into the engine (Perhaps you do..?) We're focused on graphing at the moment. FYI, Since you are probably not making GPL'd invoice software you might want to consider the cost of rlib (http://rlib.sicompos.com/license.php) before you procede. If you are making GPL'd invoice software disreguard this ;) - bob On Sun, 2005-04-10 at 11:49 +0200, Bruno Sadiez wrote: > Hello Bob, > > All my program is written in C. I'm using libxml and > the invoice data is contained in an xml tree. > > Regards > Bruno > > > --- Bob Doan <bd...@si...> wrote: > > Bruno, > > > > Do you want to use RLIB from c, php, python or java? > > > > On Sun, 2005-04-10 at 02:38 +0200, Bruno Sadiez > > wrote: > > > I was wondering if rlib could be used as part of > > an > > > invoicing system I'm am writing. > > > I would like to have more control over the pdf > > > creation process and be able to feed rlib my own > > data > > > without issuing rlib_add_datasource and > > > rlib_add_query_as. > > > According to another post on this list, this seems > > > possible. > > > As my application also needs to issue xml files, > > my > > > invoice data is contained in an xml tree (I'm > > using > > > libxml2). FOP is too slow for what I need to do. > > > > > > Thank you in advance > > > Regards > > > Bruno > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________________________________________ > > > Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace > > de stockage pour vos mails ! > > > Créez votre Yahoo! Mail sur > > http://fr.mail.yahoo.com/ > > > > > > > > > > > > ------------------------------------------------------- > > > SF email is sponsored by - The IT Product Guide > > > Read honest & candid reviews on hundreds of IT > > Products from real users. > > > Discover which products truly live up to the hype. > > Start reading now. > > > > > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > > _______________________________________________ > > > Rlib-devel mailing list > > > Rli...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/rlib-devel > > -- > > Bob Doan <bd...@si...> > > > > > > > > > > > __________________________________________________________________ > Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails ! > Créez votre Yahoo! Mail sur http://fr.mail.yahoo.com/ -- Bob Doan <bd...@si...> |
From: Mike R. <mr...@si...> - 2005-04-06 21:40:04
|
Al: No - Shouldn't be. Best Regards, Mike On Wed, 2005-04-06 at 16:19 -0500, Al Arzaga wrote: > Then is there any point to the layout attribute in a <part> tag? > > > -----Original Message----- > From: Mike Roth [mailto:mr...@si...] > Sent: Wednesday, April 06, 2005 4:06 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: [Rlib-users] flow and fixed parts > > > Al: > > There really is no difference between fixed and flow parts - this needs > to be removed. > > The modularity your are referring is independent of parts. However, > using different files to include things like headers and footers is > a great way of creating a common code base/look and feel among reports. > > Best Regards, > > Mike > > On Wed, 2005-04-06 at 16:04 -0500, Al Arzaga wrote: > > Am I right to assume that the major difference between flow and fixed > parts > > is that flow parts involve storing the reports modularly in different xml > > files, while fixed parts mean you store everything in one monolithic xml > > file? > > > > > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-04-06 21:12:02
|
Then is there any point to the layout attribute in a <part> tag? -----Original Message----- From: Mike Roth [mailto:mr...@si...] Sent: Wednesday, April 06, 2005 4:06 PM To: Al Arzaga Cc: RLIB USERS Subject: Re: [Rlib-users] flow and fixed parts Al: There really is no difference between fixed and flow parts - this needs to be removed. The modularity your are referring is independent of parts. However, using different files to include things like headers and footers is a great way of creating a common code base/look and feel among reports. Best Regards, Mike On Wed, 2005-04-06 at 16:04 -0500, Al Arzaga wrote: > Am I right to assume that the major difference between flow and fixed parts > is that flow parts involve storing the reports modularly in different xml > files, while fixed parts mean you store everything in one monolithic xml > file? > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Mike R. <mr...@si...> - 2005-04-06 21:06:21
|
Al: There really is no difference between fixed and flow parts - this needs to be removed. The modularity your are referring is independent of parts. However, using different files to include things like headers and footers is a great way of creating a common code base/look and feel among reports. Best Regards, Mike On Wed, 2005-04-06 at 16:04 -0500, Al Arzaga wrote: > Am I right to assume that the major difference between flow and fixed parts > is that flow parts involve storing the reports modularly in different xml > files, while fixed parts mean you store everything in one monolithic xml > file? > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-04-06 20:56:11
|
Am I right to assume that the major difference between flow and fixed parts is that flow parts involve storing the reports modularly in different xml files, while fixed parts mean you store everything in one monolithic xml file? |
From: Al A. <aa...@ge...> - 2005-04-05 23:09:25
|
In this specific case, just three columns' worth. So, I don't expect it to go beyond the width of a page. But in another application where I may use this orientation, I may have 4 columns, maybe 5. It depends. That's interesting that you can dynamically generate the XML file. A light bulb just turned on inside my head. Thanks for that tip! -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Tuesday, April 05, 2005 6:04 PM To: Al Arzaga Cc: RLIB USERS Subject: RE: left-to-right presentation How many pages across would you go? You can always make custom XML On the fly (not form a file) And pass it in with rlib_add_report_from_buffer($rlib, $SOME_STRING) You have to manage pages across your self (If the report is going to come out in PDF) But programatically counting is simple :) - bob On Tue, 2005-04-05 at 18:05 -0500, Al Arzaga wrote: > Well, basically like so: > > > First Name Al Derek > Last Name Arzaga Giromini > Phone Number 12345678 31245678 > Color Blue White > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Tuesday, April 05, 2005 5:52 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: left-to-right presentation > > > Hymm.. I'm not quite sure what you are looking for. > > Can you make a little example and send it in. > > - bob > > On Tue, 2005-04-05 at 17:48 -0500, Al Arzaga wrote: > > Bob, > > > > Is there a way to represent the data from left to right, instead of top to > > bottom? > > > > For example, show the headers along the left, and then print the > result-set > > to the right of the headers. All that comes to mind is making each column > a > > report and place them side to side between <pd> tags like in > fixed_path.xml. > > > > For my current needs, this will work as the size of the result set is > known. > > But in the instance that the row size is unknown, is there a way to > > implement this? > > > > > > -Al -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-04-05 23:03:42
|
How many pages across would you go? You can always make custom XML On the fly (not form a file) And pass it in with rlib_add_report_from_buffer($rlib, $SOME_STRING) You have to manage pages across your self (If the report is going to come out in PDF) But programatically counting is simple :) - bob On Tue, 2005-04-05 at 18:05 -0500, Al Arzaga wrote: > Well, basically like so: > > > First Name Al Derek > Last Name Arzaga Giromini > Phone Number 12345678 31245678 > Color Blue White > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Tuesday, April 05, 2005 5:52 PM > To: Al Arzaga > Cc: RLIB USERS > Subject: Re: left-to-right presentation > > > Hymm.. I'm not quite sure what you are looking for. > > Can you make a little example and send it in. > > - bob > > On Tue, 2005-04-05 at 17:48 -0500, Al Arzaga wrote: > > Bob, > > > > Is there a way to represent the data from left to right, instead of top to > > bottom? > > > > For example, show the headers along the left, and then print the > result-set > > to the right of the headers. All that comes to mind is making each column > a > > report and place them side to side between <pd> tags like in > fixed_path.xml. > > > > For my current needs, this will work as the size of the result set is > known. > > But in the instance that the row size is unknown, is there a way to > > implement this? > > > > > > -Al -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-04-05 22:52:17
|
Hymm.. I'm not quite sure what you are looking for. Can you make a little example and send it in. - bob On Tue, 2005-04-05 at 17:48 -0500, Al Arzaga wrote: > Bob, > > Is there a way to represent the data from left to right, instead of top to > bottom? > > For example, show the headers along the left, and then print the result-set > to the right of the headers. All that comes to mind is making each column a > report and place them side to side between <pd> tags like in fixed_path.xml. > > For my current needs, this will work as the size of the result set is known. > But in the instance that the row size is unknown, is there a way to > implement this? > > > -Al -- Bob Doan <bd...@si...> |