Table of Contents

Define Package

When defining a Package, you should consider all the following points.

  1. Version
  2. Package Type
  3. Post Deployment Action
  4. Package data
  5. Package Properties
  6. Work Process integration
    a. Data Flows
    b. Upgrade Scripts
  7. Dependencies

1. Version

If you want to make the Package deployable and upgradable, you need to bump the version before making an official release. To make an official release of the Package, press the “Create Package” button in the toolbar and choose “Release” as Deployment mode.


pic


2. Package Type

You should always specify the Package Type, making it easy for users to find and upgrade packages using the Package Management screen.
Specifying the Package Type does not have any other impact than making it easier for users to find what they're looking for (Products or Libraries) when deploying or upgrading packages.


pic


pic


You can specify the Package Documentation link, making it easy for users to find useful informations.


pic


4. Post Deployment Action

If you need to run a Data Flow after a Package has been deployed to do some initialization or any other type of work, specify the Data Flow you want to run as the Post Deployment Action. The Data Flow will run as the last step of the deployment process.


pic


5. Package Data

By default, only metadata configuration is included when exporting a Package using the Create Package button. This means that when the Package is deployed, it will not contain any information such as sample data, settings, assumptions, etc. To deploy data with the Package, you must add the relevant tables to the Package data list. This makes it much quicker for a customer to get started using your Package.


pic


6. Package Properties

Package Properties are variables that can be used by functionality within the Solution that the Package is deployed. The most common case for Package Properties is when Packages are used in Work Processes. Package Properties defines the settings for Work Process Versions that process owners can manage to configure Work Process Versions. Examples of typical Package Properties are planning period start dates and end dates.

When creating Package Properties, it is essential to use a naming scheme that makes the property unique. For example, if you want a property named “StartDate”, and your Package is called “Hypotesia”, you should name your property “Hypotesia.StartDate”.

It needs to be unique, because different packages can be deployed to the same Solution, and the scope of a Package Property is the Solution, not the Package. The reason for the scope being the Solution and not the Package is that Package Properties also serve as interfaces between Packages.


pic


7. Work Process Integration


Work Process integration – Data Flows

When a Package is used in Work Processes, such as budgeting and forecasting, you often need to run business logic when the Work Process Version transitions between states (Deployed, Open, Closed, Deleted). Under the Work Process tab, you can specify Data Flows to run after Work Process Versions containing this Package have entered the Deployed, Open, Closed, or Deleted state.


pic


Work Process integration – Upgrade Scripts

Because Work Process Versions are isolated from each other, you can have different versions of the same Package in different Work Process Versions. However, if you upgrade a Package to a new version, and you create a new Work Process Version containing the new version of the Package but want to pull in data from a Work Process Version using an older version of the Package, you may get in trouble because the old version is missing data that the new version of the Package requires.

To fix this issue, you must provide a set of SQL scripts which acts as adapters between old and newer versions of a Package.

To use this feature, do the following:

  1. As a direct child of the Package, create a folder named UPDATE_SCRIPTS
  2. In the UPDATE_SCRIPTS folder, create one or more SQL Scripts to execute.

The following applies for the scripts:

  1. The scripts are executed after a Work Process Version containing the Package has been deployed.
  2. They are executed in the order they listed in the folder.
  3. SQL parameters @FromVersion and @ToVersion are passed to the scripts when executed.
    @FromVersion specifies the version of the Package in the source Work Process Version.
    @ToVersion specifies the version of the current Package.

8. Dependencies

If a Package is dependent upon another Package, you need to add the dependency to the “Package Dependencies” list. By defining dependencies, the system will automatically install or update dependencies when the Package itself is installed or updated to new versions.

Note

You need to register immediate dependencies, meaning you don’t need to register dependencies of dependencies. When exporting the Package, the system will automatically examine all dependencies and their dependencies, recursively.

Videos