PURPOSE

To provide an way to change FMS Parameters within your application.

SYNOPSIS

CALL FMSIST (NAME, VALUE)
CALL FMSRST (NAME, VALUE)
CALL FMSCST (NAME, VALUE)

INPUT PARAMETERS

OUTPUT PARAMETERS

None

Description

The FMSIST, FMSRST, and FMSCST subroutines set integer, real, and character FMS Parameters respectively. They can be called at any point in the application program after FMSINI. If the specified name is not valid, or the value is out of range, a warning message is written on file LUERR and the statement is ignored.

Examples

To turn off all FMS output, your program would contain the following statement:
        CALL FMSIST  ('PRINT', 0)
To show the current contents of the FMS memory pool, your program would contain the following statement:
        CALL FMSCST  ('SHOW', 'MEMORY')