Skip to main content

AOP Sample Applications

Prerequisites

In order to use the latest version of APEX Office Print (AOP) you need Oracle APEX 19.2 or higher. For APEX 5.0.4 till 19.1 we ship an older version of AOP.

note

There are two versions of the APEX Integration AOP Sample App; one for Oracle APEX 19.2 till 23.1 and one for Oracle APEX 23.2. The APEX 23.2 sample application contains some features that are only available in new versions of APEX.

Import via Command Line

To import the AOP Sample Applications via command line, connect to the schema in which you would like to install the application and run the following:

begin
apex_application_install.set_workspace('AOPDEMO'); -- replace AOPDEMO with your workspace
apex_application_install.generate_application_id;
apex_application_install.generate_offset;
apex_application_install.set_schema('AOPDEMO'); -- replace AOPDEMO with your schema
apex_application_install.set_application_alias('AOP_' || apex_application_install.get_application_id);
apex_application_install.set_auto_install_sup_obj(p_auto_install_sup_obj => true );
end;
/

@aop_app_getting_started.sql
@aop_app_apex_features_192.sql or aop_app_apex_features_232.sql (depending your Oracle APEX version)
@aop_app_modal_down_subscr.sql
@aop_app_aop_features.sql
@aop_app_pdf_examples.sql
note

The AOP Sample Application will also install all supporting objects, so after the import you can simply start using the application.

Trying the AOP Sample Application

The APEX application that comes with AOP shows different examples of how APEX Office Print can be used inside an application.
We really recommend going through our sample application and inspecting elements of the pages to quickly learn how to use AOP.