SSRS should directly upload my report to PDF after taking parameters from user

Hi
I have a client requirement where 6 paramaters are declared in a report. And these parameters are explicitly entered by user who accesses the report. After entering parameters user clicks on "View Report".
Requirement is "View Report" should directly export the report to PDF. Instead of showing it in default viewer.
Some one please help.
It is very critical and urgent requirement which I should complete.
Thanks in Advance!!

Ok, then I hope only by using the SSRS tool we can't redirect as per your requirement. Once it is rendering only we can export to few formats.
Alternatively you can try Data Driven Subscriptions. It can directly send the PDF's. Even there is having some limitations. If your requirement is suitable within those limitations then u can use right ?
Try it! .... All the best
Sridhar

Similar Messages

  • As of feb 12th i can no longer directly upload a picture to my facebook profile page from my camera app (iphone5) it goes to an IOS album instead. is this a software glitch? i have had my phone since dec 2012

    as of feb 12th i can no longer directly upload a picture to my facebook profile page from my camera app (iphone5) it goes to an IOS album instead. is this a software glitch? i have had my phone since dec 2012

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • Ssrs hyperlink to other/sub report as PDF or excel

    I need to create a hyperlink on SSRS report data and when clicked opens a separate PDF/excel file of other report using some parameters from current report.
    Column1 | column2 | Column3
    Link1 Link2 Link3
    Link1 Link2 Link3
    Actually I designed two reports from first report data should have hyperlink while click on that pass parameter to second report but the second should be open a seperate pdf/excel file

    There are two options.
    You can set the action of the item to "goto URL" and use an expression to define that URL:
    ="\\server\"+Parameters!folder.Value+"\filename.pdf"
    Or, you can set the textbox to be interpreted as HTML and set the value using an expression:
    ="<a href='\\server\"+Parameters!folder.Value+"\filename.pdf'>Link1</a>"

  • Problem to export a report (to PDF) after converting my reports to CR13

    I have an old project with reports developped using Crystal Reports for Visual Studio 2003 (.NET 1.1). I want to convert them so I can now use Crystal Reports for Visual Studio 2010 (with .NET 3.5).
    I installed Crystal Reports for VS2010 and I converted my reports to the new format. Unfortunately, one of my reports is not working anymore.
    My ASP.NET application generate the report and export it as a PDF. I use CrystalDecisions.CrystalReports.Engine.ReportDocument.Export().
    Everytime I run this method, an exception is thrown...
    System.Exception was unhandled by user code
      Message=System.Runtime.InteropServices.COMException (0x80041004):
    Mémoire insuffisante pour l'opération.
       à CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)
       à CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.Export()
       à CrystalDecisions.CrystalReports.Engine.ReportDocument.Export()
       à
      Source=GSPRapport
      StackTrace:
    I also tried to export the report (using PDF format) at design time with the "Export Report" button in Preview mode. It didn't work. But, I can export the report at design time using another format type (like XML).
    The old version of te report (using .NET 1.1, CR9) work fine. As I said, other reports in that same project work perfectly.
    Is someone have an idea of what's wrong!
    Thanks!
    Max.

    The most common cause of this problem is having very large detailed images, or lots and lots of images in your report. The Crystal Report engine changed a lot from 9.1 to 13. The big change was from 9.1 to 10 though when we started using the RAS InProc engine.
    The Crystal reporting engine is not efficient at handling the images and it can cause memory issues like you are seeing. As a test, try suppressing the images that show up frequently in your report and retry your export. If it works you'll have your answer and you'll need a new creative way to design your report without so many images.

  • Export Report to PDF after user has entered parameters

    Hi All,
    I have a problem exporting a report to PDF using "ReportExportControl" after a user has entered parameters, instead of showing the download prompt, it displays the report using the parameters as if it was using "CrystalReportViewer"
    If I program the input fields using "ParameterFieldController" then the exporter works as expected.
    Is there anything in particular needed in order to export a report with user inputted parameters?
    Thanks in advance.
    Michael

    Hi Ted, thanks for your reply,
    What I am seeing at the moment is as follows
    The report requires parameters from the user in order to generate the report, and a webpage asking the user to inputs is shown, the same one that is shown by "CrystalReportViewer" function, once the user has inputted the parameters they click the "OK" button and the report generates on screen, using the parameters entered, behaving like "CrystalReportViewer" function, what I need is once the user click "OK" it will prompt for download as attachment, which is not happening.
    For your suggestion, I already have that coded and its still not working, Please find my code attached
    // Create a exporter object
    ReportExportControl exportControl = new ReportExportControl();
    exportControl.setReportSource(clientDoc.getReportSource());
    // Exporter Options
    ExportOptions exportOptions = new ExportOptions();
    exportControl.setExportOptions(exportOptions);
    exportControl.setExportAsAttachment(true);
    exportOptions.setExportFormatType(ReportExportFormat.PDF);
    // Process the http request to export the report
    exportControl.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    // Dispose of the exporter object
    exportControl.dispose();
    with the above code the report will display on screen, but if i include this before the code
    //Use the ParameterFieldController to pass parameter values to the report
    ParameterFieldController paramController;
    paramController = clientDoc.getDataDefController().getParameterFieldController();
    paramController.setCurrentValue("", "Parameter name", Val);
    the report doesnt show the input screen and generates as attachment
    Hope this makes my situation abit clearer
    Thanks and regards
    Michael

  • Crystal Reports 9 and Stored Procedures using supplied parameters from user

    Hi,
    I have a Crystal Reports 9 report that prints and works fine.  It requests from the user 2 pieces of data which both are String data and not nulls.  I want to use the same report in a Visual Basic.Net 2003 program.  I can pull the report onto the form and it runs wonderfully.  I want to make it run programatically with out prompting for the user to key in the parameters.  I can supply them from an existing data file.  I have tried many things but have lacked the solution. 
    How can I pass the parameters from VB.Net 2003 to the stored procedure which runs the Crystal Report with in the VB.Net 2003 program.
    I appreciate all help and comments.
    Can this be done or do I need to just re-write the report in VB.Net 2003?
    Thanks,
    Norman

    Hi, Norman;
    It sure is possible to pass parameters to a Stored Procedure via our .NET SDK.
    Have a look at these samples:
    https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/9043bbbc-ae66-2b10-ce96-b48f9e25a450
    There are samples showing passing parameters.
    Regards,
    Jonathan

  • R12.1.3 - Reports 10g PDF Output not opening from SRS window

    Gurus,
    Your help will be highly appreciable for the below context.
    While trying to open a report output, following error occurs and won't show the PDF format correctly.
    "There was an error processing a page. There was a problem reading this document(135)".
    Object Type : Reports 10g with graph
    Conc Program Output Type : PDF
    Note: Currently issue happening only in DEV instance not in UAT/Prod instance.
    Thank You.

    Hi,
    When you click View Output, press the Control key and see if you get an open/save dialog. If one is displayed, save the document and try opening it directly from the PDF reader.
    If this does not resolve the issue, post a screenshot of the error.
    Regards,
    Bashar

  • Bug Report:  "View PDF After Saving" Does Not Work When Saving as Photoshop PDF

    The saved PDF file is not opening in Acrobat after saving a file as a Photoshop PDF. I noticed it happening a few times in earlier beta testing, but today it happened again.
    I have Adobe Acrobat Pro 10.1.2 installed on MacPro with Lion OS 10.7.3. Photoshop public beta m415.  System info can be provided if needed.
    The file I was trying to save was about 8 MB. Once it failed to open after save, I tried varied PDF settings and save locations. Also tried several different files. All were saved properly as PDF files, but would not continue to open in Acrobat as previous versions have done. The files open properly when you click on the file names in saved location.
    3153152
    3153152

    I'm happy I could help and feel a bit proud to have found a real bug. The simplest work around is just clicking on the file list once it's done...that's certainly not a problem.
    Larry
    =====================================
    Larry Guyer
    A la Carte Digital Studios
    Archetype Digital Imaging Alliance
    P.O. Box 4365
    Foster City, CA 94404-0365
    650-348-2525   office
    323-372-1669   fax
    650-444-7100   cell
    www.alacartedigital.com
    www.archetypeimaging.com

  • Printing to PDF after making edits - some users do not see the edits

    I am using Adobe Acrobat Pro 10.1.2. Here is the problem I am having. I have a PDF and part of the PDF has hand-written data. I am putting a text box on top of this hand-written data and replacing it with new data. I then re-print this document to PDF. When I look at the new PDF, it looks perfect. When I send this PDF to another user, they see the original hand-written data in the field that is suposed to have a new text box. The user I am sending this to is also using Adobe Acrobat Pro 10.1.2.
    This problem does not happen all the time, but it does consistently happen. Please help.

    The situation as you describe it is curious and seems inexplicable. The only way I could explain it is if you inadvertantly sent the PDF which you had edited directly, rather than the one which had been printed to PDF. This would be entirely explicable, as Acrobat has an option to decide whether annotations are to be printed.
    You can try turning this option on and off yourself to see the effect on the files concerned.

  • Crystal Reports 2008 Stored Procedure and Parameters from LOVs

    Quite simple report using stored procedure as data source. When editing some of the parameters we get this error when clicking OK to close "This stored procedure parameter can only accept multiple values. Please ensure that Allow Multiple Values is true."
    As we all know stored procedure parameters do not access multiple values at all, so this message is very hard to debug. The report does work if we set the 'Allow Multiple Values' to true, but only when using exactly one value for the parameter. We have tried verify database and other things, but cannot find any way around this issue.
    All ideas are appreciated as this is stopping us from utilizing the dynamic parameters.
    Thanks, Stig

    We managed to work around the issue by creating a new stored procedure. First we used the same parameter names and changed the data source to the new stored procedure. After renaming the parameter with the issue the problem then was resolved.
    Note that another parameter that was earlier affected by this issue in the way that it could not be edited and saved due to the same error message now also works fine. This even if this parameter has not changed names.
    Quite a complex situation to debug this. Maybe if the source of the error message is found in the code we could help testing.
    Stig

  • Can not open pdf after saving scan from desk jet 3050

    I can open pdf file sent to me but I can not open scanned pdf files I scanned with my desk jet 3050 J610

    Hi Marymae07,
    Welcome to the HP Support Forums! I see you are not able to open up a saved pdf file once you save the scan with your HP Deskjet 3050.  To better assist you, can you please leave me with the following information:
    1. What is your current Operating system, Windows or Mac and which version?
    2. What program are you using to scan, are you using the HP software or another program?
    3. Do you get any error messages when you attempt to save as pdf file?
    4. Are you able to save the scan in another format like jpeg?
    I will watch for your reply, so we can begin troubleshooting.
    Thanks,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • How can I print directly print a report from another app?

    Hi, Can I print a report (printer schedule immediate) passing parameters from another application? Like a html page!
    Thanks a lot. R.

    I can't use the url (for example):
    http://HOST:9704/xmlpserver/servlet/scheduler?ujobname=test_print.xdo&d_printerd_p_gname0=direct&show_conf_page=true&d_method0=d_printer0&job_locale=it_IT&save_output=off&mode=schedule&save_data=off&ujobdesc=test_print.xdo&stype=simple_immediate&_xschurl=_xpt%3D%26WebDoc_Id_Page_Id%3D34132_233%26_xdo%3D%2Ftest_print%2Ftest_print.xdo%26_xpf%3D%26Store_Timezone%3DEurope%2FRome%26_xf%3Dpdf&report_url=%2Ftest_print%2Ftest_print.xdo&submitted=true&d_printerd_p_name0=bridgept1&d_printerd_copy0=1
    ?

  • Avoid report refresh when updating cascade parameters

    I have a report with 3 cascade parameters. The first parameter, region, is independent. The second parameter, zone, depends on region. The third parameter, store, depends both on region and zone. These are multi value parameters. The report is
    viewed directly in the "/reports" URL, so there are no custom applications that can modify it.
    I have a data set for each parameter and obviously use parameters to limit the results of the second and third paramters. My user doesn't want the page to refresh after you set the first and second parameter. I'm not sure that's possible because it's a native
    reporting services action. 
     I've tried to bring all the results in second and third datasets and use filters based in the previous parameter, but the lists go blank even though the "Always refresh" property of the parameter is selected.
    Is there a NATIVE way to avoid the page from refreshing? 

    Hi Dany,
    According to your description, you want avoid the second parameter and third parameter to be refresh after change the value on the first parameter, right? In Reporting Services, the report will reload after the parameters value were changed no matter the parameter
    is a cascading parameter or not. This is default setting, so as Martina said, your requirement cannot be achieved currently. 
    Besides, if you have any concerns about this feature, you can submit a feedback at http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product.
    Thank you for your understanding.
    Regards,
    Charlie Liao
    Charlie Liao
    TechNet Community Support

  • I have had a trial version of Acrobat X1 Pro - I have decided not to buy at this stage - for some time it has been conflicting with opening PDF docs after saving as from word 2007 - I uninstalled Pro X1 and now when I save as from word 2007 to PDF it will

    Can anyone help with this - do I have to uninstall Reader and then reinstall?

    I have had a trial version of Acrobat X1 Pro - I have decided not to buy at this stage - for some time it has been conflicting with opening PDF docs after "saving as" from word 2007 - I uninstalled Pro X1 and now when I "save as" PDF from word 2007 to PDF it will save the document as a PDF but will not open the document to display after publishing - I have to got to where the file has been saved to view the new PDF document - this is really annoying - do I have to delete adobe reader and reinstall it - adobe needs to look at this conflict with acrobat pro as I have even gone it to properties and tried to have adobe reader as the default PDF program - the main issue is that I cannot view the PDF after publishing it from word 2007

  • Save SSRS Report as .PDF in Client Machine

    Hi,
    I am working on a SharePoint 2010 Visual WebPart, the saves a SSRS report as pdf on a button click.  The code is mentioned below:
    HttpWebRequest Req = (HttpWebRequest)WebRequest.Create(URL);
    Req.UseDefaultCredentials = true;
    Req.PreAuthenticate = true;
    Req.Credentials = CredentialCache.DefaultNetworkCredentials;
    HttpWebResponse objResponse = (HttpWebResponse)Req.GetResponse();
    Req.Method = "GET";
    //Specify the path for saving.
    string path = @"C:\test\" + quoteID + @".pdf";
    FileStream fs = new FileStream(path, FileMode.Create, FileAccess.Write);
    Stream stream = objResponse.GetResponseStream();
    byte[] buf = new byte[1024];
    int len = stream.Read(buf, 0, 1024);
    while (len > 0)
    fs.Write(buf, 0, len);
    len = stream.Read(buf, 0, 1024);
    fs.Close();
    stream.Close();
    The code works great, however, when the user clicks the button the file is getting saved directly in the main server when the WebPart is deployed.  So, now I want the user to be able to select the location in there system to save the file.  How
    to enable the "Open save file dialog" and let the user select the location. can someone help me with this ? 
    thanks.
    Regards, Vikram

    You can use below snippet.
     string strURL=path;
            WebClient req=new WebClient();
            HttpResponse response = HttpContext.Current.Response;
            response.Clear();
            response.ClearContent();
            response.ClearHeaders();
            response.Buffer= true;
            response.AddHeader("Content-Disposition","attachment;filename=\"" + Server.MapPath(strURL) + "\"");
            byte[] data=req.DownloadData(Server.MapPath(strURL));
            response.BinaryWrite(data);
            response.End();
    Bala

Maybe you are looking for

  • Txt file read in- StringTokenizer- Try Block Catch for errors

    Hello So I am having a few issues with a school project. First is with my ReadWithScanner. It does not read in the file giving me a NullPointerException error on the line <Scanner in = new>. I have tried a few other read in files and they do not seem

  • User- Specific screen sequence in MMR

    Hi I need to create a User-specific screens in Material master record.That is for one user the basic data 1 should be there and for the other user it has to be blocked i.e he should not do any changes to that field. Kindly suggest me a solution .....

  • How to edit jbo.dofailover in AM?

    In my case I cannot edit this parameter. It looks disabled. What am I doing wrong?

  • WebLogic App server - IHS web server

    Will the same "Apache HTTP Server Plug-In" allow IBM/IHS web server to work with WebLogic App server? If so which versions are supported?

  • I cant open new tabs by clicking the blank area next to the tabs

    I used to be able to simply double click on the blank space next to currently open tabs (not just the little plus sigh) to open an new tab. Since yesterday I can no longer do this. I am running version 7.0.1. I don't know if this happened at the same