The syntax of a call to a procedure is
procname («expression»)
Parameters
procname | The name assigned to the procedure in its PROCEDURE or LOCALPROCEDURE command. |
expression | Any value expression. |
Comments
The list of expressions must be enclosed in parentheses; even when no expressions are required, the parentheses must still appear.
At the prompt level, you can issue a call to the main procedure of any procedure program.
Within a procedure program, you can issue a call to
- any local procedure in the current program
- the main procedure in the current program
- the main procedure in any other procedure program
Any procedure in a procedure program can issue a call to itself.
In a call to a procedure, you must supply one expression for each parameter specified in the PROCEDURE or LOCALPROCEDURE command that describes the called procedure. The number and type of expressions listed in the call to a particular procedure must match the number and type of parameters in the PROCEDURE command in order for the procedure to execute. The value of expression can be assigned to the corresponding parameter (IN parameters), or expression can take on the value of the corresponding parameter when the procedure ends (OUT parameters), or both (INOUT parameters).
When you specify more than one expression, each must be separated from the next by a comma.
See Also
Conventions
LOCALPROCEDURE
PROCEDURE
TRANSFORM
The available pattern symbols for constructing numeric validation rules are
- digits used to form specific numbers. Numbers indicate value(s) to which the input data must conform.
- +, – used to specify the sign of a number.
- period used as a decimal point.
The available syntax characters for constructing numeric validation rules are
– | Denote a range of numbers. |
| | Separates alternative numbers or ranges of numbers. |
Examples of Numeric Validation Rules
The following table contains examples of numeric validation rules, and the values that can be legal or illegal under those rules:
Validation Rule | Legal Value | Illegal Value |
1|2|3|5 | 1 or 2 or 3 or 5 | 0 or 4 or 6 |
10-20 | From 10 to 20, inclusive. 10.123 is also legal. (Use DataMask to control the number of decimal places permitted in the field.) | 0-9 or 21 |
10-20|100-200 | From 10 to 20, or from 100 to 200, inclusive | 0-9 or 21-99 or 201 |
-30–5|1|1.3-1.7 | From -30 to -5, or 1, or from 1.3 to 1.7 | -4-0 or 1.8 or 2 |
Except in certain limited instances (e.g., security passwords, values held in objects of data type CHAR and VARCHAR), the software is case insensitive.
Insensitivity to case means that the software makes no distinction between uppercase and lowercase letters in any part of a statement.
For example, the following statements are identical, provided LastName is not a CHAR or VARCHAR field:
list all employees where lastname = ‘smith’
LIST ALL EMPLOYEES WHERE LASTNAME = ‘SMITH’
lIsT aLl EmPlOyEeS wHeRe LaStNaMe = ‘SmItH’
list all employees where LastName = ‘Smith’
Normally, in a statement, you can use the combination of uppercase and lowercase letters that makes the statement most readable.
See Also
About Data Types
When certain atomic expressions (variable name, field name, form field name, or formal parameter name) are used before being assigned values, or if the values are unknown, those expressions are considered to be $Null.
$Null is a property indicating a state of valuelessness; $Null is not itself a value. The null string is a value and is therefore not the same as the $Null property.
An arithmetic or functional expression that includes a $Null argument or operand always evaluates to $Null.
A logic expression that includes a $Null operand always evaluates to $False.
Because $Null is not a value, you cannot use the conditional operators = (Equals) and <> (Not Equals) to determine if an expression is $Null. Instead, the operator IS [NOT] [$]NULL is used as shown in the following example:
Salary is $null
Salary is not $null
Note: $Null can be written without the dollar sign.
The available pattern symbols for constructing date validation rules are
- digits used to form numbers that constitute valid dates. The input data must conform to the specified date(s).
The available syntax characters for constructing date validation rules are
– | Denote a range of dates. |
| | Separates alternative dates or ranges of dates. |
Examples of Date Validation Rules
Date values are stored in the format YYYYMMDD. Use DataMask to control how the date is to be input or displayed in the field. So the rule can be expressed as follows:
19990101-19991231
Input values that are accepted as legal include any date during 1999.
The results of value expressions are rounded automatically, but only after the entire expression has been evaluated. (During evaluation, full decimal values are used.)
The final result takes on the number of decimal places found in the operand with the most decimal places.
The rounded result is further rounded if it is being assigned to a named constant, a variable, a field, or a form field defined to contain fewer decimal places.
To force rounding in particular circumstances, use the $round function.
Examples of Rounding
5/2
Result is 3.
5/2.0
Result is 2.5.
1+1.01
Result is 2.01.
1.01+(5/2)
Result is 3.51.
Integer=1.01+(5/2)
Result is 4 if Integer is defined to contain no decimal places.
Within a quoted character string, a backslash immediately followed by two characters that are either digits from 0 to 9 or letters from A(a) to F(f) are treated as a hex code. The text string containing the hex code must be enclosed in quotation marks.
Example of Using Hex Codes
set output printer
output “