AppSettings From Web.config Cannot Be Referenced In Emailed Report Subscription
May 2, 2007
Server Software:
SQL Server 2000 (all sp's up to date)
SSRS 2000 (all sp's up to date)
We have an error when a report subscription is sent via email.
Our report definitions reference a key in the web.config file so that we can have a single location to reference our department's name in all reports. Our department name changes frequently as our company is bought and sold and it is difficult to manually update 700+ reports.
In report designer we have a text field with the following value expression:
=System.Configuration.ConfigurationSettings.appSettings("Department").ToString()
Our web.config looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
....extra settings truncated for brevity...
<appSettings>
<add key="Department" value="Report created by: Corporate Reporting and Analysis" />
</appSettings>
</configuration>
The reports work perfectly in every aspect accept when they are schedules to be emailed. When the email recipient receives the email (not matter what format, mhtl, pdf, etc...) the department string value is replaced with: #Error
Is this a bug with the report schedule and deilvery component? ..or is there a permission problem when accessing: System.Configuration.ConfigurationSettings.appSettings("Department").ToString() ?
Any help would be greatly appreciated.
Thank you
View 3 Replies
ADVERTISEMENT
Aug 14, 2007
I hope someone can help as I have searched for a solution but been unable to find one as yet.
My problem is that after installing SharePoint V3.0 and amending the Report Server to <ServerName>:8080, as I don't yet wish to use integrated mode, everything works fine except email delivered subscriptions. The URL in the email body referencing the report only puts in <ServerName> etc. omitting the port number :8080. I have tried to find where this URL link is built-up from but have had no luck in the report manager, report services configuration and the config files, does anyone know where I need to look and if possible what I need to amend to have the link include :8080 after the servername portion of the URL. I can copy the URL and manually insert the port address and it works but this defeats the object of automated subscriptions.
Sorry if this is a dumb question but it is giving me a headache at the moment.
All answers gratefully received,
Andy
View 3 Replies
View Related
Oct 10, 2007
Hi,
Some of you might remember me posting a question about importing data from a csv. Well I've managed to do that now by writing a vb.net service.
Now all I need to do is have some kind of method of exporting the data as a report via email every night.
The tables are as follows...
CDetails
cNumber
ClName
FE
Disb_1
cNumber
type
dateReq
payee
amount
vat
total
chequeReq
Disb_2 - Disb_20
"Same as Disb_1"
The report structure I need is...
cNumber ClName FE type dateReq payee amount vat total chequeReq
With data from each disb on a new line, i.e. cNumber could be the same for 20 rows! (don't blame me, it's what they want!)
The records should only be shown though when the dateReq is equal to today. I think I can do that with the DateDiff function.
The problem I have is knowing how to set the report up and what to do it in, Reporting services or Business Intelligence. The report only has to be an email, would it even be simpler to write an extra class into my service?
Steve
View 6 Replies
View Related
Feb 20, 2008
Hello,
I want to create a report in SSRS against a cube in SSAS 2005.
I have a Sales fact table, a Products dimension which is related directly to the fact table, and a Categories dimension which is related to the fact through Products (referenced dimension).
Fact --> Products --> Categories
In the Categories dimension i have also implemented a parent-child hierarchy. Only leaf category members are joined to Products.
Is it possible to create a report, drilling down from parent categories to child categories to products?
I 've already implememted the categories parent-child report but when i add the Products dimension in the flattened rowset, the Products seem to be joined to non-leaf category members.
Thanks.
View 4 Replies
View Related
Sep 29, 2015
So I have a report that uses an MDX query to fetch the main data for the tablix. Then I have a custom row added which pulls data in via a Lookup function and references a different dataset. The report has 3 parameters. Each dataset uses those 3 parameters in its underlying query. However, the dataset referenced in the lookup function doesnt seem to be updating when change the parameters and re-run the report.
View 2 Replies
View Related
Nov 5, 2004
Can you tell me how to use Appsettings to connect to the SQL server to retrieve data?
i use:
<appSettings>
<add key="ITR_DW_ConnectionString" value="server=wangjin ; user id=sa ;password=?password?;database=data" />
</appSettings>
But that doesn't work.
how can i get the user id and password?And how should i set the database in SQL server?
thanks a lot !
then i use:
<appSettings>
<add key="ITR_DW_ConnectionString" value="Server=wangjin;Database=data;Trusted_Connection=True;" />
</appSettings>
But during the connection the system reply:
can't log in 'wangjinASPNET'
:( what can i do please help.
View 2 Replies
View Related
Oct 1, 2015
I'm still receiving the emails of some subscriptions of reports that were already deleted, how these subscription could be deleted or turned off.
View 2 Replies
View Related
Dec 28, 2006
I have a function built into a button that I would like to take the values in textboxes and add them to a new record in a ms sql server database. I am having trouble because I am not sure if I am calling the connection string, which is in the web.config file correctly. Here is what I have:
private void Button1_Click(object sender, System.EventArgs e) { lblErrMsg.Text = ""; lblRecsAff.Text = ""; //string strGary; string strGary = ConfigurationSettings.AppSettings["MyConnectionString"].ToString(); SqlConnection conn = new SqlConnection(strGary); //string strSQL = "INSERT INTO tbl_Jobs (JobName,JobDescription,JobLocation,JobRequirements,JobActive) VALUES (@JobName,@JobDescription,@JobLocation,@JobRequirements,@JobActive)"; string strSQL = "INSERT INTO aspnet_Expenses (ExpenseCreated,ExpenseUserId,ExpenseDate,RentalCar,AirTravel,PersonalCar,Hotel,PerDiem,Misc,MealBreakfast,MealLunch,MealDinner,Entertainment,ExpenseDescription,ExpenseCreatorUserId) VALUES (@ExpenseCreated,@ExpenseUserId,@ExpenseDate,@RentalCar,@AirTravel,@PersonalCar,@Hotel,@PerDiem,@Misc,@MealBreakfast,@MealLunch,@MealDinner,@Entertainment,@ExpenseDescription,@ExpenseCreatorUserId)"; SqlCommand cmd = new SqlCommand(strSQL, conn); cmd.Parameters.Add(new SqlParameter("@ExpenseEntryCreatorUserName", SqlDbType.NText, 255)).Value = "genericUserName"; cmd.Parameters.Add(new SqlParameter("@AirTravel", SqlDbType.Decimal, 0)).Value = AirTravel.Text; cmd.Parameters.Add(new SqlParameter("@RentalCar", SqlDbType.Decimal, 0)).Value = RentalCar.Text; cmd.Parameters.Add(new SqlParameter("@PersonalCar", SqlDbType.Decimal, 0)).Value = PersonalCar.Text; cmd.Parameters.Add(new SqlParameter("@Hotel", SqlDbType.Decimal, 0)).Value = Hotel.Text; cmd.Parameters.Add(new SqlParameter("@PerDiem", SqlDbType.Decimal, 0)).Value = PerDiem.Text; cmd.Parameters.Add(new SqlParameter("@Misc", SqlDbType.Decimal, 0)).Value = Misc.Text; cmd.Parameters.Add(new SqlParameter("@MealBreakfast", SqlDbType.Decimal, 0)).Value = MealBreakfast.Text; cmd.Parameters.Add(new SqlParameter("@MealLunch", SqlDbType.Decimal, 0)).Value = MealLunch.Text; cmd.Parameters.Add(new SqlParameter("@MealDinner", SqlDbType.Decimal, 0)).Value = MealDinner.Text; cmd.Parameters.Add(new SqlParameter("@Entertainment", SqlDbType.Decimal, 0)).Value = Entertainment.Text; cmd.Parameters.Add(new SqlParameter("@ExpenseDate", SqlDbType.DateTime, 0)).Value = ExpenseDate.Text; cmd.Parameters.Add(new SqlParameter("@ExpenseDescription", SqlDbType.NText, 1000)).Value = ExpenseDescription.Text; //cmd.Parameters.Add(new SqlParameter("@ExpenseEntryUserName", SqlDbType.NText, 255).Value = ExpenseEntryUserName.Text; //end added by vf //cmd.Parameters.Add(new SqlParameter("@JobName", SqlDbType.WChar, 255)).Value = TextBox1.Text; //cmd.Parameters.Add(new SqlParameter("@JobDescription", SqlDbType.LongVarChar, 1500)).Value = TextBox2.Text; //cmd.Parameters.Add(new SqlParameter("@JobLocation", SqlDbType.WChar, 255)).Value = TextBox3.Text; //cmd.Parameters.Add(new SqlParameter("@JobRequirements", SqlDbType.WChar, 255)).Value = TextBox6.Text; //cmd.Parameters.Add(new SqlParameter("@Actice", SqlDbType.Boolean, 1)).Value = CheckBox1.Checked; DateTime strToday = DateTime.Today; ExpenseDate.Text = Convert.ToString("tstrToday"); int intRowsAff; try { cmd.Connection.Open(); intRowsAff = cmd.ExecuteNonQuery(); cmd.Connection.Close(); } catch (Exception ex) { lblErrMsg.Text = ex.Message; } //lblRecsAff.Text = intRowsAff + " record(s) inserted using " & strSQL; //lblRecsAff.Text = intRowsAff + " record(s) were added to the expense report."; } Any help would be greatly appreciated!
View 9 Replies
View Related
Jan 23, 2008
I have created couple report through report builder which using AS cube as the data source. Every time when I try to access the New Subscription from the web UI. It complains about "Subscriptions cannot be created because the cedentals used to run the report are not stored, or if a linked report, the link is no longer valid.".
So I went into "Properties" -> "Data Source" and use the custom data source. I've selected "Microsoft SQL Server Analysis Services" and put in the following Data Source=SQLTEST;Initial Catalog="Data Warehouse AS". I've select "Crednetials stored securely in the report server", using my Windows login and password.. and I've got the following error.
"
An error has occurred during report processing.
Query execution failed for data set 'dataSet'.
The SemanticQuery element at line 7, column 351 (namespace http://schemas.microsoft.com/sqlserver/2004/10/semanticmodeling) cannot appear under Envelope/Body/Execute/Command. "
Please help!!!
View 5 Replies
View Related
May 9, 2007
Hi,
Is there a way of passing a default parameter value into the subject title on a report subscription?
Currently there are std global variables i.e. @ReportName was executed at @ExecutionTime, but what other variables can be passed here to make it more relevant to the recipient?
Thx
View 1 Replies
View Related
Jul 5, 2007
Hi,
Is it possible to use a Web.Config value to set the path of an image control in the report.
I want an image control in the report and I want to set the path of the image in the web.config and assign it to the image.
How to acheive this..................
View 3 Replies
View Related
Nov 30, 2007
Firstly I should say my Reporting Services were working fine until I changed a setting in IIS today - under the Virtual Directory for the site I clicked Properties>ASP.NET>Edit Configuration. Changed 'Authentication' to Forms and everything went wrong; changing it back to Windows made no difference.
Now when trying to navigate to Report Server / Report Manager I get these errors:
RS : An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help Object reference not set to an instance of an object.
RM: The report server is not responding. Verify that the report server is running and can be accessed from this computer.
Following advice found elsewhere on the web, I checked my web.config file for an an erroneous xmlns entry... but it wasn't there. I have also deleted/recreated my virtual directories from within IIS/RSC. Also I have done a basic reinstall of Reporting Services (from within Add/Remove Programs>Change).
Below are my error logs and the listings for my web.config files; hopefully these will be of use in working out where the problem lies - I really need to get this fixed as soon as possible.
Thanks in advance,
Dan
SQLDmpor####.log
w3wp!library!1!11/30/2007-20:22:40:: i INFO: Exception dumped to: d:AppsSQL2005MSSQL.2Reporting ServicesLogFiles flags= ReferencedMemory, AllThreads, SendToWatson
w3wp!library!1!11/30/2007-20:22:40:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details., ;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.ReportingServices.Library.WebConfigUtil.GetWebConfigAuthenticationAttribute(String attrName)
at Microsoft.ReportingServices.Library.WebConfigUtil.GetAuthenticationType()
at Microsoft.ReportingServices.Library.WebConfigUtil.get_UsingWindowsAuth()
at Microsoft.ReportingServices.WebServer.Global.EnableAntiDos()
at Microsoft.ReportingServices.WebServer.Global.Application_EndRequest(Object sender, EventArgs e)
SQLDUMPER_ERRORLOG.log
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Callback type 7 not used
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, MiniDump completed: d:AppsSQL2005MSSQL.2Reporting ServicesLogFilesSQLDmpr0121.mdmp
11/30/07 20:22:40, ACTION, w3wp.exe, Watson Invoke: Yes
11/30/07 20:22:40, ACTION, w3wp.exe, Watson Invoked: C:PROGRA~1COMMON~1MICROS~1DWDW20.EXE dw20.exe -d "d:AppsSQL2005MSSQL.2Reporting ServicesLogFilesSQLDmpr0121.mft"
11/30/07 20:22:40, ERROR , SQLDUMPER_UNKNOWN_APP.EXE, AdjustTokenPrivileges () failed (00000514)
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Input parameters: 4 supplied
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ProcessID = 4696
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ThreadId = 0
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Flags = 0x0
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, MiniDumpFlags = 0x0
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, SqlInfoPtr = 0x47405860
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, DumpDir = <NULL>
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ExceptionRecordPtr = 0x00000000
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ContextPtr = 0x00000000
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ExtraFile = <NULL>
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, InstanceName = <NULL>
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ServiceName = <NULL>
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Callback type 11 not used
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Callback type 15 not used
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Callback type 7 not used
11/30/07 20:22:40, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, MiniDump completed: d:AppsSQL2005MSSQL.2Reporting ServicesLogFilesSQLDmpr0122.mdmp
11/30/07 20:22:40, ACTION, w3wp.exe, Watson Invoke: Yes
11/30/07 20:22:40, ACTION, w3wp.exe, Watson Invoked: C:PROGRA~1COMMON~1MICROS~1DWDW20.EXE dw20.exe -d "d:AppsSQL2005MSSQL.2Reporting ServicesLogFilesSQLDmpr0122.mft"
web.config (ReportManager)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=##############, processorArchitecture=MSIL"/>
<section name="RStrace" type="Microsoft.ReportingServices.Diagnostics.RSTraceSectionHandler,Microsoft.ReportingServices.Diagnostics"/>
<section name="UIConfig" type="Microsoft.ReportingServices.UI.UIConfigSectionHandler,ReportingServicesWebUserInterface"/>
</configSections>
<system.net>
<defaultProxy enabled="false"/>
</system.net>
<system.web>
<pages validateRequest="false"/>
<compilation defaultLanguage="c#" debug="false"/>
<customErrors mode="Off"/>
<authentication mode="Windows"/>
<identity impersonate="true"/>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>
<sessionState mode="InProc" cookieless="false" timeout="20"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<httpRuntime executionTimeout="9000"/>
<securityPolicy>
<trustLevel name="RosettaMgr" policyFile="rsmgrpolicy.config"/>
</securityPolicy>
<trust level="RosettaMgr" originUrl=""/>
<httpHandlers>
<add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebUserInterface, Version=9.0.242.0, Culture=neutral, PublicKeyToken=##############"/>
</httpHandlers>
</system.web>
<appSettings>
<add key="ReportViewerServerConnection" value="Microsoft.ReportingServices.UI.WebControlConnection, ReportingServicesWebUserInterface, Version=9.0.242.0, Culture=neutral, PublicKeyToken=##############"/>
<add key="ReportViewerTemporaryStorage" value="Microsoft.ReportingServices.UI.ReportViewerTemporaryStorage, ReportingServicesWebUserInterface, Version=9.0.242.0, Culture=neutral, PublicKeyToken=##############"/>
</appSettings>
<RStrace>
<add name="FileName" value="ReportServerWebApp_"/>
<add name="Prefix" value="tid, time"/>
<add name="TraceListeners" value="debugwindow, file"/>
<add name="TraceFileMode" value="unique"/>
<add name="Components" value="all"/>
</RStrace>
<system.diagnostics>
<switches>
<!-- 1 = error, 2 = warning, 3 = info, 4 = verbose -->
<add name="DefaultTraceSwitch" value="3"/>
</switches>
</system.diagnostics>
<runtime>
<assemblyBinding xmlns="urnchemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportingServices.Interfaces" publicKeyToken="##############" culture="neutral"/>
<bindingRedirect oldVersion="8.0.242.0" newVersion="9.0.242.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
web.config (ReportServer)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="RStrace" type="Microsoft.ReportingServices.Diagnostics.RSTraceSectionHandler,Microsoft.ReportingServices.Diagnostics" />
</configSections>
<system.diagnostics>
<switches>
<!-- 1 = error, 2 = warning, 3 = info, 4 = verbose -->
<add name="DefaultTraceSwitch" value="3" />
</switches>
<assert assertuienabled="false" />
</system.diagnostics>
<RStrace>
<add name="FileName" value="ReportServer_" />
<add name="FileSizeLimitMb" value="32" />
<add name="KeepFilesForDays" value="14" />
<add name="Prefix" value="tid, time" />
<add name="TraceListeners" value="debugwindow, file" />
<add name="TraceFileMode" value="unique" />
<add name="Components" value="all,RunningJobs:3,SemanticQueryEngine:2,SemanticModelGenerator:2" />
</RStrace>
<system.web>
<pages validateRequest="false" />
<identity impersonate="true" />
<compilation defaultLanguage="c#">
<assemblies>
<clear />
<add assembly="ReportingServicesWebServer" />
</assemblies>
</compilation>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
<httpHandlers>
<add verb="*" path="Reserved.ReportServer" type="Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler, ReportingServicesWebServer" />
<add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebServer, Version=9.0.242.0, Culture=neutral, PublicKeyToken=##############" />
</httpHandlers>
<httpModules></httpModules>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
<httpRuntime executionTimeout="9000" />
<securityPolicy>
<trustLevel name="RosettaSrv" policyFile="rssrvpolicy.config" />
</securityPolicy>
<trust level="RosettaSrv" originUrl="" />
</system.web>
<runtime>
<legacyImpersonationPolicy enabled="true"/>
<assemblyBinding xmlns="urnchemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportingServices.Interfaces"
publicKeyToken="##############"
culture="neutral" />
<bindingRedirect oldVersion="8.0.242.0"
newVersion="9.0.242.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
View 3 Replies
View Related
Jan 2, 2008
If we decide to make Report Manager the UI facing both internet and intranet users, but prefer that our intranet users not face the performance hit created by SSL, and prefer that SSL be turned on for internet users, what options do we have for configuting our RS environment if all users ultimately use the same reports and we wish to keep number of licenses at a minimum?
View 1 Replies
View Related
Apr 24, 2008
Hi,
I need to subscribe one report in Reporting Services. I was compiled all fields and I said to report server that
I want excel file at one shared directory of the server.
When the report server tried to process the report I have the following messagge:
Failure writing file S16 : An unexpected error occurred in Report Processing.
What's the report want?
thanks.
View 5 Replies
View Related
May 5, 2007
Dear all
I cannot subscription report when I finished setup that the following is the error message
An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The specified @category_id ('101') does not exist.
The SQL agent have already start. I don't know what happen.
View 2 Replies
View Related
Apr 29, 2008
I created a report based on an OLAP cube in the report designer using SSRS 2005. One of the dimension in the cube contains of the name and email address. I want to set up the subscription to this report so that it will send out the report to the subsciber's email address in a pre-set schedule. How do I assign the "Name", "Email" and "Parameter" in the subscription page so that it will loop through each name to send out the report rather than to set up multiple subscriptions if there are 500 names in the dimension. Also the information contains in the report is strictly to that subscriber only i.e. "Name" of the subscriber will be used as a parameter in the subscription to the report. Thanks.
View 1 Replies
View Related
Oct 9, 2007
sql 2005 sp2
exchange 2003 sp2
i've got the report server setup to relay through the exchange server for delivering reports. all reports are exported to excel and emailed successfully with the exception of the largest report at about 16mb. the smtp logs on the exchange server show the report server starting a session but no "DATA" is every sent for this report and emails do not arrive. i am assuming due to the size of the report there is some timeout out issue between the smtp client and server. any ideas on how to resolve this issue? maybe a timeout setting on the exchange smtp server? i'm trying to avoid installing a local smtp server on the report server.
thanks in advance
anthony
View 2 Replies
View Related
Mar 14, 2007
When I setup a report with a subscription and after it runs it says that email address is invalid. We can send it internally by using the subscription but externally. We use a remote email host provider(smtp). Please help I have tried everything.. We are using sql 2005 server with windows pro.
View 8 Replies
View Related
Dec 21, 2006
Is there a way to trigger a Subscription from DTS?
or is there a another way to do the following:
I have a Subscription that creates a pdf file on our server. I want to archive the existing file before I create the new one.
I was thinking of using a DTS package to copy the file then trigger the report.
But, I'm open to other solutions...Thanks in advance!!!
View 1 Replies
View Related
Apr 30, 2008
Hi Guys,
When I try to create a new subscription I get the following erro.
An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help
EXECUTE permission denied on object 'sp_add_category', database 'msdb', schema 'dbo'.
Any ideas?
Cheers
Sonny
subscription create page looks like below
--------------------------------------------------------------------
Subscription: daily sales vs budget_Steel4
Home | My Subscriptions | Site Settings | Help
Search for:
Type or enter one or more search terms in the search box.
Report Delivery Options
Specify options for report delivery.
Delivered by:
Report Server File Share
File Name:
The file name is not allowed to be empty.
The file name is not valid. Avoid using special characters such as /?*:<>|+,[]"& in the file name.
Add a file extension when the file is created
Path:
The path is not valid. The path must conform to Uniform Naming Convention (UNC) format.
The path is not valid. The path must conform to Uniform Naming Convention (UNC) format.
Render Format:
XML file with report data CSV (comma delimited) TIFF file Acrobat (PDF) file Web page for IE 5.0 or later (.htm) Web page for most web browsers (.htm) Web archive Excel
Credentials used to access the file share:
User Name:
The user name is not allowed to be empty.
Password:
The password is not allowed to be empty.
Please reenter Password
Overwrite options:
Overwrite an existing file with a newer version
Do not overwrite the file if a previous version exists
Increment file names as newer versions are added
Subscription Processing Options
Specify options for subscription processing.
Run the subscription:
When the scheduled report run is complete.
At 8:00 PM every Mon, Tue, Wed, Thu, Fri of every week, starting 30/04/2008
On a shared schedule:
Select a shared schedule
Report Parameter Values
Specify the report parameter values to use with this subscription.
SSRS_DS_M
NULL
Use Default
A value is required.
SSRS_DS_D
NULL
Use Default
A value is required.
Select Month
JUL-04 AUG-04 SEP-04 OCT-04 NOV-04 DEC-04 JAN-05 FEB-05 MAR-05 APR-05 MAY-05 JUN-05 JUL-05 AUG-05 SEP-05 OCT-05 NOV-05 DEC-05 JAN-06 FEB-06 MAR-06 APR-06 MAY-06 JUN-06 JUL-06 AUG-06 SEP-06 OCT-06 NOV-06 DEC-06 JAN-07 FEB-07 MAR-07 APR-07 MAY-07 JUN-07 JUL-07 AUG-07 SEP-07 OCT-07 NOV-07 DEC-07 JAN-08 FEB-08 MAR-08 APR-08 MAY-08 JUN-08 JUL-08 AUG-08 SEP-08 OCT-08 NOV-08 DEC-08 2009-07 2009-08 2009-09 2009-10 2009-11 2009-12
A value is required.
----------------------------------------------------------------------------------------------------------
View 5 Replies
View Related
May 5, 2008
I am trying to create a report subscription on my test sql server (2005). I noticed that the "New Subscription" and "New data driven subscription" options are disabled in SSMS. "Delete all subscriptions" is the only enabled option. I do have the sql server agent running. What else must I do to enable these options?
thanks!
View 1 Replies
View Related
Mar 13, 2008
I have a report scheduled for email delivery at a certain time of the day. Is there a way I can execute the subscription ON DEMAND so that when ever I execute it, the report is processed and emailed? Is there a way to run the subscription from a batch file/ssis/tsql etc?
any help appreciated.
thanks
Jacob
View 4 Replies
View Related
Jan 9, 2007
Hello,
Is it possible to create a subscriptions for more than one report ? (I would like to pack in one e-mail three or four reports).
Thanks, Regards
Braulio
View 1 Replies
View Related
Jan 24, 2008
Hi there,
I am trying to setup a subscription for a report that I developed in SSRS (reportbuilder). The report is accessible via the intranet.
I want the server to create the report as an Excel or CSV file on a shared directory called \cdbd$ mpMarcsub
It seems easy: there is a tab "subscriptions" in the report. I configure the schedule, etc... but when the report is supposed to run, I have an error message:
"
Failure writing file <reportname> : The report server has encountered a configuration error. See the report server log files for more information.
"
There's no SSRS administrator in the house. Can someone help me where to find this SSRS log file and eventually point me to a number of possible problems ? Could this simply be a login/pwd problem ? the subscription scheduler interface asks me for a login and pwd. What login and pwd must I provide ? The one of the server itself ? The SQL Server 2005 login/pwd ?
Tough... for me but certainly easy cake for you guys.
Thanks to help me out.
Marc.
View 3 Replies
View Related
Apr 25, 2007
I receive the following error when I try to save a subscription after configuring it. I appreciate any insight that anyone has.
An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help
The EXECUTE permission was denied on the object 'sp_add_category', database 'msdb', schema 'dbo'.
View 9 Replies
View Related
Oct 6, 2005
I have a report that may or may not have data. I have a subscription setup for this report. The subscription has a defined To list. I would like to NOT send the report if there is no data on the report. I did this in SQL 2000 by raising an error from the stored procedure if there was no data. However, that approach does not seem to work with 2005. Is there another way to accomplish this?
View 13 Replies
View Related
Apr 17, 2008
Hello,
i am trying to subscribe to a report that has dependant parameters, for example Country->City and Year-> Month.
Those values are coming from a Analysis Services cube dimensions.
when i come to it in the subscription window, some of the parameters are populated and some are not.
I cannot detect a pattern.
Does anyone know what can be the problem?
thank you.
View 1 Replies
View Related
Mar 1, 2008
I have a new setup of report server. I have deployed three reports that I have also scheduled to run and save as an Excel spreadsheet to a network locations. The reports do not run and I get the error message below. Does anyone have any ideas? Anyone run into this issue before
ReportingServicesService!dbpolling!10!02/29/2008-17:29:07:: i INFO: NotificationPolling finished processing item 33d62282-2a03-483c-bd47-f41ec78c01d5
ReportingServicesService!library!4!02/29/2008-17:29:07:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. See the report server log files for more information., AuthzInitializeContextFromSid: Win32 error: 110;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. See the report server log files for more information.
ReportingServicesService!library!4!02/29/2008-17:29:07:: i INFO: Initializing EnableExecutionLogging to 'True' as specified in Server system properties.
ReportingServicesService!subscription!4!02/29/2008-17:29:07:: i INFO: Microsoft.ReportingServices.Diagnostics.Utilities.RSException: The report server has encountered a configuration error. See the report server log files for more information. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. See the report server log files for more information.
at Microsoft.ReportingServices.Authorization.Native.GetAuthzContextForUser(IntPtr userSid)
at Microsoft.ReportingServices.Authorization.Native.IsAdmin(String userName)
at Microsoft.ReportingServices.Authorization.WindowsAuthorization.IsAdmin(String userName, IntPtr userToken)
at Microsoft.ReportingServices.Authorization.WindowsAuthorization.CheckAccess(String userName, IntPtr userToken, Byte[] secDesc, ReportOperation requiredOperation)
at Microsoft.ReportingServices.Library.Security.CheckAccess(ItemType catItemType, Byte[] secDesc, ReportOperation rptOper, String reportPath)
at Microsoft.ReportingServices.Library.RSService._GetReportParameterDefinitionFromCatalog(CatalogItemContext reportContext, String historyID, Boolean forRendering, Guid& reportID, Int32& executionOption, String& savedParametersXml, ReportSnapshot& compiledDefinition, ReportSnapshot& snapshotData, Guid& linkID, DateTime& historyOrSnapshotDate, Byte[]& secDesc)
at Microsoft.ReportingServices.Library.RSService._GetReportParameters(ClientRequest session, String report, String historyID, Boolean forRendering, NameValueCollection values, DatasourceCredentialsCollection credentials)
at Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext reportContext, ClientRequest session, Warning[]& warnings, ParameterInfoCollection& effectiveParameters)
at Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext reportContext, ClientRequest session, Warning[]& warnings, ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
at Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
--- End of inner exception stack trace ---
View 1 Replies
View Related
Aug 23, 2007
Hi,
I have setup report subcription with stored credential using a valid domain account and "Use as Window Credentials..." checked. Everything tested fine and works properly when the report is viewed in a web application. The problem is this report renders fine in the browser 80% of the time and occasionally it gives me Logon failure error:
An error has occurred during report processing (rsProcessingAborted)
Cannot impersonate user for data source 'Pinnacle'. (rsErrorImpersonatingUser)
Logon failed. (rsLoginFailed)
Logon failed: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)
Since the report is working 80% of the time and the user domain account hasn't changed. I am confused why I am getting bad user account error. Please help!
Thanks.
-SouBee
View 1 Replies
View Related
Aug 23, 2007
I cant imagine this to be possible, but I currently have a report setup and a subscription that email the report to some users, I was curious to know if possible that if the report returns no records to not have the report sent?
View 1 Replies
View Related
Feb 14, 2008
Hello All,
I have created few reports and deployed the reports ot Report Server. When i tried to create new subscription(to schedule the report) for the report, i am getting the below error:
An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help
For more information about this error navigate to the report server on the local server machine, or enable remote errors
Please let me know the solution in this regard.
Thanks,
SR.
View 1 Replies
View Related
Dec 7, 2007
I recently upgraded to SQL 2005 and after the upgrade, my emailed reports didn't show formating. The email method was Web Archive (MHTML). Embedded images do show up, but inside tables, my bold, background colors, text alignment, table borders are being ignored.
I created a brand new report (VS 2005) and while it works great in the GUI and it works fine running the report from the webserver and exporting as Web Archieve, I still have the same issue that when it is emailed via a subscription, it comes back without formating.
Even more confusing is that the formating of a text box will work as long as it is before the table. If it is along side or below the table, than its formating won't work either.
View 1 Replies
View Related
Jun 10, 2015
I'm trying to create a subscription for a report.
I have few parameters (Query based parameter) in my report.
As you can see in the attached print screen, some of the parameter I can set in the subscription and some I can not.
View 3 Replies
View Related