cognos.Report.sendRequest
method
Sends a requests with the current parameters and values.
Syntax
{void} sendRequest(eAction)
Parameters
- {cognos.Report.Action} eAction
- Specifies one of the
cognos.Report.Action
enumeration values. No other values are allowed.
Returns
{void}
Example
function customButton( eAction )
{
var oCR = cognos.Report.getReport("_THIS_");
oCR.sendRequest( eAction );
}