ResetSkippedErrors

Syntax

bool ResetSkippedErrors(string mon)

Parameters

mon. Moniker for working with report formulas settings.

Description

The ResetSkippedErrors operation resets skipped errors in cells.

Comments

After executing the operation, the indication is returned for the cells containing errors in formulas but skipped by the user. To execute the operation, in the mon field specify regular report instance moniker with the !Options!ErrorChecking postfix.

The operation results in the logical True if skipped errors were reset successfully.

Example

Below is the example of resetting skipped errors in regular report cells. The request contains moniker for working with regular report formulas settings. The response contains whether skipped errors were reset successfully.

SOAP request:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ResetSkippedErrors xmlns="http://www.fsight.ru/PP.SOM.Som">
  <mon xmlns="">LFHLAJJGFJJNFOAEOHLLHDAIEIAGJHHELLMOKBONCJGBCELE!M!S!PNLMGHCKGFJJNFOAEPDODPHGHNCFOELOELJIHLDOGENABJMFK!Options!ErrorChecking</mon>
  </ResetSkippedErrors>
  </s:Body>
  </s:Envelope>

SOAP response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
  <ResetSkippedErrorsResult xmlns="http://www.fsight.ru/PP.SOM.Som" xmlns:q1="http://www.fsight.ru/PP.SOM.Som" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">1</ResetSkippedErrorsResult>
  </soapenv:Body>
  </soapenv:Envelope>

JSON request:

{
"ResetSkippedErrors" :
{
"mon" : "LFHLAJJGFJJNFOAEOHLLHDAIEIAGJHHELLMOKBONCJGBCELE!M!S!PNLMGHCKGFJJNFOAEPDODPHGHNCFOELOELJIHLDOGENABJMFK!Options!ErrorChecking"
}
}

JSON response:

{
"ResetSkippedErrorsResult" : "1"
}
public static bool ResetSkippedErrors(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tReset = new ResetSkippedErrors()
{
mon = moniker + "!Options!ErrorChecking"
};
// Reset skipped errors in cells
var result = somClient.ResetSkippedErrors(tReset);
return result;
}

See also:

Working with Regular Reports