SQL Server 2008 :: Running (sub-report) In SSRS From Custom Code?

Aug 6, 2015

I have a balance sheet report developed and working. What I need to do is add the ability to click (or double-click) on a number and have a separate report (drill-down) open with the detail that makes up that number. I've researched drill-through reports, sub reports, etc. but can't find a way to do what I want.

I'm now thinking that I need to add custom code in the report properties, code window to do this. I'm hoping that there is a VB method I can use to call this report and pass a parameter. Pseudo-code for this function would look something like this: RunReport("DrillDownReport", "Parameter").

This seems like it should be pretty easy but I don't know what the function is in VB for running an SSRS report (if there is one).

Is this possible or am I barking up the wrong code tree?

View 5 Replies


ADVERTISEMENT

Reporting Services :: Start And End Date Parameters Report In SSRS 2008 Is Not Running On Runtime?

Aug 27, 2015

I made one report in SSRS 2008 in which getting data from one SharePoint List.

three parameters in report :

Country
StartDate
EndDate

I am using query which I created with CAML.

query is running well and data is coming correctly if I run this on Query designer.and date format must be YYYY-MM-DD.but when I try to run through on run time then the date control is showing format dd/mm/yyyy.

I change the regional settings of windows and SharePoint site to English(United States). and when I select date control it is also putting date in format like "YYYY-MM-DD'. and in that format report is working well in Query designer view.But on run time still it is not working.

View 3 Replies View Related

Reporting Services :: Interface Code Compatibility Between Custom Delivery Extension Of SSRS 2008R2 And SSRS 2012?

Sep 3, 2015

Currently we are using Custom Delivery Extension for SSRS 2008R2 We are planning to move it SSRS2012

My Question is: Whether we can use the same Code used for SSRS2008R2 to SSRS2012?

if not what code changes we should do?

View 3 Replies View Related

SQL Server 2008 :: SSRS - How To Detect When A Subscription Is Running Or Not

Oct 3, 2015

i just kicked off a job that starts a data driven subscription that generates ~200 excel spreadsheets.

I kind of expected them to appear in the execution log, and that the TimeEnd would reflect when they complete.

instead, it appears that the TimeEnd is when the SQLcommand finished executing, ie, a few milliseconds after the start.

it does not reflect when the report finishes completing; if i run sp_whoisactive, i see a stack of reports at a time clawing their way through the process. (ie i see calls to [CreateChunkStatement] and all the other steps a report kicks off.

Other than watching execution requests, how can i know if anything is running as far as subscriptions go?

View 0 Replies View Related

Problem In SSRS Custom Code

Apr 21, 2007

HI all, I am having a problem while trying to create a list item through SSRS.The scenario:I have created a SSRS report which has custom code. the report has some parameters. The code accepts the parameters and tries to create a list item in moss. I have added the required references. This works fine as long as I work in VISUAL STUDIO IDE. When I deploy the report to report server it throws an error in the code.Can anybody help me in this...?Regards...

Girija Shankar

View 1 Replies View Related

Reporting Services :: SSRS Custom Code

Apr 24, 2015

Can we call custom code in parent report, which written in the subreport.

View 5 Replies View Related

Using Custom Assembly In Ssrs 2008

Mar 25, 2008

I have a custom assembly that I'm trying to use with my resport in Reporting Services in SQL Server 2008.
I keep consistently getting a "Request for the permission of type 'System.Data.SqlClient.SqlClientPermission, System.Data,Version=2.0.0.0, Culture=neutral,PublicKeyToken=b77a5c561934e089' failed" error. Even in preview mode.

- I added <Assembly: AllowPartiallyTrustedCallers()> attribute to the assembly
- I'm asserting the permission in the routine that is doing the database call with the follwing lines:
Dim permission As SqlClient.SqlClientPermission = New SqlClient.SqlClientPermission(PermissionState.Unrestricted)
permission.Assert()
- I went in .net 2.0 Framework configuration and made the assembly fully trusted
- I added the approprtiate codegroup to the rssrvpolicy.config file
- I tried the same assembly on another PC running SQL server reporting services 2005, its working just fine.

what is it that I am missing?

View 1 Replies View Related

SQL Server 2014 :: How To Return Bitmap Image From Custom Assembly To SSRS Report

Dec 11, 2013

I am using the QRCode4CS class [URL] .... to generate QR codes.

I can use the following code to successfully return a bitmap image to a picturebox in a Windows Form Application.

public class CreateQRCodeClass
{
public static Image CreateQRCodeImage(string inputString)
{
QRCode4CS.QRCode qrcode = new QRCode4CS.QRCode(new QRCode4CS.Options(inputString));
qrcode.Make();
[Code] ....

In trying to adapt the same code (below) to display a QR code in an SSRS report I get the error "There is an error on line 1 of custom code: [BC30311] Value of type 'System.Drawing.Image' cannot be converted to '1-dimensional array of Byte.'

Here is the custom code I am using.

Public Function QRCode(ByVal RetailerId As String) as Byte()
Return QRCode4CSCreateQRCode.CreateQRCodeClass.CreateQRCodeImage(RetailerId)
End Function

Here is the revised custom assembly.

public class CreateQRCodeClass
{
public static byte[] CreateQRCodeImage(string inputString)
{
QRCode4CS.QRCode qrcode = new QRCode4CS.QRCode(new QRCode4CS.Options(inputString));
qrcode.Make();
Image canvas = new Bitmap(86, 86);

[Code] ....

What data type can I successfully return to SSRS to display the image?

View 9 Replies View Related

SQL Server 2008 :: Log Shipping Report Not Running After Restart?

May 13, 2015

When trying to open the log shipping status report, I get an error: user must be in the master database. The jobs appear to be running correctly.

View 0 Replies View Related

SQL Server 2008 :: SSRS Subscription For A Report

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

SQL Server 2008 :: SSRS Report View Permission

Jun 2, 2015

I gave a user all required permission to view the SSRS report. User is able to select from the dropdown list but unable to view the data, It is showing a blank screen.

View 9 Replies View Related

SQL Server 2008 :: Change Ship Date On SSRS Report

Mar 24, 2015

I've a SSRS report that reports the 'ScheduledShipDate' based on 'Requested Delivery date'. Currently, on my report 'ScheduledShipDate' is set to Monday of each week since we ship every mondays. I need to change the 'ScheduledShipDate' since from now the ship date will be Wednesday, Thursday and Friday of each week. Here is my DDL.

USE tempdb;
GO
DECLARE @Date datetime;
SET @Date = GETDATE();
--SET @Date = '2014-07-25';
DECLARE @TEST_DATA TABLE
(
DT_ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED

[Code] ....

View 7 Replies View Related

SQL Server 2008 :: Can SSRS Report Be Automatically Saved As Excel File

Feb 13, 2015

I have a report that is scheduled to run a once a week. This works fine. But now I would like this report to be saved as an Excel file automatically when it runs. how / where do I do this?

View 0 Replies View Related

How To Reach Report Variables From Custom Code

Jun 19, 2007

Hello,

I'd like to use Globals!ReportName and User!Language in custom code like this:

Function Localize(ByVal key As String) As String
Return ReportUtil.Localizer.Localize(Globals!ReportName, key, User!Language)
End Function

If I preview the report I get an error message saying that there is error on line 2 of custom code.
Is it possible to reach report variables in custom code?

Thanks!

Werner

View 8 Replies View Related

Difference Between SQL Server 2005 And SQL Server 2008 SSRS(Sql Server Report)

Apr 15, 2008

Hi all,

Please tell me about difference between SQL Server 2005 and SQL Server 2008 SSRS(Sql Server report)
Why to upgrade for Sql Server 2008

Thanks,
Ashok

View 3 Replies View Related

Custom Ordering In MDX For SSRS Report

Feb 27, 2008



Hi guys,

i Have the following code for a SSRS Matrix Report.


SELECT NON EMPTY { [Measures].[Ordered Qty], [Measures].[Line Fill %], [Measures].[Qty Fill %], [Measures].[Delivered Qty], [Measures].[Delivered Lines], [Measures].[Ordered Lines] } ON COLUMNS,

NON EMPTY {[Customer].[Customer Name].[Customer Name].ALLMEMBERS * [Market].[Product Group].[Product Group].ALLMEMBERS * {[Time Calculations].[MTD Pr Mth],[Time Calculations].[MTD]} } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS

FROM ( SELECT ( STRTOSET(@DatePeriod, CONSTRAINED) ) ON COLUMNS FROM ( SELECT ( STRTOSET(@DateYear, CONSTRAINED) ) ON COLUMNS FROM [DIFOT]))

WHERE ( IIF( STRTOSET(@DateYear, CONSTRAINED).Count = 1, STRTOSET(@DateYear, CONSTRAINED), [Date].[Year].currentmember ), IIF( STRTOSET(@DatePeriod, CONSTRAINED).Count = 1, STRTOSET(@DatePeriod, CONSTRAINED), [Date].[Period].currentmember ) )

CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS




Parent is the Customer Name, with Drill Down to Product Group.

Is their a way that i can sort this report so the customers with the highest [Measures].[Ordered Lines] for ],[Time Calculations].[MTD] is on the top.

Ive been trying to work out the ORDER command in MDX, but i cannot seem to get it to work..

Any help would be great

Thanks
Scotty

View 5 Replies View Related

Security Exception When Calling Custom Code From A Report.

Nov 13, 2006

Hello,

When I run my report from within visual studio 2005 it generates just fine.

However, when I run the report from the reporting services local web site I get the following error. What do I need to do to fix this (temporarily turning off .net security uusing caspol didn't work).


An error occurred while executing OnInit: Request for the permission of type 'System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed





View 9 Replies View Related

Running A SSRS Report In A Report Viewer Control In .net

Jun 29, 2007

Do I need the report server running in order view a SSRS report in a report viewer control? I've created my report in .net and it works great when I'm viewing it in visual studio, but can I run it my web app without the report server.

View 1 Replies View Related

SSRS Reporting From Custom List Returning 1;# In SQL Report

Apr 28, 2008

Hi,

I have a set up SSRS which is reporting from a custom list in sharepoint to SQL 2005. I have created a parameter on the SQL report to return data from a field in the sharepoint list, however when it retrieves the data i get 1;# in front of the returned data?

Why would this happen?

Any help would be much appreciated, thanks.

View 5 Replies View Related

Reporting Services :: Custom Shapes In SSRS Report

Aug 20, 2015

I have an application that will ask a user about faults in a car. The info is stored in a database.

I want to create a report that will have a 'picture' of a car, as in the below; and will be highlighted depending on which part is faulty.

For example, if the bonnet is faulty, then it must be highlighted in a specific color.

View 5 Replies View Related

Reporting Services :: How To Add Custom DLL In SSRS Report 2010

Jun 17, 2015

I am working on SSRS report with project server 2013 and I want to add custom dll in  SSRS report.I have create dll first then add into GAC Assembly After that i have add this dll in report project in SSRS.when i have try to deploy and build report...

.An error Occurred during local report processing.

Failed to load expression host assembly.

Details : Cannot Perform CAS Asserts in Security Transparent methods.

View 6 Replies View Related

How To Use The Custom Code (getting Start And End Dates Of Every Month In Date Range) In The Report ?

Mar 29, 2007

Hi all,

I am trying to use the custom code in the report but I don't think I am understanding how this is being used.

I have a function to get starting months for a report parameter.
The function is below:-

--------------------------------------------------------------
Shared Function GetStartingMonths() as String
dim strDefault as string
dim CurrentMonth as String
Dim SqlString as String

'strDefault = Month(Now) & "/1/" & Year(Now)
CurrentMonth = "5/1/2002"
Do While CDate(CurrentMonth) <= Now
SqlString = SqlString + "Select " & CurrentMonth & " as value, " & MonthName(Month(CurrentMonth)) & " " & Year(CurrentMonth) & " as MonthYear"
CurrentMonth = dateadd("m",1,CDate(CurrentMonth))

if Cdate(CurrentMonth) = Now then
Exit Do
else
sqlString = SqlString & " Union "
end if

Loop

return SqlString

End Function
---------------------------------------------------------------
what i am trying to do here, and hopefully produce a sql string that would fill my dataset of dates and their representation.

In the dataset, I had put the following expression
=Code.GetStartingMonths()

However, I can't seem to get the parameter to display the dates. shows up as disabled in my report.

Am I doing something wrong here or is there a better way to doing this ?

Additionally, I was wondering whether there is a better SQL code that would achieve the same thing I am doing ?

thanks !

Bernard Ong

View 15 Replies View Related

Getting The Foreground,Background Colors In The Report Item Dynamically Using Custom Code

Oct 25, 2007



Hi All,
I want to get the Font,Background colors of the report item(Textbox) changed in Runtime,According to the value in the Textbox. The idea is to get this done by using the Same Custom code for getting both the Foreground,Background colors, I thought to implement this with flag, But I dont know how to do this..

Reporting experts ..please help me with this issue.Thanks in Advance

-Mahendra

View 2 Replies View Related

Reporting Services :: Report Cannot Find Custom Code - Unrecognized Identifier Error

Nov 18, 2008

I wrong a custom code in my report - Public shared Function Myfunc and in the header textbox - I tried to reference this code = Code.Myfunc.... the Myfunc gives an error Unrecognized identifier.The code is written in the report properties = Code Tab.

View 4 Replies View Related

Reporting Services :: How To Get Custom File Name In Manually Generated SSRS Report

Jul 9, 2013

I am creating a SSRS report which would be executed by User manually through ReportServer URL.User would be generating the SSRS report for different Customer ID based on ad-hoc basis.

I am passing CustomerID as input parameter to the report. Is there any way to get the manually generated SSRS report name as 'Report_CustomerID_TodayDate.xls'.

E.g.If User is generating report for Customer ID 123 today then report name should be 'Report_123_07092013.xls'

View 2 Replies View Related

Running A SSRS Report In SSIS?

Mar 11, 2008

Has anyone figured out a way to create an ssis package that runs a report in ssrs 2005?

View 4 Replies View Related

Reporting Services :: SSRS 2005 Custom Report Rendering Format Not Working?

Jun 3, 2015

I'm trying to add a custom report format to ssrs 2005 as per this [URL] I've added the code snippets in the example to three different ssrs 2005 server RSReportServer.config files but it does not work i.e do not show up in the export drop down when rendering report.

I've tried starting and stopping reporting services and it still does not works.

I've also modified the existing csv extension  with different options to see if it works but to no avail.However it works with SSRS2008 R2 . In fact it works right after I saved the config file, no restart needed.For SSRS2005 the file is in C:Program FilesMicrosoft SQL ServerMSSQL.3Reporting ServicesReportServer. I checked the registry setting  just to make sure I'm looking at the correct installation 'HKEY_LOCAL_MACHINE', 'SOFTWAREMicrosoftMicrosoft SQL Server90ToolsClientSetup', 'SQLPath' The three ssrs2005 instances are in three different physical servers and the problem is with all of them so it is not an isolated incident. I've dbowner rights to all three servers. The server versions are 9.0.4060, 9.0.4035 and 9.0.4053

View 11 Replies View Related

Running SSRS Report From SSIS Package

Feb 27, 2009

I have an SSIS package. It updates a table in SQL Server 2005 database. There is another SSRS report that presents my final table and I run it and export it into Excel.Is it any way after SQL Query task and Store procedures are being finished in my SSIS package, I add another object to run my SSRS report and export it to Excel format?

View 4 Replies View Related

Reporting Services :: PivotTable Report In SSRS 2008 R2

Jun 17, 2015

What is the best approach for turning the report below into a PivotTable report in SSRS 2008 R2?The PivotTable has the following characsteristics:

Filters:     None
Columns: Mat_Month
Rows:      Level1, Level2
Values:    MaturingBalances

We have an SSAS Cube with the same data (in a dimensional schema).The report (currently sourced via SQL from our data warehouse):The Pivot Table - currently in Excel but needs to be ported to SSRS

View 3 Replies View Related

SQL 2012 :: Stored Procedure Never Finishes Running From SSRS Report Manager?

Jul 9, 2015

My SSRS report never finishes running for some reason.

If I run the same SP with the same parameters from SSMS it runs in 0.5 sec (returns 8-10 rows).

When running from report manager, I see extremely high CPU Time and Disk IO values, no blocking, no waiting at all.

View 4 Replies View Related

Reporting Services :: Displaying RTF Text In SSRS 2008 Report

Nov 8, 2009

I have database fields that contain RTF text. If I use the default Textbox in SSRS 2008 Report Designer, I get all the RTF formating characters, which makes for a VERY ugly report.Is there another control I can place on my report that will take the RTF formated text and display it properly? I can do this in Crystal Reports, but I'm converting to SSRS 2008 so I need to be able to handle RTF formated text.

View 4 Replies View Related

Reporting Services :: Running SSRS 2014 Report Viewer In Standard Mode

Jun 4, 2015

Is there any way to get SSRS 2014 report viewer to run in standards mode? We currently host SSRS report viewer in a standards mode IFrame.  Seems to work fine for all browsers but IE8. In IE8, the report detail is missing.

I'm guessing that SSRS Viewer on IE 8 requires Quirks mode.

I noticed this article which states that SSRS 2014 Viewer only works in quirks mode.

Rendering issues with SQL Server Reporting Services reports in Internet Explorer

How do you get the SSRS viewer to run on IE8 in standards mode?

View 3 Replies View Related

Reporting Services :: SSRS 2008 CSV Export Blank Report With Commas?

Sep 1, 2011

We have recently upgraded to SP1 of SSRS 2008. As a result, when we export a blank report to CSV, we now get a line of commas below the headings. Or found a way to not include the commas?
 
New SSRS Output

Portfolio_Reference,Portfolio_Name,R,TR,TD,TC,D,
 
Old SSRS Output

Portfolio_Reference,Portfolio_Name,R,TR,TD,TC,D,

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved