Databases Reference
In-Depth Information
C#
public byte[] GetReportDefinition(string Report );
VB.NET
Public Function GetReportDefinition(ByVal Report As String)As Byte()
GetReportHistoryLimit
This method returns an integer that indicates the number of snapshot history reports to maintain. The
required parameters are the name of the report, a Boolean value that will be altered in the method to
reflect whether the report has its own limit or uses the system limit, and an integer that will be returned
with the value of the current system limit.
C#
public int GetReportHistoryLimit(string Report , [out] bool IsSystem , [out] int
SystemLimit );
VB.NET
Public Function GetReportHistoryLimit(ByVal Report As String, , ByRef IsSystem As
Boolean, ByRef SystemLimit As Integer) as Integer
GetReportHistoryOptions
This method returns the report history snapshot options and properties that are generated for a report
by passing in the report name. The method returns a Boolean variable that indicates whether the report
allows the creation of manual snapshots. The property information is retrieved by output parameters,
which indicate whether snapshots have been kept and a schedule definition is associated with the
report.
C#
public bool GetReportHistoryOptions(string Report ,[out] bool
KeepExecutionSnapshots , [out] ScheduleDefinitionOrReference Schedule );
VB.NET
Public Function GetReportHistoryOptions(ByVal Report As String,[out] ByRef
KeepExecutionSnapshots As Boolean, [out] ByRef Schedule As
ScheduleDefinitionOrReference) as Boolean
GetReportLink
The GetReportLink method returns the full path of the report, the report definition of which is used for
the specified linked report. The only parameter is the name of the report referred for the report definition.
C#
public string GetReportLink(string Report );
Search WWH ::




Custom Search