namespace jQuery.sap.support

Control sample: jQuery.sap.support
Visiblity: public
Available since: N/A
Module: sap/ui/support/jQuery.sap.support
Application Component:

The jQuery.sap.support namespace is the central entry point for the Support Assistant functionality.

Overview

jQuery.sap.support reveals an API for the Support Assistant which you can easily work with to analyze an application.

Usage

For more information, see Support Assistant API.


Nodes Overview

Node Description

Methods Overview

Method Description
jQuery.sap.support.addRule

Adds new temporary rule when in silent mode

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
jQuery.sap.support.analyze

Main method to perform analysis of a given running application.

Allows to choose a particular execution scope - desired part of the UI to be checked and a flexible way to specify the list of rules to be used.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
jQuery.sap.support.getAnalysisHistory

Returns the history of all executed analyses.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
jQuery.sap.support.getFormattedAnalysisHistory

Returns the history of all executed analyses into formatted output depending on the passed format.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
jQuery.sap.support.getLastAnalysisHistory

Returns the result of the last analysis performed.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.

jQuery.sap.support.addRule

Adds new temporary rule when in silent mode

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
Param Type DefaultValue Description
oRule Object

Settings for the new rule. For detailed information about its properties see Rule Property Values

jQuery.sap.support.analyze

Main method to perform analysis of a given running application.

Allows to choose a particular execution scope - desired part of the UI to be checked and a flexible way to specify the list of rules to be used.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
Param Type DefaultValue Description
oExecutionScope object

The execution scope of the analysis (see Execution Scopes).

type string "global"

Possible values are global, subtree or component.

parentId string

ID of the root element that forms a subtree. Use when the scope is not global.

vPresetOrRules object string object[] All rules

This optional parameter allows for selection of subset of rules for the analysis. You can pass:

  • A rule preset object containing the preset ID and the list of rules it contains.
  • A string that refers to the ID of a system preset.
  • An object array with a plain list of rules.

jQuery.sap.support.getAnalysisHistory

Returns the history of all executed analyses.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
Param Type DefaultValue Description

jQuery.sap.support.getFormattedAnalysisHistory

Returns the history of all executed analyses into formatted output depending on the passed format.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
Param Type DefaultValue Description
sFormat sap.ui.support.HistoryFormats sap.ui.support.HistoryFormats.String

The format into which the history object will be converted. Possible values are listed in sap.ui.support.HistoryFormats.

jQuery.sap.support.getLastAnalysisHistory

Returns the result of the last analysis performed.

since: 1.60.0 Please use sap/ui/support/RuleAnalyzer instead.
Param Type DefaultValue Description