Online Reporting Web > Home
T
est
Required struct to include in your project for creating the parameter string.
SAP Crystal Reports
SSRS - Reporting Services
public struct KeyParameterStruct
{
//BEGIN BOILER PLATE CONSTS ======================================
public const string ReportUserName = "UserName";
public const string ReportUserPassword = "UserPwd";
public const string ReportServerName = "ServerName";
public const string ReportServerAuthorizationType = "AuthType";
public const string DBUserName = "DBUserName";
public const string DBUserPassword = "DBUserPwd";
public const string ReportParentFolderID = "ReportFolderID"; //This is depricated, use ReportParentFolderCUID
public const string ReportParentFolderCUID = "ReportFolderCUID";
public const string ReportName = "ReportName";
//END BOILER PLATE CONSTS ========================================
//Include any report specific parameters below.
}
public struct KeyParameterStruct
{
//BEGIN BOILER PLATE CONSTS ======================================
public const string ReportServer = "ReportServer";
public const string ReportPath = "ReportPath";
public const string ReportName = "ReportName";
//Optional. Will call SSRS report server with appropriate https protocol if "Y" or "y"
public const string SSL = "SSL"; OR TLS = "TLS";
//END BOILER PLATE CONSTS ========================================
//Include any report specific parameters below.
}