Swapping out Ostendo functions for others
From time to time you may wish to stop users from accessing specific functions within Ostendo and rather swap that function out with another. An example of this might be if we had a user called 'GENERAL' who when they press the Items option, instead of running the Items screen, Ostendo will automatically run an Inquiry.
To acheive this, simply follow these steps below:
1) Create a System Action Style Script to run from the 'Inventory;Items'. Ensure you select 'All Users'
2) Copy the Code beloiw into this script
begin
if (CURRENTUSER = 'GENERAL') then
begin
OstendoInquiry('Multi Inquiry - Item Information');
abort;
end
end.
Now when the GENERAL user select the Items option in Ostendo, it will automatically run the Multi Inquiry - Item Information
Related Articles
What Language is Ostendo written in?
The Ostendo program itself is written in Delphi (latest version). The scripting Engine is Pascal 'based'. Development-X use the base complier that comes with Fast Reports (Report Writer). Development-X have enhanced this to include some of our own ...
Moving Ostendo to a new server
This article explains how to migrate an Ostendo installation from one server to another
Can Ostendo generate 2D Barcodes or QR codes ?
There are in built functions within Ostendo (Available after Ostendo.exe Build 1425) that allow you to generate QR codes. These QR Codes are generated when either the report or script runs, therefore you must have an internet connection available ...
Ostendo Demo Database (Update 211)
New Ostendo Update 211 Demo Database: http://ostendo.info/downloads/ostendo/OSTENDO211-DEMODatabase.zip
Reckon - Ostendo Link Checklist
Below is a checklist of various things you need to check in case there is a connection error between Ostendo Link and Reckon. An example of this is the following error... "XMLDatafile must be specified' If using mapped drives, both the Ostendo link ...