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
- Import and install the APEX Plug-in item_type_plugin_uc_ig_checkbox_pro.sql(accept the default settings when prompted)
- Run ddl_uc_icp_manual_install.sqlinSQL Workshop > SQL Scripts > Upload and Run
- Activate the plug-in license
Sample Application
- Import the sample application app_unitedcodes_ig_checkbox_pro.sqlusing application builder import functionality
- Install the sample application
- 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;  
  /