Problem printing daily summary sails report

Has anyone had problems getting to their summary sales report after downloading the latest Os update?

Hi,
After you have run the code can you look at the Console to see if there is any error there?
You may have to enable settings to have the console so on exceptions - "Edit->Preferences->JavaScript" (Acrobat->Preferences->JavaScript on MAC) under the JavaScript Debugger heading.
Check the following
"Enable JavaScript debugger after Acrobat is restarted"
"Show console on errors and messages"
Then if you rerun the code if there is an error in the script the console should show and tell you what the error was.
Regards
Malcolm

Similar Messages

  • Problem printing comments summary in continuous list

    I have made a bunch of underline comments through a large pdf in the hopes of printing just the comments and having essentially a shorter, more succinct version of the large file. When I go to print the comment summary (comments only) I end up with the comments from each page still printed on separate pages, which defeats the purpose of me trying to get a shorter document. I'd like just one, continous list of all the comments on as few pages as possible. I found some other forums (which are read-only now) that suggested using the following JavaScript to get a continuous comments summary:
    // Get the comments in this document, and sort by author
    this.syncAnnotScan();
    annots = this.getAnnots({nSortBy: ANSB_Author});
    // Open a new report
    var rep = new Report();
    rep.size = 1.2;
    rep.color = color.blue;
    if (annots) {
    rep.writeText("Summary of Comments: By Author");
    rep.color = color.black;
    rep.writeText(" ");
    rep.writeText("Number of Comments: " + annots.length);
    rep.writeText(" ");
    var msg = "\200 page %s: \"%s\"";
    var theAuthor = annots[0].author;
    rep.writeText(theAuthor);
    rep.indent(20);
    for (var i=0; i < annots.length; i++) {
    if (theAuthor != annots[i].author) {
    theAuthor = annots[i].author;
    rep.writeText(" ");
    rep.outdent(20);
    rep.writeText(theAuthor);
    rep.indent(20);
    rep.writeText(
    util.printf(msg, 1 + annots[i].page, annots[i].contents));
    } else {
    var msg = "No annotations found in this document, %s.";
    rep.writeText(util.printf(msg, this.documentFileName));
    // Now open the report
    var docRep = rep.open("myreport.pdf");
    docRep.info.Title = "End of the month report: August 2006";
    docRep.info.Subject = "Summary of comments at the August meeting";
    I think this could be a great solution, but I'm having a problem with it: it's only printing the comments for the first half of my document. At the very end of the last page it prints, some of the comments overlap, some are skipped altogether, and then it stops going any further through the comments. I tried reading through the code to see if there was some sort of max number of comments defined or anything like that, but wasn't able to debug it. Does anyone know why the code isn't printing all the comments? I'm using Acrobat 9.5.0 Pro on Windows.
    Thank you in advance for your help!

    Hi,
    After you have run the code can you look at the Console to see if there is any error there?
    You may have to enable settings to have the console so on exceptions - "Edit->Preferences->JavaScript" (Acrobat->Preferences->JavaScript on MAC) under the JavaScript Debugger heading.
    Check the following
    "Enable JavaScript debugger after Acrobat is restarted"
    "Show console on errors and messages"
    Then if you rerun the code if there is an error in the script the console should show and tell you what the error was.
    Regards
    Malcolm

  • Problem printing Report Document Draft

    Dear support,
    our customer has problem printing its Document Draft Report, because
    the "DRAFT DOCUMENT" string on the background of the page is too large.
    The printer can manage this dimension and prints an empty second page
    (also when the document has more pages).
    See attached file.
    If we disable the "Print Draft Watermark on Draft Document" flag in the
    Print Preferences, the customer hasn't the problem printing the draft
    document.
    The customer need to distinguish the print of draft document.
    Is it possible in the report designer to know if a document is a Draft or
    a Definitive one?
    If we can understand the type of the document, we could add a text box
    "DRAFT DOCUMENT" in the report and disable the "Print Draft Watermark on
    Draft Document" flag.
    Can someone help us, please?
    Regards,
                  Emanuele
    TC Systems SA - Mendrisio - CH
    Emanuele Croci
    +41 (0)91 960 2525

    hi Emanuele Croci,
    For example paper format which default as Letter,but in PLD
    if y'r paper format is A4 then definitely it will be printed more than 1 page.
    Go to File --> Page Set Up --> Change paper format as in PLD.
    Also reduce the font by 1 point.
    If problem not get solved,You can print Water mark as DRAFT from printer properties.
    Start --> Printer and Faxes > Select Printer you want to print,Right Click it>Select Properties>Select Printing Preferences>Select Effects Tab> Select Water mark option as Draft>Click Apply.
    Test print it let me know.
    Hope above solution will solve problem.
    Jeyakanthan

  • Printer Problem In Oracle Forms And Reports server

    Hi,
    I am facing a problem regarding installation of printer drivers in my Reports Server (10.1.2.0.2 on Windows 2003).
    Unless the printer driver is installed locally on the Report Server Reports are not printing.
    The problem is with the USB printers at various location .
    How to install the printer in this case.
    Any one can help in this regards.
    Regards,
    Kumar

    I think that specific drivers are needed always when you need to print in windows enviroments, with or without report server, locally or remotely. If windows "see" the printer, report server does too.

  • Problem when trying to print standart invoice crystal report for SAP

    Hi All, I have the following problem when trying to print a system invoice report in crystal reports for SAP
    I pass params and load the report using this code
    Private Sub DisplayThreadReportSeq()
    Dim oView As New frmViewReport
    Dim strReportPath As String = ""
    Dim strParamName As String = ""
    Try
    Dim CR As New ReportDocument
    CR.Load(oReport.CrstPath)
    ' Declare the parameter related objects.
    SetReportValues(CR)
    Dim crParameterDiscreteValue As ParameterDiscreteValue
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions
    Dim crParameterFieldLocation As ParameterFieldDefinition
    Dim crParameterValues As ParameterValues
    ' Get the report's parameters collection.
    For Each oPar As cslParam In oReport.Params
    crParameterFieldDefinitions = CR.DataDefinition.ParameterFields
    crParameterFieldLocation = crParameterFieldDefinitions.Item(oPar.ParName)
    crParameterValues = crParameterFieldLocation.CurrentValues
    crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
    crParameterDiscreteValue.Value = oPar.Value
    crParameterValues.Add(crParameterDiscreteValue)
    crParameterFieldLocation.ApplyCurrentValues(crParameterValues)
    Next
    If pPrint Then
    If oReport.Printer "" Then
    CR.PrintOptions.PrinterName = oReport.Printer
    End If
    CR.PrintToPrinter(IIf(oReport.Copies = "", 1, oReport.Copies), False, 0, 0)
    SBO_Application.StatusBar.SetText("Printed Document Successfully", SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Success)
    Else
    oView.Text = pReport
    oView.TopMost = True
    oView.Viewer.ReportSource = CR
    oView.Hide()
    oView.ShowDialog()
    End If
    Catch ex As Exception
    Util_GenErrorLog("DisplayReport", ex)
    End Try
    End Sub
    This code works fine when the report invoke to print is developed in crystal reports version for .net 2008 or .net 2005
    when trying to print a report standart getting from SAP BO 8.8.1 using this code I getting the following error:
    Error in File C:UsersecombaAppDataLocalTemp5ARInvoiceStandartSap {300B9A68-DF05-4D7B-8F3B-1670A4493BEE}.rpt:
    Error in formula .
    'Shared numberVar SectionTotalMaxHeght;
    A number, currency amount, boolean, date, time, date-time, or string is expected here.
    This report is the standart report that SAP 8.8.1 includes and works fine on SAP.
    I referenced this dlls CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.CrystalReports.Shared, version 10.2.3600
    How I can get these dll´s version for Crystal Report 2008 for SAP Business one or How I can solve this problem
    thanks in advance,
    Ezequiel.

    Hi Ezequiel,
    You can try to search in SAP Business One Reporting & Printing forum section or post there.
    nd.Q

  • Problem printing a report

    Hi All...
    I have come across a problem in printing a report.I need to print it on a Dot Matrix Printer.
    The line size of the report is 183 , n I need to print it on a 132 column paper , it prints all the columns but with characters overlapped.I have created  a format in the printer settings.
    While printing it I set the format for 132 col paper.
    Do I have to create a page format for a list in SPAD transaction ? or any other suggestion ?
    Can anybody please help me out.
    Thanks,
    Sangeet.

    Hi Sangeeth
        i also got the same problem as of yours. i think that you had solved your's can you please help me in solving mine too.
        I need a small help which is very important to me .I want to take print out of one report which is 255 column width ... and that is through dot matrix printer ... i'm unable to take this report in that format , plz help me out in solving the same. its high priority please.
    its urgent
    Regards
    Sahiti

  • Daily & Monthly Backlog Reports and Printing program

    •     <b>Labeling program for Deliveries</b>: This program picks all deliveries created/updated on the current day, validates them by checking whether they have the required labeling information. If the program finds that the labeling information is missing, it populates WMS structures (header & detail) for further.
    •     <b>Daily & Monthly Backlog Reports and Printing program</b>: This program calls 2 separate reports (Daily & Qtrly. Backlog Reports), based on user selection, and directly prints the reports as well as converts them to PDF format and emails them as attachments to the MD.
              Please provide me the solution.

    For First program :
    Use table LIKP (SD Document: Delivery Header Data) & LIPS(item Data) for fetch inf all the data for selected date use field ERZET(Entry time) & ERDAT(Date creation of record) for created deliveries & refer TABLES - CDPOS and CDHDR for modified deliveries
    For Second object:
    Call multiple programs by using SUBMIT <program> with selection screen params.
    Print as per requirement by passing print parameters to Structure PRI_PARAMS &
       call function 'GET_PRINT_PARAMETERS'                     
       exporting destination = liprintr                         
                 mode        = 'CURRENT'                        
                 no_dialog   = 'X'                              
       importing out_parameters = pri_params.                       
    *To Convert ABAP List and SAP Script to PDF files use program - "RSTXPDFT4"
    ALSO REFER this nice weblog >
    /people/erwan.lebrun/blog/2007/04/16/tips-tricks-email-fax-through-the-same-output-type
    Hope it will help.
    Vishal
    Message was edited by:
            Vishal Tyagi

  • Problem printing report

    I have a small problem printing reports which exist of 1 page.
    1st report is printed OK
    2nd one is bad
    3rd one is bad
    4rd one is bad
    5th is OK again... and so further.
    When I choose a different printer, all prints are OK. When I print from another PC on the same printer, all prints are OK.
    I assume some settings are disturbing the prints; can anyone suggest where I should take a look?

    are you using a dot matrix printer or a laser printer?

  • Having a print problem on a mailing label report using the merge modules.

    Crystal Reports 2008 v 12.1.6.1116
    when I print directly from Crystal Reports designer, the labels print correctly.  If I print the report from our application software using the Crystal merge module, the top of page margin is not the same.
    I am using Crystal Report 2008 Fix Pack 1.5 Merge Modules.
    Any idea what might be causing this ?  I do not see any settings in the CrystalReportViewer that would cause the top of page margin to change.
    Note: We were using a previous version of Crystal Reports, version 11 using the merge modules and it worked just fine. After changing to the 2008 merge modules we are running into this problem.

    Which Version of VS.NET you are using?
           VS 2008 v 9.0.30729.1 SP
    . Which application you are developing desktop or web?
           Desktop
    . Error messages you are facing?
            No error message, just the top of page margin is wrong
    . Are you facing this error in development machine?
           The mailing label report works just fine printing directly from the Crystal Reports 2008 Design application.  However is I try to print the exact same report using the CrystalReportViewer in the merge module, the top of page margin is different.  Basically printing from the designer, there is some spacing at the top of the page, printing in the vb.net app the spacing at the time of is missing.
    . Are you trying to deploy this application?
           Yes
    . Operating System?
            The OS I have tried this on is XP Pro SP3 and also Vista Business SP1
    . How are you deploying your application?
            We build a installshield setup to install the merge modules

  • Summary by report problem

    I have areport that list the employees and thier salaries without groupping them, the problem is i make summary by page and summary by report at the last page the summary by page appear under the summary by report , i want to make the summary by report appear under summary by page .
    i try many times with the property at last page and it doesn't work

    If you have not been able to get things in their right places with the Layout Wizard, you are going to have to change the layout.
    The Grand totals are above the Page totals. What you want is the Grand Totals to be right at the bottom of the Report,
    For that you are going to ahve to change the layout.
    Go to the Layout and make room at the bottom ana add items sourced from the Grand Total Summary Columns.
    Remove the Grand Totals from their current places.
    Dave

  • Problem printing Report with Image in BI Publisher 11g

    I am working with BI publisher *11g* but I have problem printing images. Everything works fine if I do not include any images however when I add a image I get following problems.
    When I tried printing PDF in output I get
    Type /Xobject
    subtype /Image
    Filter /DTDDecode .......
    When I tried printing HTML output I get
    Type /Xobject
    <html...
    ....>
    When I tried printing RTF I get
    { \fontb1 }
    { \f0 Arial;}
    { \f1 Times:}
    I think I am missing some BI publisher configuration. Can you help me in this regard.
    Thanks,
    Santosh
    Edited by: user4956795 on Jan 16, 2012 2:08 PM
    Edited by: user4956795 on Jan 16, 2012 2:18 PM

    Isn't there a way for you to do this via a Package/Procedure versus having multiple queries?
    Per the BI Publisher guide,
    Following are recommended guidelines for building data models:
    Reduce the number of data sets or queries in your data model as much as possible. In general, the fewer data sets and queries you have, the faster your data model will run. While multiquery data models are often easier to understand, single-query data models tend to execute more quickly. It is important to understand that in parent-child queries, for every parent, the child query is executed.
    You should only use multiquery data models in the following scenarios:
    To perform functions that the query type, such as a SQL query, does not support directly.
    To support complex views (for example, distributed queries or GROUP BY queries).
    To simulate a view when you do not have or want to use a view.
    Thanks,
    Bipuser

  • Problem printing the Detail-Trail Balance Standard report

    Iam trying to print the detail trial balance report in GL. Iam getting the report output correctly. But when iam printing the report, the last line of every page is spilling out on to the next page and then there is a page break(which is expected). and then this scenario continues till the end of the report. i,e the last line of every page is spilling out on next page,,then page break,, then goes on...till end of report.
    It will be so nice of you if anyone can help me in figuring it out why its behaving like this after printing.?? waiting for your reply??
    thankyou

    Check printer's top and bottom margin, when you send it for printing. Or open report in report builder and reduce margin of the header/main/trailer sections.

  • Summary-Detail Report

    Hi Friends,
    I have a Summary-Detail report.
    The report has minimum 2 pages.
    First page is Summary and 2nd onwards detail...
    In the first page, i will print the summary of goods despatched along with the description of goods.
    eg:
    To
    company
    ..address
    Subject...
    Body....
    Package Type | Qty | Description
    Carton | 10 | Contains 100 packs in each carton
    ............................................ To be delivered as separate packs
    ..............................................Handle with care.
    Despatched date is 12-sep-2009
    Pallets | 250 | Despatched date is 12-sep-2009
    Tins | 2100 | Despatched date is 12-sep-2009
    Signatory..... Date...........................
    This is my report structure....Usually one id will have only one package type. But the description against
    that ID is stored in a separate table and the each letter in the description is precious. The length of the description
    can be 40 to 4000..User is allowed to enter the description as a multi -record or a single record.
    In the report, pkg_type and qty is one repeating frame and description is another repeating frame.
    I have to print as many characters in the first page can enclose and the remaining characters i need to print after the detail part.
    As the description column can contain any no.of characters, i cannot handle it using no.of records...Because if i set to print
    first 5 records in the first page and the remaining in last page using serial no.column, then there is a posssibility that the when it reached the third record, whole space is consumed and
    report will get extended to second page, this should not happen...summary cannot be given in 2 pages...
    Am new to reports..Kindly help me to solve this problem..
    Regards
    Dora
    Edited by: Dora on Sep 30, 2009 8:50 AM

    Thanks Lalitk,
    As u said...I created a db procedure...becoz i want to make several this kind of report using same table.
    For the proc. I gave max.no.of characters as parameter and it returns the two strings ,first with max. no of characters (concatenating the records if it does not reach the max.no) for first page and the other with remainging of the record(s) as string for second page...
    Regards
    Dora.

  • Print Preview using crystal report in SAP B1 slow.

    Dear all,
    I face another problem. Print preview using crystal report in SAP B1 is very slow. Although i have create a query view in SQL server but it's still slow for my user. First time i create using table in crystal report. just drag the table. It's take more than 10 minutes. After that i move all the query to view in SQL server , it's take 1-2 minutes to print preview some time more.. But i think that it's still slow. Does any one know how to print preview fast. Just like in PLD.
    Thanks in advance
    bodhi86

    Hello,
    How do you answered to this question ?
    Malika
    Edited by: Malika Sanoune on May 13, 2011 1:48 PM

  • Print preview using crystal report in SAP B1 is very slow.

    Dear all,
    I face another problem. Print preview using crystal report in SAP B1 is very slow. Although i have create a layout in AR invoice form  and applying the print sequences (ie 4 prints). Does any one know how to print preview fast. Just like in PLD.
    Thanks in advance
    Kamlesh Naware

    Hi,
    Basically Crystal report run with SQL statement, I would suggest to do well performance tuning on SQL query / Store Procedure.
    Structure your query in DBA manner that will make some how faster such as use ( inner join, less condition,...)..
    also if it simple query then use Command in Crystal report rather store Procedure..that make some how Faster your report.
    Thanks
    Kevin
    Edited by: Kevin Shah on May 27, 2011 4:21 PM

Maybe you are looking for

  • How to create multiple rows in a child table from the multi select Lov

    Hi We have Departments and EmployDept and Persons tables and each employee can associate multiple departments and vice versa.While creating a Department page there should be a Multi Select LOV(values from Persons table) with search option for the Per

  • PL/SQL web service - how to use XML schema to define inputs/outputs?

    Hello, let us say I want to publish a PL/SQL web service. The package spec that I want to expose is: CREATE OR REPLACE PACKAGE myWebService AS   FUNCTION loadResults(     username   IN VARCHAR2,     password   IN VARCHAR2,     resultData IN XMLType)

  • Change of Tax Percentage in Existing Billing documents

    Hi, we have created 100's of billing documents with 11% to customers. Later we realized that we should charge them 0% instead of 11%. we have even released them to accounting however we did not receive the payment yet. I made changes so that any bill

  • Runtime error in Proxy

    Hi All, Am getting an error when running my interface from SPROXY (its an outbound interface). The error says " Runtime (Serialize) 866 (execute) (serialize)".  This error is coming after the complete execution of the interface.  I am passing the val

  • X6 Wlan problems

    Hi all, this is my first post since dumping windows mobile and seeing the light in nokia form. I have just got me new X6 and love it but for one issue. the Wifi- seems that if I connect and don't immediately start browsing the wifi closes with no pro