[This is preliminary documentation and is subject to change.]

returns an integer (Report ID) obtained after inserting a report row in rdlreports table.

Namespace:  OfficeClip.DBLayer.Reports
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public int InsertRdlReport(
	ReportApplication appObject,
	GeneralObject generalObject,
	string rdlcLocation,
	string valString,
	int groupId,
	int userId,
	int secondaryId
)
Visual Basic (Declaration)
Public Function InsertRdlReport ( _
	appObject As ReportApplication, _
	generalObject As GeneralObject, _
	rdlcLocation As String, _
	valString As String, _
	groupId As Integer, _
	userId As Integer, _
	secondaryId As Integer _
) As Integer
Visual C++
public:
int InsertRdlReport(
	ReportApplication^ appObject, 
	GeneralObject^ generalObject, 
	String^ rdlcLocation, 
	String^ valString, 
	int groupId, 
	int userId, 
	int secondaryId
)

Parameters

appObject
Type: OfficeClip.BusinessLayer.Reports..::.ReportApplication
ReportApplication object
generalObject
Type: OfficeClip.BusinessLayer.Reports..::.GeneralObject
GeneralObj object
rdlcLocation
Type: System..::.String
full path of rdlc file
valString
Type: System..::.String
string containing filter values
groupId
Type: System..::.Int32
groupId (unique)
userId
Type: System..::.Int32
userId (unique)
secondaryId
Type: System..::.Int32

Return Value

An integer (Report ID)

See Also