Prompt
Syntax
Prompt(title, heading, {fieldlist | &Record})
where fieldlist is an arbitrary-length list of fields in the form:
field1 [, label1 [, tempvar1]] [, field2 [, label2 [, tempvar2]]]...
Note that the label parameter is required before the temporary variable.
Description
Use the Prompt function to display a page prompting the user to insert values into ...
Proper
Syntax
Proper(string)
Description
Use the Proper function to capitalize the first letter in a text string and any other letters in a text string that follow any character other than another letter. It also converts all other letters in a text string to lowercase. Punctuation and other characters that ...
PublishXmlDoc
Syntax
PublishXmlDoc(&XmlDoc, Message.MessageName [, Node.NodeName])
Description
Use the PublishXmlDoc function to send an asynchronous message that is based on an XmlDoc object.
Note: This function has been deprecated and remains for backward compatibility only. Use the IntBroker class Publish method instead.
The XmlDoc object must already be instantiated ...
PutAttachment
Syntax
PutAttachment(URLDestination, DirAndSysFileName, DirAndLocalFileName[, LocalDirEnvVar[, PreserveCase[, AllowLargeChunks]]])
Description
Use the PutAttachment function to upload a file from the file system of the application server to the specified storage location. The file system of the application server includes any directories accessible from the application server including those on local disks ...
Quote
Syntax
Quote(String)
Description
Use the Quote function to enclose a string in single quotation marks. This function also can be used to put quotation marks around SQL statements.
Parameters
Field or Control |
Definition |
---|---|
String |
Specify the string you want to enclose in single quotation marks. |
Returns
The string specified ...
Radians
Syntax
Radians(angle)
Description
Use the Radians function to convert the given angle from degree measurement to radian measurement.
Parameters
Field or Control |
Definition |
---|---|
angle |
The size of an angle in degrees. |
Returns
The size of the given angle in radians.
Rand
Syntax
Rand( )
Description
Use the Rand function
to generate a random number greater than or equal to 0 and less than
1. To generate a random integer that is greater than or equal to
0 but less than
x
, use
Int(Rand()*x)
.
Returns
Returns a random Number value greater ...
RecordChanged
Syntax
The syntax of the RecordChanged function varies, depending on whether you use a scroll path reference or a contextual reference to designate the row being tested.
Using a scroll path reference, the syntax is:
RecordChanged(scrollpath, target_row)
where scrollpath is:
[RECORD.level1_recname, level1_row, [RECORD.level2_recname, level2_row,]] RECORD.target_recname
To ...
RecordDeleted
Syntax
The syntax of the RecordDeleted function varies, depending on whether you use a scroll path reference or a contextual reference to designate the row being tested.
Using a scroll path reference, the syntax is:
RecordDeleted(scrollpath, target_row)
where scrollpath is:
[RECORD.level1_recname, level1_row, [RECORD.level2_recname, level2_row,]] RECORD.target_recname
To ...
RecordNew
Syntax
The syntax of the RecordNew function varies, depending on whether you use a scroll path reference or a contextual reference to designate the row being tested.
Using a scroll path reference, the syntax is:
RecordNew(scrollpath, target_row)
where scrollpath is:
[RECORD.level1_recname, level1_row, [RECORD.level2_recname, level2_row,]] RECORD.target_recname
To ...