AIMMS Function Reference - Data Change Monitor Functions



Similar documents
AIMMS The Network License Server

AIMMS Function Reference - Set Functions

AIMMS User s Guide - Advanced Data Management

CAPIX Job Scheduler User Guide

Global Image Management System For epad-vision. User Manual Version 1.10

Virto Create & Clone AD User Web Part for Microsoft SharePoint. Release Installation and User Guide

CHAPTER 6: SEARCHING AN ONLINE DATABASE

AIMMS Function Reference - Arithmetic Functions

Using the Local Document Organizer in ProjectWise

Virto Pivot View for Microsoft SharePoint Release User and Installation Guide

FC Manager Instructions

Frontstream CRM Pro to Pro Upgrade Guide (Note: This guide is ONLY applicable for upgrading from Pro to Pro)

DocuSign for SharePoint

Quick Reference Guide PAYMENT GATEWAY (Virtual Terminal)

Client Ordering and Report Retrieval Website

Scanner Configuration Utility

Outlook Express and Express Archiver to Backup and Retrieve at UW 1

Where Are My Primary Documents?

NAS 253 Introduction to Backup Plan

Contents. Using Web Access Managing Shared Folders Managing Account Settings Index... 39

1. Product Information

CABI Training Materials. CAB Direct MyCABDirect, Alerts and RSS Feeds KNOWLEDGE FOR LIFE.

Online Backup Client User Manual Linux

TIBCO Spotfire Automation Services 6.5. User s Manual

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20

How to configure your Acrobat Signature Appearance

FileMaker 8. Installing FileMaker 8 ODBC and JDBC Client Drivers

HOW TO CREATE THEME IN MAGENTO 2

MY WORLD GIS. Installation Instructions

Using Adobe Acrobat X Professional

RecoveryVault Express Client User Manual

AIMMS 4.0. Portable component Linux Intel version. Release Notes for Build 4.9. Visit our web site for regular updates AIMMS

User Guide Trust Safety Accounting Upload PC Law and SFTP Software Release: Final Date

Table of Contents. Oxygen Web Client Uploading my files Versioning my files Deleting my files... 36

SOFTWARE INSTALLATION INSTRUCTIONS

Virto Active Directory Service for SharePoint. Release Installation and User Guide

Dell PowerVault MD Storage Array Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager Installation Guide

Thermo Fisher Cloud HELP. Catalog Number A Publication Number MAN Revision C.0

Online Backup Linux Client User Manual

Online Backup Client User Manual

OnDemand. Getting Started Guide

Editor Manual for SharePoint Version December 2005

Frequently Asked Questions

ACCOUNT SERVICES HELP

Activity 1: Scanning with Windows Defender

Web Instructions To Get You Started

Hands-On: Introduction to Object-Oriented Programming in LabVIEW

Web UTAS. Common problems and solutions. Common problems with Java settings. Ensuring that you have the correct Java settings in place

iw Document Manager Cabinet Converter User s Guide

Creating Local Storage for Exchange Users

7-1. This chapter explains how to set and use Event Log Overview Event Log Management Creating a New Event Log...

COMBOGARDPRO. 39E Electronic Combination Lock SOFTWARE INSTALLATION INSTRUCTIONS

Lab: Data Backup and Recovery in Windows XP

CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON:

Applying for Archive Service Accreditation: Using the online application system

Keep SQL Service Running On Replica Member While Replicating Data In Realtime

RemoSync Business Features - Android

Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2

Windows 10: A Beginner s Guide

Enhanced Reporting Software Monitor USER MANUAL

Music Data Management Software. Data Manager for Windows. User s Guide

Optional Lab: Data Backup and Recovery in Windows 7

ADP Workforce Now V3.0

SECURED PDF DOWNLOADABLE PRODUCTS BY TANGKOKO

ezvsp User's Manual ( Version 2.1d ) Sollae Systems Co., Ltd.

CDD user guide. PsN Revised

This guide provides step by step instructions for using the IMF elibrary Data - My Data area. In this guide, you ll learn how to:

Distribution List Manager User s Manual

OneSourceFax Customer Guide

Cloudifile: Frequently Asked Questions

How To Create A Multi-Version Bootable Windows 7 USB Drive

Tutorial. Patch Management

shorewest.net Document Management

Automated Marketing QuoteWerks Infusionsoft Plugin

Lab - Data Backup and Recovery in Windows XP

MAC/OSX - How to Encrypt Data using TrueCrypt. v

Sophos for Microsoft SharePoint Help

Lab - Data Backup and Recovery in Windows 7

5.6.2 Optional Lab: Restore Points in Windows Vista

CHARTER BUSINESS CUSTOM HOSTING MIGRATION INSTRUCTIONS

CRM Global Search: Installation & Configuration

Outlook Hosted Exchange Account Configuration

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012

MTA Course: Windows Operating System Fundamentals Topic: Understand backup and recovery methods File name: 10753_WindowsOS_SA_6.

Business Objects InfoView Quick-start Guide

User Manual VU-Mail Thunderbird (IMAP) February 10

AIMMS Tutorial for Professionals - Absentee and Planning Overviews

Web Intelligence User Guide

Optional Lab: Data Backup and Recovery in Windows Vista

Installation Guide. Your FedEx Ship Manager system number. Before you start

e- storage Mail Archive

Sharp Remote Device Manager (SRDM) Server Software Setup Guide

Installing TCP/IP (Network) Printers

Samsung Drive Manager FAQ

Transcription:

AIMMS Function Reference - Data Change Monitor Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13

Data Change Monitor Functions To keep track of which data has been changed during a session, you can define one or more Data Change Monitors. The following functions are for creating and maintaining these monitors: DataChangeMonitorCreate DataChangeMonitorDelete DataChangeMonitorHasChanged DataChangeMonitorReset

Data Change Monitor Functions 219 DataChangeMonitorCreate With the function DataChangeMonitorCreate, you can create a new data change monitor. With a data change monitor, you can determine whether any identifiers in a subset of AllIdentifiers have been changed since the latest call to DataChangeMonitorCreate or DataChangeMonitorReset. To check for any changes, you can use DataChangeMonitorHasChanged. DataChangeMonitorCreate(,! (input a scalar string expression monitoredidentifiers,! (input subset of AllIdentifiers [excludenonsaveables]! (optional 0 or 1 A string identifying a (new data change monitor. monitoredidentifiers The subset of identifiers that you want to monitor for this data change monitor. excludenonsaveables (optional If the data change monitor is used to monitor whether or not a subset of identifiers needs to be saved, it is unnecessary to include identifiers that have the Nosave property. If you set this argument to 1, these identifiers will automatically be excluded from the given subset of identifiers. The default of this argument is 1. This exclusion is applied also on any subset that is passed in later calls to DataChangeMonitorReset. The function returns 1 upon success. If there already exists a data change monitor for the given, the function returns 0. In case of any other error, it returns 1. If the return value is 0 or 1 CurrentErrorMessage will contain a proper error message. Remarks: The newly created monitor is reset automatically, so there is no need to call the function DataChangeMonitorReset immediately after creation. If your project uses the Data management style Disk files and folders, Aimms itself uses a data change monitor to keep track of whether the active data needs to be saved before exiting, or before loading any new data. The of this internal data change monitor is given by the predeclared string parameter DataManagementMonitor.

Data Change Monitor Functions 220 The functions DataChangeMonitorHasChanged, DataChangeMonitorReset, DataChangeMonitorDelete.

Data Change Monitor Functions 221 DataChangeMonitorDelete With the function DataChangeMonitorDelete, you can delete a data change monitor that was created using the function DataChangeMonitorCreate. DataChangeMonitorDelete(! (input a scalar string expression A string identifying an existing data change monitor. The function returns 1 upon success. If there exists no data change monitor for the given, the function returns 0. In case of any other error, it returns 1 and CurrentErrorMessage will contain a proper error message. The functions DataChangeMonitorCreate, DataChangeMonitorReset, DataChangeMonitorHasChanged.

Data Change Monitor Functions 222 DataChangeMonitorHasChanged The function DataChangeMonitorHasChanged returns whether the data of any identifier that is monitored by the specified data change monitor has been changed since a previous call to DataChangeMonitorCreate or DataChangeMonitorReset. DataChangeMonitorHasChanged(! (input a scalar string expression A string identifying an existing data change monitor. The function returns 1 if any of the identifiers monitored by the data change monitor has been changed since a previous call to either DataChange- MonitorCreate or DataChangeMonitorReset. If none of the identifiers has been changed, the function returns 0. In case of any other error, it returns 1 and CurrentErrorMessage will contain a proper error message. If the monitored set contains identifiers that were not present in that set at the previous call to either DataChangeMonitorCreate or DataChangeMonitorReset, these identifiers are assumed to be changed, and the function returns 1 as well. Remarks: Calling DataChangeMonitorHasChanged does not reset the data change monitor. The functions DataChangeMonitorCreate, DataChangeMonitorReset, DataChangeMonitorDelete.

Data Change Monitor Functions 223 DataChangeMonitorReset The function DataChangeMonitorReset assigns a new set of identifiers to an existing data change monitor and resets the monitor to the unchanged status. DataChangeMonitorReset(, monitoredidentifiers! (input a scalar string expression! (input subset of AllIdentifiers A string identifying an existing data change monitor. monitoredidentifiers The subset of identifiers that should be monitored by the data change monitor. The function returns 1 upon success. If there exists no data change monitor for the given, the function returns 0. In case of any other error it returns 1 and CurrentErrorMessage will contain a proper error message. The functions DataChangeMonitorCreate, DataChangeMonitorHasChanged, DataChangeMonitorDelete.