CloseConfirmationMessage method: Utils class
Syntax
CloseConfirmationMessage()
Description
Use the CloseConfirmationMessage method to dismiss the transient confirmation message (to ensure that the message is dismissed even if auto dismiss is disabled through the user's preference settings).
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
None
Returns
None
Example
Local PT_PAGE_UTILS:Utils &oUtils = create PT_PAGE_UTILS:Utils();
/* Some processing… */
&oUtils.CloseConfirmationMessage();
/* Additional processing… */