bool PrxMetaReportRecalc(string mon)
mon. Moniker of opened regular report instance.
The PrxMetaReportRecalc operation calculates regular report instance.
The operation calculates all sheets of regular report. To execute the operation, in the mon field specify regular report instance moniker. The moniker can be obtained on executing the OpenPrxMeta operation.
The operation results in the logical True if the calculation was completed successfully.
Below is the example of recalculating regular report. The request contains moniker of opened regular report instance. The response contains whether regular report is recalculated successfully.
{
"PrxMetaReportRecalc" :
{
"mon" : "S1!M!S!P1"
}
}
{
"PrxMetaReportRecalcResult" : "1"
}
public static bool PrxRecalc(string moniker)
{
var somClient = new SomPortTypeClient(); //Proxy object for operation execution
//Operation execution parameters
var tRec = new PrxMetaReportRecalc()
{
mon = moniker
};
//Recalculate report
var result = somClient.PrxMetaReportRecalc(tRec);
return result;
}
See also: