MB – Copy Parameters to Year

Miscellaneous Billing (MB) – Copy Parameters to Year

Overview

Govern OpenForms Miscellaneous Billing module is year based and this functionality will copy the parameter setup configuration from one year to another.
The Copy Parameters to Year functionality is a Batch Process, designed as such to allow more flexibility.
Like any other batch process, it can be setup by profile with role and user security, scheduled, monitored, etc. For more information, see OpenForms Batch Processing for details (Bottom Left on wiki Navigation Bar).
Functionality access:

  • From Govern Administrator (GNA), select Application Configurations, Miscellaneous Billing, Copy to Year
  • From Govern, open the Profile Batch Process tool box window

Batch Process Definition setup:

  • Select Miscellaneous Billing Copy to Year (mb_copytoyear) in the Process drop down table when creating a batch process definition.

See Also

 

Read More...

User Interface Selection Criteria

In order to execute this process, the user selection criteria must include the FROM and the TO year.
From Year

  • Parameters for the year must exist (drop down table)
  • Year cannot be smaller than 1900
  • Year cannot be higher than TO

To Year

  • Year cannot be smaller than the FROM year
  • Year cannot be higher than 9999

Parameters Copied

The following parameters are copied.

Miscellaneous Billing

All Misc. Billing parameters are copied except the account and invoice number structure (number of digits) that is not year based.

  • General Parameters
    • Tax Activation and Rate Information in system registry [SY_REGISTRY_BY_YEAR]
  • Categories
    • Category Definition and Linked Items allowed and defaults [MB_PARM_CATEGORY]
  • Items
    • Invoice detail item Description, A/R Class Code, Default Amount, and Tax Exempt Status [MB_PARM_ITEM]

 

Accounts Receivable

All year base Accounts Receivable parameters used will be copied.

  • A/R Class Code
    • A/R Class Codes with a sub-system of Miscellaneous Billing will be copied [AR_PARM_CLASS]
  • A/R Class G/L Distribution
    • The General Ledger setup for the A/R Class Codes
  • A/R Interest and Penalty Methods
    • A/R Interest and Penalty Methods and Setup used by Miscellaneous Billing A/R Class Codes will be copied
    • See Roadmap – to be validated – Currently Unhandled ERROR to setup

Business Rules

Existing Parameter in the TO year

  • If the A/R OR MB parameter already exists, it will be skipped and will NOT override the existing information.
  • If the A/R OR MB parameter doesn’t exist in the TO year, it will be created

 

Process Execution

  • You can run the process more than once.
  • You can cancel the process during execution
  • Users can add new parameters after the Copy to Year is executed.

 

Process Execution Logs

When the Copy to Year process is executed, a standard batch process log will list information on the process execution and a log file with the same information is created in [ where ].

  • Each FROM year table updated and the number of records added to the TO year
  • Code(s) not copied to the TO year (skipped because it already existed)
  • Standard Log Feature

 

TIP: It is easier to view the information in the log file.

 

 

 

103-mb-bp-005

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

Standard Batch Process – Email Notification

Standard Batch Process – Email Notification

Overview

The Email Message Template editor is designed for creating email messages that can serve as templates for later use within Govern. These are the messages that can be used in Govern modules that have an email functionality. This Email Notification Batch Process is designed to send an email message based upon a user’s queries. This process is configured in the GNA Batch Process Definition editor.
Using a Batch Process, it is possible to configure a SELECT query that will then use an email template. When the batch process is run, each record retrieved from the query will trigger a “Send Email” action. As an example, a query can be written that will retrieve outstanding overdue A/R records. Each record then sends an email message to the associated recipient indicating that they have an account in arrears.

Functionality

The purpose of this batch process is to send an email message based upon the records that are returned by a user designed query. Queries can be written to extract relevant Govern ID’s for tasks such as late payment notifications, impending due dates, and so on. A user with administrator status can design a SELECT query that will retrieve a recordset. The resulting recordset is processed, with each record triggering the sending of an email message. The formatted messages sent will use the email template created in the GNA Email Template Editor.

 

Read More...

Configuration

NOTE: For a listing of the queries used as examples, refer to the List of Queries in the Appendix section below.

The recommended approach for correct implementation is to take the following steps:

1. Design your email template

Determine the format that your email message will take in the GNA Email Template Editor. In the Parameters Expression field, build the expression that will be used to extract the parameters needed for your email message. For example a message that is pertaining to overdue accounts might require some of the following pieces of information.
From and To fields for the email, account holder names and account numbers, dates, and so on.
Refer to the Email Template Editor Wiki page or user guide for details about using the editor.
As indicated earlier, build your query in the parameters expression, it is here that you will determine the required Govern ID’s.
For example…:
{
To = Query(‘naNameInfo’, ‘EMAIL’);
Name = Query(‘naNameInfo’, ‘FULLNAME’);
AccountNumber = Query(‘stAccountNo’, ‘ACCOUNT_NO’);
Category = Query(‘stCategoryCode’, ‘SHORT_DESC_EN’);
PeriodeCode = Query(‘stPeriodCode’, ‘SHORT_DESC_EN’);
PeriodeNumber = Query(‘stPeriodNumber’, ‘SHORT_DESC_EN’);
DueDate = Query(‘stDueDate’, ‘DUE_DATE’);
}
In the above expression, we need the NA_ID’s for name information, ST_ID’s for ST account information and due dates, and so on.

NOTE: Each required query must be created. Refer to the Appendix section below for a listing of queries.

The SELECT query is now written to retrieve the Govern ID’s that are needed in the email template.

NOTE: A message will also need to be created under the Message sub tab in order to be able to save your Email Template; see the Sample Email Message below for an example message

2. Design Your Query

The SELECT Query

It is within the SELECT query being used that you set the Govern ID’s.
Looking at the following query…:
SELECT top 100 f.st_acct_id,
f.na_id,
f.st_id
FROM st_filing_master f
INNER JOIN NA_NAMES n ON n.na_id=f.na_id
WHERE f.unfiled <> 0 AND
f.due_date < GETDATE() AND
(n.email IS NOT NULL AND n.EMAIL <> ‘ ‘)
ORDER BY f.st_acct_id, f.st_id;
The above query was designed in the Select Query Editor in GNA. It will list all filings that are late. An email will be sent to the NA_MAILING address. For the purpose of this example, only the top 100 records are selected.

NOTE: No entities or Govern ID’s are used in the above query. When it is run in the Scheduler or Govern, no ID’s will be set except for the user ID’s and the run date.

3 – Define a New Batch Process

Define a new Batch Process in the GNA Batch Process Definition Editor. This batch process will be initiated through Govern.

  1. Create a new Code.
  2. Complete the Short and Long Description fields.
  3. in the Process parameter, select the “Send Email From Template” option
  4. Click the Save icon on the Batch Process Definition tab.
TIP: Ensure that the newly defined Batch Process has been added to the required profile so that it will be accessible under the Govern Batch Processes Explorer tab.

4 – Design or Select an Email Template

As mentioned earlier, email templates are designed in the GNA Email Template Editor. In the email template parameter expressions can be used. Refer to the About Parameters Expression Field section.
For our example, an email message will be sent to all mailing addresses with a late filing. The information that is required will be retrieved by the Govern ID’s. Each record returned by the query will look through each column to see if it corresponds to a Govern ID; if this is the case, the Govern ID will be set. Then when the email is being sent via the template, the Govern ID will be passed to the template to be used directly within the email, or as a Parameter Expression that is passed to another query. This expression can be designed in the Expression selector.
In our example, another query has been designed to extract information such as the naNameInfo, EMAIL, FULLNAME, ACCOUNT_NO, and so on.

Batch Process Parameters

Selection Criteria group parameters

Looking at the batch process in Govern, the parameters are the standard that are required to be completed.
Select Query – This is the list of available SELECT queries.
Email Template – All email templates in the system.

Run the Batch Process

Once the batch process has been run, each email message will be formatted with the extracted information. All parameters have been replaced with the values requested.

Troubleshooting

Any issues that are associated with this Batch Process that fall under the heading of troubleshooting will be listed in this section.

APPENDIX

List of Queries

The following queries were used as examples for demonstration purposes. They can used as a starting point and modified for other purposes.

— Query Expression:

— To be used in the Parameters Expression field of the Email Template
{
To= Query(‘naNameInfo’,‘EMAIL’);
Name = Query(‘naNameInfo’,‘FULLNAME’);
AccountNumber = Query(‘stAccountNo’,‘ACCOUNT_NO’);
Category = Query(‘stCategoryCode’,‘SHORT_DESC_EN’);
PeriodeCode = Query(‘stPeriodCode’,‘SHORT_DESC_EN’);
PeriodeNumber = Query(‘stPeriodNumber’,‘SHORT_DESC_EN’);
DueDate = Query(‘stDueDate’,‘DUE_DATE’);
}

— Sample Email Message

The following is a sample email message that can be modified as required:

Dear @Name,
The following Account #@AccountNumber has registered a late payment for the @PeriodeCode period of @PeriodeNumber in the @Category.
The actual due date was @DueDate.

— naNameInfo

SELECT EMAIL,
CASE
WHEN FORMAT_CODE=‘c’THEN COMPANY
ELSE FIRST_NAME ||‘ ‘|| LAST_NAME
ENDas FULLNAME
FROM NA_NAMES
WHERE NA_ID=@idna_id

— stAccountNo

SELECT ACCOUNT_NO
FROM ST_MASTER
WHERE ST_ACCT_ID=@idst_acct_id

— stCategoryCode

SELECT VT_USER.SHORT_DESC_EN
FROM ST_FILING_MASTER
INNERJOIN VT_USER ON VT_USER.YEAR_ID=ST_FILING_MASTER.YEAR_ID AND
VT_USER.DEPT=ST_FILING_MASTER.DEPT AND
VT_USER.CODE=ST_FILING_MASTER.CATEGORY_CODE
WHEREST_FILING_MASTER.ST_ID=@idst_idAND
VT_USER.TABLE_NAME=‘ST_CATEG’

— stPeriodCode

SELECT (CASEWHEN ST_FILING_MASTER.PERIOD_CODE =‘ST_INACTIVE_PER’THEN‘Inactive’ELSE VT_USER.SHORT_DESC_EN END)AS SHORT_DESC_EN
FROM ST_FILING_MASTER
INNERJOIN VT_USER ON VT_USER.YEAR_ID=ST_FILING_MASTER.YEAR_ID AND
VT_USER.DEPT=ST_FILING_MASTER.DEPT AND
VT_USER.CODE=ST_FILING_MASTER.PERIOD_CODE
WHEREST_FILING_MASTER.ST_ID=@idst_idAND
VT_USER.TABLE_NAME=‘ST_PER’

— stPeriodNumber

SELECT VT_USER.SHORT_DESC_EN
FROM ST_FILING_MASTER
INNERJOIN VT_USER ON VT_USER.YEAR_ID=ST_FILING_MASTER.YEAR_ID AND
VT_USER.DEPT=ST_FILING_MASTER.DEPT AND
VT_USER.CODE=(ST_FILING_MASTER.PERIOD_CODE +‘_’+CAST(ST_FILING_MASTER.PERIOD_NB ASVARCHAR))
WHEREST_FILING_MASTER.ST_ID=@idst_idAND
VT_USER.TABLE_NAME=‘ST_PER_DETAIL’

— stDueDate

SELECT DUE_DATE
FROM ST_FILING_MASTER
WHERE st_id=@idst_id

 

Related Topics

Email Template Editor
OpenForms Batch Processing
Govern New Administration (GNA)

 

 

 

100-bp-EmailNotification

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

MB – Item Parameters

Miscellaneous Billing (MB) – Item Parameters

Setting Up Miscellaneous Billing Items

The Miscellaneous Billing Items are used for predefining items that can be billed under Miscellaneous Billing. You need to select an A/R Class and select the Subject to Sales Tax 1 or Subject to Sales Tax 2 options, if applicable.
To define the Miscellaneous Billing Items:

  1. Launch GNA.
  2. Select Application Configurations > Miscellaneous Billing.> Items.
    The existing Miscellaneous Billing Items are listed in a treeview on the left.
    The Miscellaneous Billing categories under which the selected item is classified is displayed under Used In.
  3. Click New to create a new item.
  4. Expand the description fields.
  5. Enter a code in the Code field.
  6. Enter descriptions in the English and French Short and Long Description fields.
  7. Select the A/R Class Code for the selected item in the A/R Class parameter
    Click the ellipsis button to open the A/R Class Code form.
  8. Select Subject to Sales Tax 1 parameter is the item is subject to the first sales tax.
  9. Select Subject to Sales Tax 2 parameter is the item is subject to the first sales tax.
  10. Click Save.

 

Read More...

 

Administrative Menu

Miscellaneous Billing Items Validation Codes

The Miscellaneous Billing Items codes are contained in the Miscellaneous Billing validation table. This table is populated from the Miscellaneous Billing Categories form.
To access the Miscellaneous Billing Items Validation Table:

  1. Launch GNA.
  2. Select Editors > User Validation Table Editor > Miscellaneous Billing.
  3. Select MB_ITEMS – Misc. Billing Items on the left.
    The entities where the miscellaneous billing category codes are used are displayed under the heading Used In.
  4. Click Codes.
  5. Click New on the Codes form.
  6. Enter a code, a short description and a long description for each miscellaneous billing item.
  7. Click Save.

 

 

For more information on creating validation tables and codes, refer to the GNA documentation.

 

 

103-mb-parm-Item

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

Miscellaneous Billing General Parameters

Miscellaneous Billing General Parameters

Setting Up the Miscellaneous Billing General Parameters

The Miscellaneous Billing General Parameters form is used for adding sales tax functionally to the Miscellaneous Billing module. You need to create at least one sales tax method. You can create two if required by your organization.

The Sales tax method is applied on all items that have the Subject to Sales Tax 1 or Subject to Sales Tax 2 option selected on the Miscellaneous Billing Items form.

See Module Map for a summary

 

Read More...

Notes

Year

The Miscellaneous Billing General Parameters, Items, and Categories are saved by year.

Sales Tax Exemptions

Sales Tax exemptions can be set up by item in GNA or by account in Govern.

To verify the items in GNA:

  1. Launch GNA.
  2. Select Application Configurations > Miscellaneous Billing > Items.

If the Subject to Sales Tax 1 or Subject to Sales Tax 2 options are not selected, the items are exempt from these taxes.

To verify the accounts in Govern.

  1. Launch Govern.
  2. Open a Profile that contains Miscellaneous Billing.
  3. Select the Miscellaneous Billing form.
  4. Select the Account entity.

If Exempt #1 is selected, the account is exempt from Sales Tax 1.
If Exempt #2 is selected, the account is exempt from Sales Tax 2.

Accessing the MB General Parameters and Defining the Sales Tax

To access the Miscellaneous Billing General Parameters:

  1. Launch GNA.
  2. Select the Year menu.
  3. Enter the year for the parameters that you want to view in the Current Year field.
  4. Select Application Configurations > Miscellaneous Billing.
    The Miscellaneous Billing General Parameters form opens.
  5. Select Activate Sales Tax to add sales tax functionality to the Miscellaneous Billing module.
  6. If you are applying two sales taxes in your organization, select one of the following tax methods from the drop-down list.
    The two taxes are either added or multiplied.
    Method 1: Amount X (T1 + T2)
    The two sales taxes are added together. Then, the total of the two taxes is applied on the amount charged.
    Method 2: Amount X * T1 * T2
    The first sales tax is applied on the amount charged.
    Then, the second sales tax is applied on this total. Note: If only one Sales Tax is used, it is always applied on the Amount Charged.
  7. Enter the tax rate, as a percentage, for the first tax in the Sales Tax 1 (%) parameter.
  8. Select an A/R Class Code for the first sales tax from the A/R Class drop-down list.
  9. Enter the tax rate, as a percentage, for the second tax in the Sales Tax 2 (%) parameter, if you are setting up two taxes.
  10. Select an A/R Class Code for the second sales tax from the A/R Class drop-down list, if you are setting up two taxes.
  11. Click Save.

Related Topics

For further information, see the following:
Miscellaneous Billing Items

Miscellaneous Billing Account

 

 

 

 

101-pc

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

Property Control (PC) Module

Property Control (PC) Module Overview

Version 6.x

Overview

Govern’s Property Control Profile creates and maintains attribute data that may not be otherwise maintained by the integrated applications in the Govern suite.
It also merges and extracts data from various sources to continuously improve and refine the quality of the available data.

For more information, see Property Control Manual 6.0 and Govern General 6.0 in their pdf version.
In the Property Control database data is stored only once in the system.

See Module Map for a summary

 

Read More...

Documentation

Click below to view or download the Govern Property Control Release 6.0 user guide.
101-pc-PropertyControl-(guide)-v6.0.pdf

Related Documentation

Click below to view or download the Govern Release 6.0 user guide.

101-all-Govern-(guide)-(6.0).pdf

What’s New!

As new features are introduced into the Utility Billing module, they will be
For more information, see the Property Control Module Map or contact Harris Govern Support.

Related Topics

Property Control Module Map

 

 

 

 

101-pc

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

Govern Ribbon Search

Standard Feature – Ribbon Search

Release 6.0.1903.0374 (Govern only) | 6.0.1904.0515 (Govern only)
Release 6.1.1911.0497 (All applications) | 6.1.1912.0513 (All applications)

Overview

The Govern Knowledge Base (KB) Search has been incorporated into the Govern Ribbon as part of the Help online help feature. This KB Search field is visible over all Govern suite applications for release 6.1. In addition, the display of the search field is persistent even if the ribbon is minimized.

NOTE: Users must ensure that they have internet access, a compatible browser, and an active account to access to the Knowledge Base.

Configuration

Govern New Administration (GNA)

In order to display the Ribbon Search field, it is necessary for an Administrator to run the Verify Database process in the Govern New Administration (GNA).

Security Manager (SM)

It will then be necessary to have the Security option in GSM configured to allow the user to see the KB Search in the ribbon.

The security applied is the same for all applications, except for the OpenForms Designer (OFD) which does not offer a securable node.

Presentation

This KB Search is available in the following applications (for the versions 6.1.1911 and 6.1.1912 only):

  • Govern (Ribbon)
  • GNA (Ribbon)
  • GSM (Ribbon)
  • QT (Ribbon)
  • BED (ToolBar)
  • BSC (ToolBar)
  • OFD (ToolBar) – Note that the presentation of the KB Search field is slightly different in the OFD. The text label appears as KB Search in comparison to the other suite applications where the field label reads as Knowledge Base. The behavior is the same in all applications

Using the Knowledge Base (KB) Search

The steps to use the KB Search are as follows:

  1. Enter a keyword in the Search field located at the upper right-hand side of the ribbon.
  2. Press Enter or if you are using version 6.1, click on the magnifier icon.

Your default browser is launched and you will be transferred to the search page of the Govern Knowledge Base website (https://kb.harrisgovern.com/), the results of the keyword(s) you have searched for are displayed in your browser.

NOTE: This Help search field is placed at the top level of the ribbon, and it is visible when any of the top-level tabs are selected, e.g. Home, View, Options, and so on.

Related Topics

Govern Search
Govern Quick Search
Quick Search Index Group Editor
Govern Search Technical Specifications

Saved Datasets
Dynamic Search Objects
Dynamic Search Styles
Dynamic Search Groups

Govern New Administration (GNA)

 

 

101-std-fea-047

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...

Govern DeployEZ

111-(ico)-DEZ-[v6.0].png  Govern DeployEZ

Overview

Govern DeployEZ is used for installing the applications, resource files, custom controls, and Help files required for the Govern OpenForms Product Suite, in other words for installing everything that you need for your deployment.

With Govern DeployEZ, you can:

  • Maintain all the deployments required by your organization from one central location on a Web server.
  • Install all administrative and user applications, in the Govern OpenForms Product Suite from this location.
  • Create customized deployment packages to meet the requirements of all your end-users and system administrators.
  • Maintain multiple versions of the same applications to meet the different needs of your organization, such as testing and production.
  • Roll back to an earlier version easily and seamlessly.
  • Ensure that only one version of a deployment is created at a time with the automatic lock.
  • For the overview document see 111-Install-DeployEZ

 

Read More...

 

Documentation

Documents related to the Govern DeployEZ application include the following:

Govern DeployEZ
This document describes how to install, uninstall, and configure Deploy EZ. It provides the step-by-step procedures for Creating a new deployment and updating an existing one.
See 111-all-deployez -GovernDeployEZ-(man)-[v6.0].

Steps to Follow When the Update is Complete

Perform the following steps when the new deployment is complete, but before making the applications available to the users.

  1. Run a Database Verification.
    This step verifies that the stored procedures are valid, it verifies the database tables and ensures that there are no errors in the database structure. It rebuilds the user and system validation table and verifies the table indexes. Refer to the Govern New Administrator (GNA) documentation for further details.
  2. Launch the Govern Scheduler and restart the Scheduler Service. Ensure that no one is running a scheduled batch process when you perform this step. The Scheduler Service automatically checks for new batch process and updates the existing ones at startup. It automatically updates the Govern Scheduler application. Refer to the Govern Scheduler guide for further details.
  3. Define the Report Configuration parameters in GNA. See the following section.

Downloading Reports

To download the Govern standard reports for your deployment:

  1. Launch DeployEZ.
  2. Create a new deployment or update an existing one.
  3. For this deployment ensure that the Govern Standard Reports option is selected.
  4. When the deployment is complete you can verify the following folders in the Deployments folder:
    Reports: The latest reports are extracted from a zip file and loaded to this folder.
    Binaries > REPORT: This folder contains a sub-folder for each release and version that you have downloaded. The reports that downloaded with each version are found in the sub-folder
  5. Launch GNA.
  6. Select Parameters > General Settings Editor.
  7. Select Report from the Registry Filter drop-down list.
  8. Ensure that the patch is correctly set in the Standard Report Path for Crystal Reports or SRSS accordingly.

Videos (Restricted – Internal Access Only)

This video provides an overview of Govern DeployEZ.Short tutorial for first time users.
The video will open in a separate tab.

  • Getting Started with DeployEZ – For first time users.
  • Installing DeployEZ – Learn how to install the Govern Deploy EZ application.
  • Configuring DeployEZ – Learn how to configure Govern Deploy EZ for your deployments.
  • Creating a Deployment – Learn how to create a Govern OpenForms deployment with DeployEZ
  • Updating Deployments – Learn how to update an existing deployment
  • Uninstalling – Learn how to uninstall, reinstall, or roll back a Govern OpenForms deployment.
NOTE: If you are changing your deployment server or uninstalling your current deployment, ensure that you remove the configuration file. Verify the configuration path in the Govern DeployEZ 6.0 guide.

Installation Notes

System Requirements Release 6.0
Installing DeployEZ
Uninstalling DeployEZ

Troubleshooting

Reinstalling DeployEZ

You may want to reinstall Deploy EZ if you are changing the Deployment Server or the deployment path. In order to do this, you must completely uninstall Deploy EZ.

Uninstalling DeployEZ

Instructions for completely uninstalling Deploy EZ are provided in the following link.
Uninstalling Deploy EZ

NOTE: The paths for uninstalling certain files are different depending on whether you installed Deploy EZ release 6 or release 5.1 or 4.7.I

 

See Also

Download Govern Pre-release Versions

Release Notes

Govern

 

What’s New

Download Govern Pre-release Versions

Pre-release versions of the Govern application can contain features that are in the current branch for early testing in our clients’ production environments. Although still in active development, they are supported. These versions can be downloaded for creating deployments. Click here for details.

Govern Release Notes

Govern Release Notes can now be found through the DeployEZ application. As an administrator, when you are downloading Govern binaries, links to view associated release notes will be displayed. It will be necessary to ensure that you are updated to the latest version of DeployEZ. Click here for details.

Govern DeployEZ has a whole new look and feel compared to version 5.1 and prior. It is now a ClickOnce application. It is maintained on a Web server and installed from a Web link. Whenever you launch the application from your computer, a verification is made, and if a more recent version exists, it is used. This ensures that all users have the latest version and all the latest features of DeployEZ.

DeployEZ is not tied to any one Govern OpenForms release. You can use it to install any version of any application. When creating a deployment directory for Govern DeployEZ, you are required to use the UNC format. If you try to enter a drive name in a mapped drive, an error occurs and you are unable to continue:
[Version 6.0.0.58] Prior to this version a folder called MS Govern was created in the deployment server root directory. This folder is no longer needed and can be deleted.

 

 

111-all-deployez

 

0 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 50 votes, average: 0.00 out of 5 (0 votes, average: 0.00 out of 5)
You need to be a registered member to rate this.
Loading...