Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
The report you requested requires further information.
Hi All,
While We Are accessing crystal Reports Through Web Pages (i.e Aspx Pages)We are Getting the Following Error
"The report you requested requires further information."
Code Snippet:
string server = "NetSuite.com";
string database = "";
string ID = "7hill@7hills.com";
string password = "*******";
TableLogOnInfo logonInfo = new TableLogOnInfo();
int i = 0;
foreach (CrystalDecisions.CrystalReports.Engine.Table table in rd.Database.Tables)
{
logonInfo = table.LogOnInfo;
logonInfo.ConnectionInfo.AllowCustomConnection = true;
logonInfo.ConnectionInfo.ServerName = "NetSuite.com";
logonInfo.ConnectionInfo.DatabaseName = database;
logonInfo.ConnectionInfo.UserID = ID;
logonInfo.ConnectionInfo.Password = password;
table.ApplyLogOnInfo(logonInfo);
rd.Database.Tables[i].Location = table.Name;
rd.DataSourceConnections[server, database].SetConnection(server, database, ID, password);