Skip to main content

Installation

Installation Files

  1. dynamic_action_plugin_unitedcodes_progress_bar _pro.sql - the plug-in installation files for Oracle APEX 18.1 or higher
  2. ddl_unitedcodes_progress_bar_pro.sql – needed database objects and package to support plug-in rendering and API

Install Procedure

To successfully install/update the plug-in follow those steps:

  1. Run ddl_unitedcodes_progress_bar_pro.sql in SQL Workshop > SQL Scripts > Upload and Run.

  2. Run one of the following scripts (depending on your access to internet) in SQL Workshop > SQL Commands or Command Line SQL to activate the license:

    1. Option 1: When you have access to the internet

      set serveroutput on

      --
      -- You can find the PLUGIN_NAME and YOUR_API_KEY in the your Plug-ins Pro dashboard
      --

      -- when having access to the internet
      -- create a license automatically
      begin
      uc_pluginspro.auto_license(
      p_plugin => 'PLUGIN_NAME',
      p_api_key => 'YOUR_API_KEY');
      end;
      /
    2. Option 2: When there is no access to the internet

      set serveroutput on

      -- when there's no access to the internet
      -- create a license manually

      -- Step 1: Run the following statement. Then, follow the resulting
      -- instructions before moving on to Step 2.
      begin
      uc_pluginspro.manual_license(
      p_plugin => 'PLUGIN_NAME',
      p_api_key => 'YOUR_API_KEY');
      end;
      /

      -- Step 2: The above statement will return your ACTIVATION KEY, which you will need to
      -- enter in your plug-ins-pro.com portal (Select the plug-in you
      -- are activating, then click the Generate License button) to
      -- retrieve your license key.
      -- When you have your license key, run the statement below.
      begin
      uc_pluginspro.manual_license(
      p_plugin => 'PLUGIN_NAME',
      p_api_key => 'YOUR_API_KEY',
      p_license_key => 'YOUR_LICENSE_KEY');
      end;
      /
  3. Import the APEX plug-in dynamic_action_plugin_unitedcodes_progress_bar_pro.sql into your application.

    After successfully importing dynamic_action_plugin_unitedcodes_progress_bar_pro.sql you will be redirected to  \Shared Components\Component Settings\ UC - Progress Bar Pro [Plug-in].

    Here you can setup the Progress Bar Pro global parameters:

    1. Text location: the display location of the text in relation to the bar position (Top, Inline, Bottom)

      1. Top

      2. Inline

      3. Bottom

    2. Text position: the display location of the text in relation to the bar position  (Left, Center, Right)

      1. Left

      2. Center

      3. Right