APPX Runtime Subroutine API
These APIs can be used by an APPX designer to interact with the APPX Runtime Application (---) to gain access to extra functionality. This page only lists the APIs that were introduced in Release 5.1. For a list of all APIs in the current release, go to the full list.
Overview
Release 5.1.0 of the APPX Utility includes a new standardized designer API which can be used to gain access to extended functionality from within an APPX application. This API provides APPX Designers with a robust set of subroutines which can be called to do a variety of tasks. This API replaces the older subroutines that have been informally used, and all designers are encouraged to begin using the new subroutines.
General Information
All of these new subroutines are defined in the (---) application and begin with a period (.). They all use a standard call interface and use the same framework for returning results and reporting errors. They are grouped by name prefix so that related subroutines are grouped together by function. Data is passed into and returned from these subroutines by use of the PASS statement. Failure information is returned by use of a work field with the same name as the subroutine. This failure code field is tokenized so you can scan to see the failure reasons that can be returned. Note that the work field has a scope of 'Detached', and so will retain it's value from invocation to invocation, as well as across all invocation types.
If the subroutine accepts parameters (i.e., READ, WRITE, APPEND to --- .STREAM OPEN), the parameters are case insensitive.
If the subroutine has required parameters and you do not PASS the correct number of parameters, the subroutine will issue a CANCEL identifying which parameter was missing.
General Subroutines
Application Routines
Changes the current application to the 'Initial Setup' phase.
Changes the current application to the 'Live Operations' phase.
Changes the current application to the 'Recovery Processing' phase.
Switches to the specified database.
Utility Routines
Adds a user to the Appx User file.
Adds a record to the Hook file.
Checks the security code for the specified user.
Changes the Auxiliary password for the specified user.
Changes fields on the Hook File.
Changes fields on the Appx User File.
Clears any unfilled PASS requests.
Compiles the specified Process Type/Name or Application.
Deletes a user from the Appx User File.
Deletes a record from the Hook File.
Retrieves the value of the specified field name.
Sets a value into the specified field name.
For a given Process Type/Name, returns the Em name.
Copies the engine Hook records into a temporary file for modification.
Loads --- STACK with the current process stack.
Not Implemented
This subroutine allows the user to select a record on a scrolling display by just clicking it.
Processes the Data Dictionary for the selected Application or File.
Writes the current record to the Query pointer file.
Activates the hooks in the temporary file.
Pauses for the specified number of seconds.
Pauses for the specified number of seconds with a countdown timer.
Changes to a different user.
Exits or logout a user after a set timeout period.
Sets the keyboard timeout value.
Update process documentation via ILF
Web Processing Routines
Populates Appx Variables from STDIN.
WIDGET Routines
Applies a GUI Theme to the current image.
Converts an alpha/hex color code to decimal.
Converts a decimal color code to alpha/hex.
Deletes selected widgets.
Deletes the mode buttons from the toolbar.
Deletes the scroll buttons from the toolbar.
Deletes the standard pull down menus.
Hides selected widgets.
Hides the mode buttons on the toolbar.
Hides the scroll buttons on the toolbar.
Hides the standard pull down menus.
Finds all Inputs/Menus that do not use .WIDGET APPLY THEME.
Copies the memory file to --- WIDGET.
Copies the current --- WIDGET file to a memory file.
Sets the current Theme Name.
Shows previously hidden widgets.
Shows previously hidden mode buttons on the toolbar.
Shows previously hidden scroll buttons on the toolbar.
Shows the previously hidden standard pull down menus.
Shows properties of the current --- WIDGET file.
Data Manipulation Subroutines
Conversion Routines
Converts a field to hexadecimal characters.
Converts a hex pair of alpha characters to a decimal number.
Converts a decimal number to a hex pair of alpha characters.
Splits a number into its whole and fractional parts.
Converts a text field to HTML encoding
Converts a string from one language to another.
Text Routines
Fills a field with a single character.
Removes characters from a text/alpha field.
Find the position of text in a text/alpha field.
Find and replace text in a text/alpha field.
Determine the length of a text/alpha field.
Inserts characters into a text/alpha field.
Convert lower case to upper case in a text/alpha field.
Parse a string into separate fields.
Convert upper case to lower case in a text/alpha field.
System Information Subroutines
Server Environment Routines
Returns the path to the location of Appx data files.
Returns the value of a command line parameter.
Populates PDF fields with configuration information.
Returns the value of an environment variable.
Return the type of operating system Appx is running on.
Returns the name and type of the parent process.
Returns the pathname of the requested APPX data file.
Returns the directory separator character of the host operating system.
Returns the size of the Appx screen in rows and columns.
Sets the value of an environment variable (not yet implemented).
Displays the APPX license info for the current application.
Client Routines
Returns a flag to indicate if the user is running the Desktop Client.
Returns the version of the Desktop Client.
Downloads a file to the user's PC.
Gets the current content of the system clipboard.
Returns the value of a client constant
Loads a URL, document, runs a command on the user's PC or changes a client setting.
Plays a .wav file on the user's PC.
Puts data on the system clipboard.
Uploads a file from the Client to the server.
File System Utilities Subroutines
File Manipulation Routines
These subroutines provide you with a way to manipulate files on the file system without having to check the O/S type (i.e., using 'cp' vs 'copy', or different kernel calls).
Copies a file from one location to another, creating any required directories.
Creates the specified file.
Creates an archive of the specified files, in either TAR or TGZ format.
Deletes the given file from the filesystem.
Tests for the existence of the given file in the filesystem.
Extracts all the files from a previously created archive.
Creates the given directory and parent directories in the filesystem.
Moves a file or directory from one location to another, creating any required directories
Restructures the specified file.
Splits the filename from the file extension and returns both.
Splits the filename from the path and returns both.
Stream File Routines
The stream routines provide a way to work directly with text files, or to get the standard output of a command (via pipes).
Closes a file stream and frees up the stream resources for that file.
Closes all file streams and frees up the stream resources for those files.
Opens a stream to the given file creating the file and path as needed.
Read data from the given stream.
Write data to the given stream.
--
PeteBrower - 2011-08-12