Dietmar Aust
Dietmar Aust
Just stumbled over a small issue in the customers sample app (version 21.2) on page 59. When I click on the logo view ... the session gets lost, and I...
During setup, we can use environment variables where appropriate, e.g. ``%USERPROFILE%`` which points to the user's home directory under Windows. It should be resolved to a physical location when prompted...
For exporting database objects, we can define a naming scheme for the export, e.g.: ``` --filename-templates default:#schema#/#object_type_plural#/#object_name#.sql package:#schema#/packages/#object_name#.pks "package body:#schema#/packages/#object_name#.pkb" ``` We need another variable ``#conn_pool_name#`` to use the connection...
When running sql scripts with SQLplus or SQLcl you can define variables in the script and you will be prompted for them, e.g.: ``` define LABEL=&&1 select user "&&LABEL." from...
Christoph made a great suggestions to replace placeholders during ``1.copy`` or ``3.install``. This way we could use a placeholder like ``#project.version#`` in the definition of the APEX application:  and...
As [Fernando ](https://github.com/jfernal) suggested, a report could be deployed directly from the database. Ideally this would be the .jrxml source code version, not the compiled .jasper file. See [this enhancement...
As [Fernando ](https://github.com/jfernal) suggested, he runs his reports on data stored in apex_collections ... and this is not accessible by a different database session. Again, multiple approaches are possible here,...
Well, there is a workaround for this, but many people stumble over this. http://daust.blogspot.com/2012/08/jasperreportsintegration-passing.html All parameters are passed directly as URL parameters and the developer has to make sure, to...
It would be helpful to create a better sample application and also sample reports to showcase the typical use cases and how to implement that in JasperReports and also how...
The proper documentation of the pl/sql api still needs to be done.