Skip to main content

Installation

The plug-in can be installed manually (using plug-ins and DDL scripts) or by installing the sample application. Installing the sample application is recommended.

Manual

  1. Import and install the APEX Plug-in dynamic_action_plugin_unitedcodes_ig_download_file_pro.sql (accept the default settings when prompted)
  2. Run ddl_uc_ifdp_manual_install.sql in SQL Workshop > SQL Scripts > Upload and Run
  3. Activate the plug-in license

Sample Application

  1. Import the sample application app_unitedcodes_ig_download_file_pro.sql using application builder import functionality
  2. Install the sample application
  3. Activate the plug-in license

License activation

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

Both options are covered in the plug-in documentation.

Option 1: When you have access to the internet:

  set serveroutput on

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

-- when you have access to the internet
-- create a license automatically
begin
uc_pluginspro.auto_license(
p_plugin => 'PLUGIN_NAME',
p_api_key => 'YOUR_API_KEY');
end;
/

Option 2: When there is no internet access

  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 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;
/