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

Returns report id after inserting a custom rdlc file's information in rdlreports table. [custom rdlc files are generated out side this environment]

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

Syntax

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

Parameters

rdlcLocation
Type: System..::.String
Name of the rdlc file
generalObject
Type: OfficeClip.BusinessLayer.Reports..::.GeneralObject
GeneralObj object
groupId
Type: System..::.Int32
groupId (unique)
userId
Type: System..::.Int32
userId (unique)

Return Value

An integer (report Id)

See Also