SetConfirmationMessage method: Utils class

Syntax

SetConfirmationMessage(MessageText)

Description

Use the SetConfirmationMessage method to display a typically transient confirmation message below the fluid banner.

Note:

Methods that perform the same functions exist in the Banner class. Typically, the Utils class methods are preferred only when you have instantiated a Utils object and want to avoid instantiating a Banner object.

Parameters

Parameter Description

MessageText

Specifies the message text as a String value.

Returns

None

Example

Local PT_PAGE_UTILS:Utils &oUtils = create PT_PAGE_UTILS:Utils();
/* Some processing… */
&oUtils.SetConfirmationMessage("Your operation was successful.");
/* Additional processing… */