LTrim

Mon 01 January 2018

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 ...

read more

MAddAttachment

Mon 01 January 2018

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 ...

read more

MarkPrimaryEmailAddress

Mon 01 January 2018

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 ...

read more

MarkWLItemWorked

Mon 01 January 2018

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 ...

read more

Max

Mon 01 January 2018

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 ...

read more

MCFBroadcast

Mon 01 January 2018

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 ...

read more

MessageBox

Mon 01 January 2018

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 ...

read more

Min

Mon 01 January 2018

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 ...

read more

Minute

Mon 01 January 2018

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.

read more

Mod

Mon 01 January 2018

Syntax

Mod(x, divisor)

Description

The Mod function is the modulus math function, which divides one number ( x ) by another ( divisor ) and returns the remainder.

Returns

Returns a Number equal to the remainder of the division of the number x by divisor .

read more