LTrim
Syntax
LTrim(string[, trim_string])
Description
Use the LTrim function to return a string formed by deleting from the beginning of string , all occurrences of each character in trim_string . If trim_string is omitted, " " is assumed; that is, leading blanks are trimmed.
If you need to trim a quotation mark, you need ...
MAddAttachment
Syntax
MAddAttachment(URLDestination, DirAndFilePrefix, Prompts, &UserFileArray, &ActualSizeArray, &DetailedReturnCodeArrayName [, MaxSize [, PreserveCase[, UploadPageTitle[, AllowLargeChunks[, StopOnError]]]]])
Description
Use the MAddAttachment function to upload one or more files from an end user specified location (local storage or cloud storage) to a specified storage location. The Prompts parameter specifies that maximum number of files that ...
MarkPrimaryEmailAddress
Syntax
MarkPrimaryEmailAddress(Type)
Description
Use the MarkPrimaryEmailAddress function to specify which email address is the primary email address for the current user. You can only have one primary email address per user.
Parameters
Field or Control |
Definition |
---|---|
Type |
Specify the type that you want to change the email address to ... |
MarkWLItemWorked
Syntax
MarkWLItemWorked()
Description
Use the MarkWLItemWorked function to mark the current Worklist entry as worked using this function. This function works only if youâve invoked a page from the Worklist. This function should be called only in Workflow PeopleCode. You can use the %WLName system variable to check whether ...
Max
Syntax
Max(param_list)
Where param_list has the form
parameter1, parameter2 [, parameter3, . . . parameterN]
Description
Use the Max function to determine the maximum value in the parameter list. The type of every item in the parameter list must be compatible with the first parameter in the list.
For example, if the first ...
MCFBroadcast
Syntax
MCFBroadcast(ClusterID,QueueID, ChannelID, AgentState, AgentPresence, Message, MessageSetNumber, MessageNumber, DefaultMessage, SecurityLevel, ImportanceLevel, SenderId, NameValueString)
Description
Use the MCFBroadcast function to broadcast a notification message. You can specify whether to send the message to agents, to a queue, or even system wide. This function is used with the MultiChannel Framework ...
MessageBox
Syntax
MessageBox(style, title, message_set, message_num, default_msg_txt[, paramlist])
where paramlist is an arbitrary-length list of parameters of undetermined (Any) data type to be substituted in the resulting text string, in the form:
param1 [, param2]. . .
Description
Use the MessageBox function to display a message box window. This function combines dialog-display ability ...
Min
Syntax
Min(param_list)
Where param_list has the form
parameter1, parameter2 [, parameter3, . . . parameterN]
Description
Use the Min function to determine the minimum value in the parameter list. The type of every item in the parameter list must be compatible with the first parameter in the list.
For example, if the first ...
Minute
Syntax
Minute(timevalue)
Description
Use the Minute function to extract the minute component of a Time value.
Returns
Returns the minute part of timevalue as a Number data type.