SetRuntime |
Top Previous Next |
Syntax - SetRuntime <Option Name> <New Option Value> Where: <Option Name> is a literal string or a variable that contains a literal string. <New Option Value> is a literal string enclosed in quotes or a variable that contains a literal string enclosed in quotes.
Description: This command is used to configure some of the user interface options that control the runtime configuration of EMUE. Not all of the user interface options can be changed using the SetRuntime command. The <Option Name> is one of the options in the following list of user interface options. The <New Option Value> is a valid value for the user interface option that is being changed.
Note: Please reference the section entitled SetStartup Commands for the syntax and values that can be associated with user interface options.
Sample: This section of a script defines a custom email message and email subject line for a balancing error, and attaches the input and output files to the email. The email will be generated when the script processes the ExitError command. REM This section is used when there is a balancing error to insure that Sue in Patient Accounting is notified. :BalancingError Concatenate ErrorMessage “There was a balancing error in the rebill script. The Report Total was “ PTTotal “ and the Signature total was “ SigTotal (this line is a part of the preceding line) SetRuntime ErrorEmail “SueAnalyst@patientAccounting.org” SetRuntime ErrorEmail_MessageSubject “Rebill Script Balancing Error” SetRuntime ErrorEmail_MessageBody ErrorMessage SetRuntime ErrorEmail_IncludeInputFile “Yes” SetRuntime ErrorEmail_IncludeOutputLog “Yes” ExitError
Listed below are some of the User Interface Options that can be changed using the SetRuntime command: RequireVariableAssignmentBeforeRead SuccessEmail_IncludeActivityLog
|