--application/deployment/definition prompt ...application deployment -- begin declare s varchar2(32767) := null; l_clob clob; begin s := null; wwv_flow_api.create_install ( p_id => 12947628912411058 + wwv_flow_api.g_id_offset, p_flow_id => wwv_flow.g_flow_id, p_include_in_export_yn => 'Y', p_welcome_message => 'This application installer will guide you through the process of creating your database objects and seed data.', p_configuration_message => 'You can configure the following attributes of your application.', p_build_options_message => 'You can choose to include the following build options.', p_validation_message => 'The following validations will be performed to ensure your system is compatible with this application.', p_install_message=> 'Please confirm that you would like to install this application''s supporting objects.', p_install_success_message => 'Your application''s supporting objects have been installed.', p_install_failure_message => 'Installation of database objects and seed data has failed.', p_upgrade_message => 'The application installer has detected that this application''s supporting objects were previously installed. This wizard will guide you through the process of upgrading these supporting objects.', p_upgrade_confirm_message => 'Please confirm that you would like to install this application''s supporting objects.', p_upgrade_success_message => 'Your application''s supporting objects have been installed.', p_upgrade_failure_message => 'Installation of database objects and seed data has failed.', p_deinstall_success_message => 'Deinstallation complete.', p_deinstall_message=> ''); end; end; /