Is it possible to take a print from MSS Reporting

Hi all,
Is it possible to take a print from MSS Reporting ?
When I execute a report from the MSS reporting a pop-up is open with the report result.
I need print out this. To do it, I click on Menu > Print and choose the WINPRINT in Output Device.
The message "Spool request (number 0000009418) send to sap printer WINPRINT" appears and the adobe reader open with a error message below.
"the file doesn´t start with '%PDF-'"
I can see the spool in SAP backend (SP01) with status "Compl." but I the printer is not print anything.
How I can print out a report from MSS Reporting ?
Cheers,
Silvio Galery

Please check the Note 351230, check out the recommendatins as listed

Similar Messages

  • Is it possible to take a print from the Portal

    Hello All,
    Is it possible to take a print out from the Portal.
    Let me be  more clear about the case:
    We have designed some charts (Time Scatter) in our WebDynpro projects and displayed it in the Portal. Now, the Team is enquiring if the Print out of the generated charts could be taken from the portal by providing a button. Or else they will have to save the chart as an image and take a print out.
    Please let me know how can it be done if possible.
    Points will be awarded.
    Regards,
    Poojith MV

    hi....
    Follow the code given below !!
    The print functionality can be included by writing a Separate PortalComponent and calling the component when the print button is clicked on any page.
    In the JSP call the print cmponent By using
    <%@ page import="com.sapportals.portal.prt.service.urlgenerator.IUrlGeneratorService"%>
    <%@ page import="com.sapportals.portal.prt.service.urlgenerator.specialized.IPortalUrlGenerator"%>
    <%@ page import="com.sapportals.portal.prt.service.urlgenerator.specialized.ISpecializedUrlGenerator"%>
    For instance :
    Include code like this in all your jsps
    <%
    try {
    IUrlGeneratorService urlGen =(IUrlGeneratorService) componentRequest.getService(IUrlGeneratorService.KEY);
    // get Specialized Portal Url Generator
    IPortalUrlGenerator portalGen = null;
    ISpecializedUrlGenerator specUrlGen =urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
    if (specUrlGen instanceof IPortalUrlGenerator)
    portalGen = (IPortalUrlGenerator) specUrlGen;
    printUrl =portalGen.generatePortalComponentUrl(
    componentRequest,
    "<ProjectName>.<PrintComponent>");// calling the Print Component
    } catch (Exception e) {
    response.write("EXception---"+e.getMessage());
    %>
    Hold the bean values in the HttpSession.

  • Is it possible UPLOAD a single printer from an LDT with a lot of printers?

    is it possible UPLOAD a single printer from an LDT with a lot of printers? by using FNDLOAD
    here we can
    download a specific printer definition, we need to follow the below syntax
    FNDLOAD apps/ 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcppinf.lct
    source_printer_def.ldt FND_PRINTER PRINTER_NAME=[printer name]

    Duplicate post -- migrate  printers, types, styles and drivers from an 11i to R12 instance us

  • HT1203 Is it possible to take a CD from someone elses apple cloud

    Is it possible to take a CD from someone elses cloud?

    There are no CD's in the cloud.
    A CD is a physical piece of media.
    That being said, with the login credentials, it is possible to download past purchases.

  • Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Take a screenshot of the chart and use that in Keynote, if you can't find another way.

  • I am using the hp 3525 model printer , i like to know how to take photo print from the printer

    Hi,
    I am using the hp 3525 model printer , i like to know how to take photo print from the printer .
    Regards
    Mukesh.R

    Hi Mukesh,
    I'd like to help, but can you clarify the issue?  Are you asking how to print a photo from your printer?  Also, can you confirm that your printer is a HP Deskjet Ink Advantage 3525 e-All-in-One Printer?
    Thanks!
    Tara
    **Although I am an HP employee, I am speaking for myself and not for HP.

  • How to print directly to Printer from Crystal Report Viewer ?

    Hi All,
    We are integrating our Java Web Application with Crystal report XI, currently using JRC and export to PDF for user to preview and print to local printer.
    Now there is new requirement :
    Some clients is using thin client terminal (no harddisk, only has OS +Browser in ROM), so I cannot install Acrobat Reader for them to preview&print the report.
    So I am looking at  Crystal Report Viewer, the question is : Can I print from Crystal Report Viewer directly to local printer without first converting it to PDF (because I can't have acrobat reader installed) ??
    Thank you very much,
    Krist
    Indonesia

    Hi,
    It can't be achieved through XI.
    JRCXI R2 SDK offers the ability to print the report server side
    using the PrintOutputController using printReport(PrintReportOptions printReportOptions) method.
    Here is the code(for XIR2):
    import="com.crystaldecisions.reports.sdk.*"
    import="com.crystaldecisions.sdk.occa.report.lib.*"
    import="com.crystaldecisions.sdk.occa.report.document.*"
    try {
    final String REPORT_NAME = "Inventory.rpt";
    ReportClientDocument reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(REPORT_NAME, 0);
    //Create and set print options.
    PrintReportOptions printOptions = new PrintReportOptions();
    //Note: Printer with the 'printer name' below must already be configured.
    printOptions.setPrinterName("
    10.10.45.220
    BOBJ 2C");
    printOptions.setJobTitle("Sample Print Job from JRC.");
    printOptions.setPrinterDuplex(PrinterDuplex.horizontal);
    printOptions.setPaperSource(PaperSource.auto);
    printOptions.setPaperSize(PaperSize.paperLetter);
    printOptions.setNumberOfCopies(1);
    printOptions.setCollated(false);
    PrintReportOptions.PageRange printPageRange = new PrintReportOptions.PageRange(1,1);
    printOptions.addPrinterPageRange(printPageRange);
    //NOTE: If parameters or database login credentials are required, they need to be set before.
    //calling the printReport() method of the PrintOutputController.
    reportClientDoc.getPrintOutputController().printReport(printOptions);
    reportClientDoc.close();
    out.println("Successfully sent report to the printer.");
    catch(ReportSDKException ex) {     
         out.println(ex);
    Please revert in case you have any query.
    Thanks,
    Neeraj

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • Is it Possible to upload the output from Oracle reports To Access database

    Hi All,
    Wish you All a Very Happy New Year.
    I have a query.Is it possible to
    upload the output from the Oracle reports
    to the Access database???
    Any suggestions would be appreciated.
    TIA
    sg

    Hi sg,
    Research the DDE option.
    Dynamic Data Exchange (DDE) is a mechanism by which applications can communicate and exchange data in Windows.
    I have imported data into the excel spreadsheet using DDE built in functions. I am sure it can work with MS Acess as well. If not, then you need to create a 2 step process .. reports -> excel -> access.

  • Printing from ITS report

    Hello,
    When the users are printing reports from the ITS it prints only the first page.
    Is there a way to print all the report?
    We don’t have a portal.
    Please Advice,
    David

    Have a look at note 351230 - it describes an option for sending the print output via the ITS to the browser as a PDF, which can then be printed with the standard Adobe Reader functions.  It looks pretty much identical to the report as seen on the screen.
    You basically set up a new printer (e.g. LPDF) in the backend system and the users select that to generate the PDF.  You do need the Webgui toolbars enabled so users can do the printing via SAP rather than the web browser.  If you want a simpler version of the toolbars, have a look at note 1010519.
    Regards,
    John

  • Send direct print to printer from client, Reports 10G, Windows environment,

    We are using windows 2003 based server. Oracle Form and Report Services . Database 10g . Reports 10G.
    Trying to send direct print to printer from client side using Destination Parameter : Printer.
    I am getting output in pdf at client side. but direct print to printer is failed.

    Make sure that the client printer is also known on the application server, since that is where the print job is generated.

  • Printing from Crystal Reports Viewer

    I have an issue with a customer demanding to print Post Script from Crystal Report Viewer.  When we print using the PS driver we get the form, but the data is blank.  If we use PCL the report prints fine.  Is there any recommendations for using PCL or PS.  Customer says that Crystal reports are Post Script driven and the PS driver should work.  Any help with this would be appreciated.

    Thank you Mariellen for posting the solution.
    Also note that we have only tested the Zebra Printer with the Zebra Print Drivers. I worked with their developers and they said all drivers use the same under laying code so they should all work.
    The other requirement is you must define your paper size in the driver config tool for each size you are going to use, have a separate Printer defined on your PC.
    Thank you
    Don

  • I got a first generation IPOD TOUCH for my husband and want to take some songs From my Computer that is hooked up to MY newer IPOD (not Touch, just IPOD)  Is it possible to take the music from my ITUNES account and add the his IPOD Touch without changing

    I am trying to take songs from my PC AND My Itunes account and send them to my husband's IPOD TOUCH First Generation BUT I don't want to change my whole ITUNES account that is already on my computer.  When I plug HIS Ipod Touch into the PC, my ITUNES account wants me to CHANGE the DEVICE Name on the account and I don't want to do that.  I only want to share SOME of my songs on my Itunes account and send them to h is IPOD TOUCH?  Is this possible and HOW!  Thanks a ton!!!  I "checked" off the songs that I want to send but that's as far as I get before it asks me to change the Device Name?

    Is his iPod usually synced to a different iTunes library/computer?  If so, that would explain the message iTunes is giving you.  An iPod is designed to sync with only one computer/iTunes library at a time.  If you try to sync it with a new library, the iPod's contents will be erased and replaced with what is in the newer/different iTunes library.
    So if there is content you would like to add to his iPod, simply transfer it from your iTunes library to his.
    B-rock

  • Hi in ecc 6.0 version - it is possible to get pdf print from list.

    Hi,
    In ECC 6.0 it is possible to print the pdf format  from o/p.
    PLs resolve this problem
    Regards ,
    Rani.

    hai.
    check the links.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/4adf7ba13c4ac1b4600d4df15f8b84/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/37/47a2be350c4ac8afe36b691203971f/frameset.htm
    regards.
    sowjanya.b.

  • Is it possible to take a video from iphone??

    1.i was trying to shoot a video from my i phone...but i coudn't do that..is there any other way to do it....
    2. is it possible to assign songs as ur ringtone.????

    how is it possible to turn a digital still camera into a video camera via a software update? please educate me, i'd love to know. (no sarcasm, i am serious!)
    I am sure other people are far more qualified to answer. However, I believe the "hardware dna" is more shared than not shared between the iPhone's camera function and its potential use for video. A camera takes one image at a time. Video takes a series of images. video-enabling software could instruct the output of the camera to recorded as a series rather than a single image into storage. As someone else noted, there may be hardware obstacles; my guess is that there is sufficient hardware to enable at least low-quality video capture.
    G5 Quad + Logic 7.2.3 + FireFace 800   Mac OS X (10.4.10)  

Maybe you are looking for

  • How can I use itunes to back up two different iphones?

    First off, please pardon the newbie question. I am on a new Windows 8 machine (using the Classic Shell interface).  I downloaded and installed itunes 11.0.2.26.  I need to be able to backup both my and my fiancee's iphone (both are 4s), before doing

  • Export as PDF not working.

    I can't get a Review Document to "Export as PDF".  When I click on the Export button, the dialog box pops up.  I choose "All" and pick "My Computer" for the Destination. I click on the Export button and choose my Desktop for the download.  It says th

  • Framed-IP-Address in auth

    i have Cisco 7206VXR IOS 12.2(6c) setted up for pptp users and aaa (Radius) accounting... now i have to check source IP of the client during the authorization... But can't find it in auth packets. Only in start/stop/alive (Tunnel-Client-IP or somethi

  • LabVIEW Position at GE Sensing in Billerica, MA

    Business:  GE Sensing & Inspection Technologies Website:  www.gesensing.com If interested in applying for this position please follow this link. www.gecareers.com Enter job number 803917. Essential Functions: ·Independently develop and implement test

  • Default Logic Optimization

    Hello All, I have built a BADI and I am using it in Default logic. I have included scoping statements in my default logic to get all the information for my BADI. If I look at my default log, the total execution of default logic is 3 mins, out of whic