bool PrxMetaSheetRecalc(string mon)
mon. Regular report sheet moniker.
The PrxMetaSheetRecalc operation calculates regular report sheet.
To execute the operation, determine moniker in the mon field in the following format: Moniker of regular report instance!Sheets!Sheet key. Moniker of regular report instance 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 sheet. The request contains moniker of regular report sheet. The response contains whether regular report is recalculated successfully.
{
"PrxMetaSheetRecalc" :
{
"mon" : "S1!M!S!P1!Sheets!1"
}
}
{
"PrxMetaSheetRecalcResult" : "1"
}
public static bool PrxSheetRecalc(string moniker)
{
var somClient = new SomPortTypeClient(); //Proxy object for operation execution
//Operation execution parameters
var tRec = new PrxMetaSheetRecalc()
{
mon = moniker
};
//Recalculate sheet
var result = somClient.PrxMetaSheetRecalc(tRec);
return result;
}
See also: