KEYWORD-ALL function
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
Returns a character value that indicates whether a string is an ABL keyword. This function returns all keywords and does not distinguish between reserved or unreserved keywords.
Syntax
|
- expression
- A constant, field name, variable name, or expression that results in a
character string. If expression matches an ABL keyword, whether reserved or unreserved
or valid abbreviation of a keyword, the KEYWORD-ALL function returns the full keyword.
If there is no match, the KEYWORD-ALL function returns the Unknown value (
?).In some cases, the abbreviation for a keyword is also a keyword. For example, if expression is "def" (the abbreviation for DEFINE) or "col" (the abbreviation for COLUMN), the KEYWORD function returns the values "def" and "col", respectively.
If you use the Run-time client, the KEYWORD-ALL function always returns the Unknown value (
?).
Example
In this example, the KEYWORD-ALL function tests the value of formname. If the user tries to use a keyword as a form name, the AVM displays a message to try again.
r-keywda.p
|
Notes
- Because KEYWORD-ALL recognizes abbreviations, it does not distinguish between FORM and FORMAT or between ACCUM and ACCUMULATE.
- This function returns the Unknown value (
?) for colors and most data types, as well as all unreserved keywords. See the Keyword Index section for a list of ABL reserved and unreserved keywords. - For SpeedScript, all ABL reserved keywords are also reserved for SpeedScript.