method DeleteMessage(pHeaderId As %String)
as %String
[ ZenMethod ]
Adapted from the old CSP page
method DiscardMessage(pHeaderId As %String)
as %String
[ ZenMethod ]
Adapted from the old CSP page
classmethod GetHyperEventResources(pMethod As %String = "")
as %String
Callback to return a list of resources required for a specific HyperEvent.
The user must have sufficient privileges on one of the resource/permission pairs
to be permitted to execute the hyperevent. An empty string implies the user already
has sufficient privileges for the ZenMethod specified in pMethod.
method OnGetRibbonInfo(Output pDisplay As %Boolean, Output pViewIcons As %List, Output pSortOptions As %List, Output pSearchBox As %Boolean, Output pRibbonTitle As %String, Output pCommands As %List)
as %Status
Get information to display in the ribbon bar.
method ResubmitMessage(pHeaderId As %String)
as %String
[ ZenMethod ]
Adapted from the old CSP page
method doDelete()
[ Language = javascript ]
User selected a new row in the table
method doDiscard()
[ Language = javascript ]
User selected a new row in the table
method doEdit()
[ Language = javascript ]
User selected a new row in the table
method doResubmit()
[ Language = javascript ]
User selected a new row in the table
method onlayoutHandler(load)
[ Language = javascript ]
The layout for this page is different from that for other list pages because of the iframe
method showItem(msgId)
[ Language = javascript ]
show detailTable for a selected task
method showTrace(session)
[ Language = javascript ]
User clicked a link for Trace. Display the Visual Trace page in a popup,
so user can click the arrows to go from session to session without losing his/her place in the Event Log.
query Enumerate(Filter As %String = "", QueryMethod As %String, QueryClass As %String)
Selects
ID, TimeCreated, SessionId, Error, Source
Class query with filter added.
Override this in order to add rowspec specific to the list being displayed
query InitQuery()
SQL Query
:
SELECT TOP 2000 ID,TimeCreated,SessionId,
CASE IsError WHEN 1 THEN 'Yes'
ELSE 'No' END As Error,SourceConfigName As Source
FROM Ens.MessageHeader
WHERE Status = 'Suspended'