Book Image

Oracle APEX Best Practices

Book Image

Oracle APEX Best Practices

Overview of this book

Have you ever wanted to create real-world database applications? In this book you're not only getting APEX best practices, but will also take into account the total environment of an APEX application and benefit from it."Oracle APEX Best Practices" will guide you through the development of real-world applications. It will give you a broader view of APEX. The various aspects include setting up APEX environment, testing and debugging, security, and getting the best out of SQL and PL/SQL.In six distinct chapters you will learn about different features of Oracle APEX as well as SQL and PL/SQL.Do you maximize the capabilities of Oracle APEX? Do you use all the power that SQL and PL/SQL have to offer? Do you want to learn how to build a secure, fully functional application? Then this is the book you'll need. "Oracle APEX: Best Practices" is where practical development begins!
Table of Contents (14 chapters)
Oracle APEX Best Practices
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Printing architecture


PDF printing in Oracle Application Express requires an externally defined print or report server. An external report server can be the Apache FOP reports server from Apache, the reports server from Business Intelligence Publisher, or server from a third-party such as Jasper reports. Different flavors of an external report server are possible. When the user clicks on a print link in Application Express, the Application Express engine generates the corresponding report data in XML format and a report template in XSL-FO or RTF format.

All of this architectural complexity is transparent to the end users and developers. Here, transparent means that the end user only sees the print link and the end result, and not the architecture behind. So end users just click on the print links, and developers just declaratively set regions to support PDF printing.

Your report server can be Oracle BI Publisher, Oracle Application Server Containers for J2EE (OC4J) with Apache FOP, or another...