We are evaluating the prospect of integrating and/or using Crystal
Reports with some of our current products. Some of these are still in
Access 97 and are running well. Since we cannot include the report
wizard in a runtime environment, we are looking at ad hoc report
writers like Crystal.
Can we include Crystal with our runtimes and/or is there another
report writer that we should be looking at? Any and all help is
greatly appreciated.
TC 12 2449
"Tony Ciconte" <to******@comcast.net> wrote in message
news:rg********************************@4ax.com... We are evaluating the prospect of integrating and/or using Crystal Reports with some of our current products. Some of these are still in Access 97 and are running well. Since we cannot include the report wizard in a runtime environment, we are looking at ad hoc report writers like Crystal.
Can we include Crystal with our runtimes and/or is there another report writer that we should be looking at? Any and all help is greatly appreciated.
Especially as you are still deciding on a Report Writer, this seems an
excellent question to ask the manufacturer of Crystal Reports. It may depend
on how you have your runtimes set up, security, etc., but the Crystal
Reports folks would be the ones who should have the information.
Larry Linson
Microsoft Access MVP
honestly; access has the best reporting anywhere; i dont know why in
the hell you would want to do that.
don't you wish you could subreport like me?
don't you?
don't you?
-Aaron
<aa*********@gmail.com> wrote honestly; access has the best reporting anywhere; i dont know why in the hell you would want to do that.
I agree with you that Access has the best reporting I have found in any
software product. But, that was not the question that the O.P. asked.
don't you wish you could subreport like me? don't you? don't you?
I don't know because I haven't seen any of your Subreports, but because the
only reporting mechanism I use is Access Reports, I do use Subreports when
appropriate.
Larry Linson
Microsoft Access MVP
crystal can only subreport one level deep
or something ridiculous like that
i ran into it a ton; when i was converting mdb-> crystal reports; about
100 reports in a month about 4 years ago
-aaron
Larry Linson wrote: <aa*********@gmail.com> wrote
> honestly; access has the best reporting > anywhere; i dont know why in > the hell you would want to do that.
I agree with you that Access has the best reporting I have found in any software product. But, that was not the question that the O.P. asked.
> don't you wish you could subreport like me? > don't you? > don't you?
I don't know because I haven't seen any of your Subreports, but because the only reporting mechanism I use is Access Reports, I do use Subreports when appropriate.
Larry Linson Microsoft Access MVP
How do you allow users to create reports (create = design new) when
deploying MDE's? IIRC, that was the OP's original problem, and I'd love to
get around it myself...
SusanV
<aa*********@gmail.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com... crystal can only subreport one level deep
or something ridiculous like that
i ran into it a ton; when i was converting mdb-> crystal reports; about 100 reports in a month about 4 years ago
-aaron
Larry Linson wrote: <aa*********@gmail.com> wrote
> honestly; access has the best reporting > anywhere; i dont know why in > the hell you would want to do that.
I agree with you that Access has the best reporting I have found in any software product. But, that was not the question that the O.P. asked.
> don't you wish you could subreport like me? > don't you? > don't you?
I don't know because I haven't seen any of your Subreports, but because the only reporting mechanism I use is Access Reports, I do use Subreports when appropriate.
Larry Linson Microsoft Access MVP
Simple answer: You don't create reports in an MDE. Not the developer, not
the user, not anybody.
That's a good thing, bacause you should never, ever let users create objects
in any live application object or have direct access to data stores.
I saw a post, perhaps in another chain, that offered the correct answer:
With the MDE, distribute an MDB and let users create reports in that MDB.
You must use an MDB if you want to create a form, a report, or any kind of
module.
There are ways to look into the MDB from the main app and run reports from
there. You'll have an issue of deciding whether you can replace the mdb at
will (almost certainly not) and what to do if you must replace it (e.g.,
import existing reports). If properly planned you can probably avoid having
to have much to do with the external MDB.
The moment you go this route, you have a problem of controling how users get
to data.
Worst idea: Just link to all the underlying tables you need and let users
work from that. Very hard to control anything about data access in this
arrangement.
Slightly better: Don't link to anything from the MDB. Create queries that
present the kind of data from which users can easily make reports, and fully
qualify the tables in the FROM clause with the path/mdbname/tablename. You
can't hide them, and unless you're using Access security you can't keep
users from opening them up to look at the SQL.
Much better: You may not be up for this level of additional effort, but the
best way to allow users to create reports generally, regardless of the tool
really, is to create a data warehouse. Basically you would use queries such
as described above (user-oriented data presentation) without having to
expose them to the users.
You get the users to work with you to define what sort of data presentations
they need to see in order to make reports. You create those queries. You
export the data they retrieve on some periodic basis (daily is a good start)
to a data warehouse. That external MDB is the data warehouse.
You make this contract with your users: I (developer) control the tables
that exist over there. The will be replaced regularly with fresh data. You
(users) can create queries, reports, forms, anything you like. Remember
that the data you're looking at is a data warehouse. Do not perform data
entry there. Use the app for data entry. Use the warehouse for ad hoc
reporting. What you'll find is that with time you will discover reports
that you can and should incorporate into the application.
They get to create reports and anything else they like. You retain control
of data access. You leven get some very knowledgeable users creating
reports that will improve the utility of the application. Win, win, win.
Wow, excellent response! That's what I thought - no way around it for MDE,
and they are NOT getting an MDB - too many problems in the past with things
being altered or deleted. Your other suggestions sound interesting, but are
far too labor intensive for the minimal advantages returned, at least in
this case. Being as I'm in-house, when users need new reports I do the
design for them, then redistribute the MDE frontend, and that's working for
us.
Thanks, Rick, for taking the time to lay that all out so clearly
SusanV
"Rick Wannall" <wa*****@notadomain.de> wrote in message
news:Qe*******************@newssvr14.news.prodigy. com... Simple answer: You don't create reports in an MDE. Not the developer, not the user, not anybody.
That's a good thing, bacause you should never, ever let users create objects in any live application object or have direct access to data stores.
I saw a post, perhaps in another chain, that offered the correct answer: With the MDE, distribute an MDB and let users create reports in that MDB. You must use an MDB if you want to create a form, a report, or any kind of module.
There are ways to look into the MDB from the main app and run reports from there. You'll have an issue of deciding whether you can replace the mdb at will (almost certainly not) and what to do if you must replace it (e.g., import existing reports). If properly planned you can probably avoid having to have much to do with the external MDB.
The moment you go this route, you have a problem of controling how users get to data.
Worst idea: Just link to all the underlying tables you need and let users work from that. Very hard to control anything about data access in this arrangement.
Slightly better: Don't link to anything from the MDB. Create queries that present the kind of data from which users can easily make reports, and fully qualify the tables in the FROM clause with the path/mdbname/tablename. You can't hide them, and unless you're using Access security you can't keep users from opening them up to look at the SQL.
Much better: You may not be up for this level of additional effort, but the best way to allow users to create reports generally, regardless of the tool really, is to create a data warehouse. Basically you would use queries such as described above (user-oriented data presentation) without having to expose them to the users.
You get the users to work with you to define what sort of data presentations they need to see in order to make reports. You create those queries. You export the data they retrieve on some periodic basis (daily is a good start) to a data warehouse. That external MDB is the data warehouse.
You make this contract with your users: I (developer) control the tables that exist over there. The will be replaced regularly with fresh data. You (users) can create queries, reports, forms, anything you like. Remember that the data you're looking at is a data warehouse. Do not perform data entry there. Use the app for data entry. Use the warehouse for ad hoc reporting. What you'll find is that with time you will discover reports that you can and should incorporate into the application.
They get to create reports and anything else they like. You retain control of data access. You leven get some very knowledgeable users creating reports that will improve the utility of the application. Win, win, win.
Aaron,
As i mentioned in my original email, I am distributing a runtime. You
cannot include the report wizards with runtimes and that is why I
cannot use the Access report writer.
JM
"aa*********@gmail.com" <aa*********@gmail.com> wrote: honestly; access has the best reporting anywhere; i dont know why in the hell you would want to do that.
don't you wish you could subreport like me? don't you? don't you?
-Aaron
Rick
you're a paranoid fucking retard and you should learn how to use access
before talking shit.
wait a second.
I agree with what you're saying for data warehouses.
What you say here though: That's a good thing, bacause you should never, ever let users create objects in any live application object or have direct access to data stores.
I spit on you and your mothers grave; because you are just flat-out
wrong.
-Aaron
Rick Wannall wrote: Simple answer: You don't create reports in an MDE. Not the developer, not the user, not anybody.
That's a good thing, bacause you should never, ever let users create objects in any live application object or have direct access to data stores.
I saw a post, perhaps in another chain, that offered the correct answer: With the MDE, distribute an MDB and let users create reports in that MDB. You must use an MDB if you want to create a form, a report, or any kind of module.
There are ways to look into the MDB from the main app and run reports from there. You'll have an issue of deciding whether you can replace the mdb at will (almost certainly not) and what to do if you must replace it (e.g., import existing reports). If properly planned you can probably avoid having to have much to do with the external MDB.
The moment you go this route, you have a problem of controling how users get to data.
Worst idea: Just link to all the underlying tables you need and let users work from that. Very hard to control anything about data access in this arrangement.
Slightly better: Don't link to anything from the MDB. Create queries that present the kind of data from which users can easily make reports, and fully qualify the tables in the FROM clause with the path/mdbname/tablename. You can't hide them, and unless you're using Access security you can't keep users from opening them up to look at the SQL.
Much better: You may not be up for this level of additional effort, but the best way to allow users to create reports generally, regardless of the tool really, is to create a data warehouse. Basically you would use queries such as described above (user-oriented data presentation) without having to expose them to the users.
You get the users to work with you to define what sort of data presentations they need to see in order to make reports. You create those queries. You export the data they retrieve on some periodic basis (daily is a good start) to a data warehouse. That external MDB is the data warehouse.
You make this contract with your users: I (developer) control the tables that exist over there. The will be replaced regularly with fresh data. You (users) can create queries, reports, forms, anything you like. Remember that the data you're looking at is a data warehouse. Do not perform data entry there. Use the app for data entry. Use the warehouse for ad hoc reporting. What you'll find is that with time you will discover reports that you can and should incorporate into the application.
They get to create reports and anything else they like. You retain control of data access. You leven get some very knowledgeable users creating reports that will improve the utility of the application. Win, win, win.
<aa*********@gmail.com> wrote you're a paranoid f***ing retard and you should learn how to use access before talking s**t.
wait a second.
I agree with what you're saying for data warehouses.
And, if it made Rick what you describe, what does that make you?
What you say here though: That's a good thing, bacause you should never, ever let users create objects in any live appli- cation object or have direct access to data stores.
I spit on you and your mothers grave; because you are just flat-out wrong.
The drive-by poster strikes again, assuring that whatever he's aiming for,
he'll be _spitting into the wind_ with whatever he may have to offer here.
Larry Linson
Microsoft Access MVP aa*********@gmail.com wrote: I spit on you and your mothers grave; because
Ummm, I must be missing something. What did this guy do to provoke such
a reaction?
Do you swat flies with an artillery barrage instead of a flyswatter?
Good heavens...
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Stephan |
last post by:
Hi,
I'm using Visual Studio 2003 (C#) with the integrated
Crystal Report software and have the following question:
How can I assign a value (string) to an unbound (string)
field in Crystal...
|
by: Rick Thiel |
last post by:
Hello,
I am trying to build a Crystal report VisualStudio.NET for an ASP.NET
application. I would like to build a report that doesn't connect to
any particular database at design time because I...
|
by: BStorm |
last post by:
I have a transaction log file where the DataSet table's Description column
is actually delimited into "subcolumns" based upon the transaction id. I
would like to parse these into separate fields...
|
by: fatboy |
last post by:
I'm trying to change the database and server on a report that was created
using integrated security e.g. report was created pointing to the server
'testserver' and database 'testdb' and at runtime...
|
by: Atif |
last post by:
Hi All
My problem is not related with this group BUT i have got a clue from
here that's why i am posting this question over here.
I am using Crystal Reports 9 with MySQL and SQL Server....
|
by: Bernie Yaeger |
last post by:
I can't believe that there aren't lots of developers who:
1. create a crystal report that connects to sql server
2. calls the report using the crystalreportviewer control to view it and
then,...
|
by: Henry |
last post by:
I am writing a Windows forms VB.Net/MS SQL application via VS 2003 that
utilizes Crystal Reports. I want to be able to dynamically set the
report data source at run time.
I'm trying to change...
|
by: Jay |
last post by:
I am getting mixed messages from the asp.net website hosting providers - some
say they do not support Crystal Reports due to a $25,000 per cpu licensing
fee, others say all I need to do is install...
|
by: ian_jacobsen |
last post by:
First let me start by saying that this problem is not consistently
reproducible. I have a windows service that creates reports for a
group of entities. This service can process multiple groups at...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |