Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
- List: rtecalls
- rtecall("alalnum") function
- rtecall("counter") function
- rtecall("datemake") function
- rtecall("escstr") function
- rtecall("filecopy") function
- rtecall("fileinit") function
- rtecall("filldate") function
- rtecall("getnumber") function
- rtecall("getprimary") function
- rtecall("getrecord") function
- rtecall("getunique") function
- rtecall("isalnum") function
- rtecall("isalpha") function
- rtecall("islower") function
- rtecall("isnumeric") function
- rtecall("isupper") function
- rtecall("log") function
- rtecall("passchange") function
- rtecall("policycheck") function
- rtecall("qbeform") function
- rtecall("recdupl") function
- rtecall("recordexists") function
- rtecall("refresh") function
- rtecall("resetnotebook") function
- rtecall("rfirst") function
- rtecall("rgoto") function
- rtecall("rid") function
- rtecall("scantable") function
- rtecall ("select") function
- rtecall ("setdebug") function
- rtecall("sort") function
- rtecall("statusupdate") function
- rtecall("transtart") function
- rtecall("transtop") function
- rtecall("trigger") function
rtecall("datemake") function
A RAD function that returns a date, in the proper form, based upon a series of numbers passed to it.
Function
rtecall("datemake")
Format
$L.success.flg=rtecall($L.fnc.name, $L.return.code, $L.date, $L.yr, $L.mo, $L.da, $L.hr, $L.mn, $L.se)
Parameters
The following parameters are valid for the rtecall("datemake") function:
Parameter | Data type | Description |
---|---|---|
$L.success.flg | Logical | Indicates if the function was successful. |
$L.fnc.name | String | The name of the sub-function to call, in this case "datemake". |
$L.return.code | Number | Provides a more detailed return code. |
$L.date | Date/Time | The variable in which the date will be returned. |
$L.yr | Number | The year. A 2-digit year uses the prefix 20 for years up to 50, and 19 for years after. For example, 48 returns 2048 , 99 returns 1999 . |
$L.mo | Number | The month. |
$L.da | Number | The day. Valid values are from one (1) through 31. |
$L.hr | Number | The hour. |
$L.mn | Number | The minutes. |
$L.se | Number | The seconds. |
Factors
The $L.success.flag and $L.return.code always return true
, even when the function is unsuccessful.
Examples
$L.cal.date=‘01/01/05 00:00:00’ $L.success.flg=rtecall("datemake",$L.return.code, $L.cal.date, 0, 5, 31, 17, 15, 22)
Results:
$L.success.flag=true
$L.cal.date=‘05/31/2005 17:15:22’
$L.cal.date=‘01/01/05 00:00:00’ $L.success.flag= rtecall("datemake",$L.return.code, $L.cal.date, 0, 2, 31, 17, 15, 22)
Note that 2/31/05
is an invalid date.
Results:
$L.success.flag=true
$L.cal.date=‘01/01/2005 00:00:00’
The result is invalid; therefore the date variable is unchanged. Regardless of the success or failure,
the $L.success.flag
returns a value of true
.