bool PrxMetaRefreshDataSources(string mon)
mon. Moniker of opened regular report instance.
The PrxMetaRefreshDataSources operation reopens data sources of regular report.
To execute the operation, in the mon field specify moniker of opened regular report instance. The moniker can be obtained on executing the OpenPrxMeta operation.
The operation results in the logical True if sources were reopened successfully.
Below is the example of reopening regular report data sources. The request contains moniker of opened regular report instance. The response contains whether data sources were reopened successfully.
{
"PrxMetaRefreshDataSources" :
{
"mon" : "DDCGFGHHDPJPFOAEIAEOEKEJFPJPKKMEGIELPHHJALIADBGO!M!S!PLFCDELHHDPJPFOAEJODECPNDPFIAMPPEDLADDMBCHPBFKIAH"
}
}
{
"PrxMetaRefreshDataSourcesResult" : "1"
}
public static bool PrxMetaRefreshDataSources(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tRef = new PrxMetaRefreshDataSources()
{
mon = moniker
};
// Reopen data sources
var result = somClient.PrxMetaRefreshDataSources(tRef);
return result;
}
See also: