Link to home
Start Free TrialLog in
Avatar of Gustav Brock
Gustav BrockFlag for Denmark

asked on

Importing remote reports to client frontend

A frontend A2013 application is distributed to clients.
It connects to tables and views at a remote SQL Server. No problem.

However, each client may have one or more reports with a custom layout. These should be imported to the frontend.
This is quite easy if you have a local accdb containing the reports. But would there be another method where you wouldn't need to distribute a local accdb with the reports?

You could download a file, text or accdb, and import the reports from this, but I would prefer a method where a local file is not needed. Any ideas?

/gustav
SOLUTION
Avatar of PatHartman
PatHartman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Gustav Brock

ASKER

Pat, the users will not be able to create the reports themselves. We will create them but need to distribute them later.

However, the frontend may also be updated. If so, it will not contain the custom reports, and when arriving at the client, it has to be a simple task to import the custom reports.

Peter, we wish to have a single frontend to distribute - actually for the clients to download at wish. I thought of copying all custom reports in a "hidden" way to the frontend, but they may count to hundreds, so I left that idea.
Thanks for the link to the Starter utility. I'm lazy so it may come in handy.

By second or third thought I thought of linking directly(!) to a master of an accdb database containing all reports and then import those selected. I know - across a WAN and all that - but clients typically have 20-100 Mb/s lines, and this would be reading only, so it might work out. Any comments on that?
We will have a local license file, so I could write to that for later reference which reports should be imported when an updated frontend arrives.

/gustav
To implement my suggestion, you would create a form that browses to a folder and then imports each report it finds there using the LoadFromText method.  Of course the file names have to be the same as the report names or you'll have to come up with some way of coming up with appropriate names.  The folder can be on a thumb drive or a network drive.  You could probably even use an FTP site to distribute the reports.

I always distribute complete FE's.  For the products that are sold to the public, I have to use my security scheme to determine which objects are licensed and which are not.  If that is your situation, you might do something similar.  Keep a table of all reports with a licensed flag that gets set on the installation of a license key.  Then your menu forms would only display the reports that are licensed.

I also distribute the app as an .accdr which prevents me from importing objects so I don't really have any option but to include everything and use the license key to sort it out.  Managing multiple FE's at my end is way too complicated.
Licensing is not so tough for this application. Access is granted corporate wide (SMBs only) and access to a central database can be controlled.

I like the idea of running an accdr file but if this prevents the import of a report object (by code), we can't use it as it stands. Handling individual frontend is neither an option for us.

/gustav
Usually applications that are sold to the public are not distributed with source code.  If you need to stick with the import option, you have to distribute source code because you can only do the import/export from an .accdb.  This is a case where ULS is sorely missed.  It certainly wasn't the best security and it was very confusing but it sort of worked.
> you can only do the import/export from an .accdb

You are right. I forgot that for a moment.
That excludes an accde except if we choose to handle individual frontends which would be troublesome, though not impossible; clients are only counted by the hundreds.

/gustav
As I mentioned earlier, I found the best solution for me was to include ALL objects in the FE and then use the license to expose what the client bought.  Then I distributed a new FE when I released an update or fix.  The only other solution that might work is to have a separate database that is distributed as an .accdb that contains ONLY reports.  You could then update that database but you'll also run into trouble if your client only has the runtime installed.  Even though the database is an .accdb, I'm pretty sure the code won't work when the runtime engine is running the app so check first before you commit yourself to this path.  The whole idea behind the runtime is to not allow design time access to ANYTHING.
Thanks for the ideas. At least I know there isn't some unknown trick for this situation.

It seems that only a fraction of clients will have custom reports. Thus we may end up using an automated system where clients "order" a frontend for download, then the FE is generated including custom reports if any.

/gustav