RefreshTree
Syntax
RefreshTree(Record.bound_recname)
Description
Use the RefreshTree function to update a dynamic tree.
Note: Dynamic tree controls have been deprecated. Use the GenerateTree function or Tree Viewer.
RelNodeTranDelete
Syntax
RelNodeTranDelete(RelationshipId , SrcTrxType, SrcNode, SrcRqstMsgName, SrcRqstMsgVer, TgtNode, TgtRqstMsgName, TgtRqstMsgName, TgtRqstMsgVer)
Description
Use the RelNodeTranDelete function to delete a transaction modifier.
Parameters
Field or Control |
Definition |
---|---|
RelationshipId |
Specify the relationship ID as a string. |
ScrTrxType |
Specify the source transaction type as a string. |
SrcNode |
Specify the source node as a ... |
RemoteCall
Syntax
RemoteCall(dispatcher_name [, service_paramlist] [, user_paramlist])
where service_paramlist and user_paramlist are arbitrary-length lists of parameters in the form:
var1, val1 [, var2, val2]. . .
Description
Use the RemoteCall function to call a Tuxedo service from a PeopleSoft application. A typical use of Remote Call is to run data-intensive, performance-sensitive programs near or on ...
RemoveDirectory
Syntax
RemoveDirectory(path [, remove_parameters])
where remove_parameters can be in the form:
path_type [+ directory_type]
Description
Use the RemoveDirectory function to remove the directory specified by path . You can also specify whether to remove just the directory, or to delete the directory and all subdirectories, including any files, that is, to remove ...
RenameDBField
Syntax
RenameDBField(Field.NewFieldName, Field.OldFieldName [, FixRefsOnly])
Description
Use the RenameDBField function to modify a field definition to have a new name. This function also cleans up most references, such as in PeopleCode programs and on records so they now use the new name.
Note: Because using this function changes ...
RenamePage
Syntax
RenamePage(Page.NewPageName, Page.OldPageName)
Description
Use the RenamePage function to modify a page definition to have a new name. This function also cleans up most references so they now use the new name.
Parameters
Field or Control |
Definition |
---|---|
NewPageName |
Specify the new page name to be used. This ... |
RenameRecord
Syntax
RenameRecord(Record.NewRecordName, Record.OldRecordName)
Description
Use the RenameRecord function to modify a record definition to have a name. This function also cleans up most references so they now use the new name.
Note: Because using this function changes records that are used to build application tables, you must ...
Repeat
Syntax
Repeat statement_list Until logical_expression
Description
Use the Repeat loop to cause the statements in statement_list to be repeated until logical_expression is True. Any kind of statements are allowed in the loop, including other loops. A Break statement inside the loop causes execution to continue with whatever follows the end ...
Replace
Syntax
Replace(oldtext, start, num_chars, newtext)
Description
Use the Replace function to replace a specified number of characters in a string.
Parameters
Field or Control |
Definition |
---|---|
oldtext |
A String value, part of which is to be replaced. |
start |
A Number designating the position in oldtext from which to start replacing ... |
Rept
Syntax
Rept(str, reps)
Description
Use the Rept function to replicate a text string a specified number of times and combine the result into a single string.
Parameters
Field or Control |
Definition |
---|---|
str |
A String value to be replicated. |
reps |
A Number value specifying how many times to replicate str ... |