Report size problem

Hi....
I have a report of width 5 inch and height 4 inch.I send that report directly to the printer.But the printer didnt stop after the 4 inch,it continue the 11 inch paper.After the paper is complete then the printer is stop.But i want to stop the printer just after 4 inch print is complete.
Is it possible?
Regards
KSI

Hi....
I tried all that what u mention here.But still the problem is not solved.What is the way to do that?
KSI

Similar Messages

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • What is report size limit?

    I'm using Oracle Dev Suite 10g, can anyone tell me what is the report size limit for Oracle report?
    Also, if the file is generated in ASCII format, what is the maximum length of :
    1. A column
    2. A row
    Thank you in advance.
    Siak Teng

    Hi,
    I hope you can send 2MB ,if your getting any error try to increase rows in your instanceconfig.xml file kindly do the below things
    You need to increase the size and need to include one tag in instanceconfig.xml to increase the size and restart the presentation services.
    by default delivers will send only 250 records.
    take a original backup and the do it
    insert the following code into instanceconfig.xml.
    <Views>
    <Table> <DefaultRowsDisplayedInDelivery>100000</Defau ltRowsDisplayedInDelivery>
    </Table>
    </Views>
    restart all your services.
    for more refer
    http://oraclebizint.wordpress.com/2007/12/17/oracle-bi-ee-101332-calling-java-scripts-and-java-classes-from-ibots/
    Hope this solves the problem...
    THanks
    Deva

  • Image quality and report size

    Hello,
    I have a problem in the export to PDF document. I use CR 10.2 with Visual Studio 2005 in a web application.
    My problem is that I have a report of photographies, in wich I need an aceptable image quality. I don´t show the report in an report viewer, I create the report document and export it to PDF sending the memorystram in the http reponse.
    Firstly I see that the PDF document image quality was so bad. Then I checked the report property "Retain original color depth", and the image quality was good, but the PDF size was too big, two photographies of about 2MB(each one) generates a PDF file of about 20MB size.
    I need to send the pdf files to the clients via email, but the files are so big, and if the cllient inserts 10 photographies, the report size would be of about 100MB. Is there any wallkaround to this issue?. Is there this issue fixed in crystal reports XI?
    Best regards

    See [this|Crystal to PDF; thread. As unsatisfactory as the answer may be, it is what it is...
    I believe R&D is looking at this issue, but as an enhancement for a future release of CR.
    Ludek

  • HT1933 I don't see the problem menu I just keep getting this article link when I click "report a problem" next to the offending item in itunes purchase history. What gives?!

    When I try to report a problem on one of my purchase videos, I keep getting this link: http://www.apple.com/support/itunes/#video_purchases
    The article says I should see problem menu from which to choose my specific issue, but that is not happening.
    I'm stuck in a loop of bad service, what's up?

    You're right that the documentation says "for best results select the entire eye, not just the pupil". And then it goes on to talk about pupil size. The point I'm making is (1) you don't get "better" results ... you get an error if you just select the pupil; and (2) software systems that are smart enough to detect a user error and simply "beep" and "beep" could and should in fact be smart enough to offer some sort of unobtrusive help message. The red-eye tool worked fine, I'm commenting on Adobe's not-very-useful error beep. I read the instructions several times, but I missed the point. When I used the tool, the default (?) shape of the tool was, well circular ... like a pupil. It seemed very natural to orient this circle with the pupil of the eye. Not a big deal...just a suggestion for a human factors improvement.

  • Regarding Safari cookie size problem (RFC 2109)

    Latest Safari versions do not comply with RFC 2109 regarding cookies size.
    RFC 2109 6.3  Implementation Limits
       Practical user agent implementations have limits on the number and
       size of cookies that they can store.  In general, user agents' cookie
       support should have no fixed limits.  They should strive to store as
       many frequently-used cookies as possible.  Furthermore, general-use
    user agents should provide each of the following minimum capabilities
       individually, although not necessarily simultaneously:
    * at least 300 cookies
    * at least 4096 bytes per cookie (as measured by the size of the
            characters that comprise the cookie non-terminal in the syntax
            description of the Set-Cookie header)
    * at least 20 cookies per unique host or domain name
    User agents created for specific purposes or for limited-capacity
       devices should provide at least 20 cookies of 4096 bytes, to ensure
       that the user can interact with a session-based origin server.
    Latest Safari violates this RFC and has 4 KB limit on total size of all cookies for each domain.
    It causes severe problems with many Web Applications including Web Applications which use Microsoft SAML2 federated security.
    Safari must support up to 20 cookies per domain and each cookie must be at least 4096 bytes long.
    Where can I get a fix fro Safari.
    This was tested with Safari for MS Windows, but people reported same problem for many other platforms.

    You can provide feedback to Apple here >  Apple - Safari - Feedback

  • Dear Apple Support,  Good day to you. This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..  After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to resto

    Dear Apple Support,
    Good day to you.
    This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..
    After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to restore. So i connect it to itunes and wait to restore my ipad mini because it is not opening.
    After restoring it my ipad is now opening and it is like new that i need to set up again.
    I set up again until i reach the apple id and password.
    I put my below apple ID and password to unlock my ipad but it didn't work. The message i receive is "the apple ID cannot be used to unlock this Ipad.
    What will I do? Please help.
    Thank you
    Sent from my iPhone
    Begin forwarded message:
    From: Apple <[email protected]***>
    Date: October 9, 2013 at 11:53:53 PM GMT+4
    To: ****
    Subject: Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini 
    Dear Leslie J.,
    Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini named “Leslie Joye's iPad”.
    If you have not recently set up an iPad with your Apple ID, then you should change your Apple ID password. Learn more.
    Apple Support
    <Email Edited By Host>

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • How can I report a problem with downloading?

    I purchased a rather long album and halfway through downloading it gave me the message, "We could not complete your istore request. The network connection timed out. Error 8003." The only guidance it offers is to check the network connection. Nothing wrong there. Now I can get into the store and the balance of the album no longer shows up under downloads, just old stuff that really shouldn't even be there. I went into my account, and under purchase history clicked onto "Report a problem." All I got out of that is the same page minus the report a problem button.
    I'm frankly sick of this iphone and all the problems I've encountered with their upgrade failures, but this disappearig report a problem just tells me they really don't want to hear from you and no one is minding the store.
    Any other places to report a problem? Or advice onto how to get the missing songs?
    Thanks., I've just spent the last 1-1/2 hours on this board and going back and forth in the istore and am very frustrated.

    Click here and fill out the form for assistance.
    (35548)

  • HT5429 How long after you report a problem does it take for the fix to be picked up in maps?

    How long after you report a problem does it take for the fix to be picked up in maps? The street I live on is misspelled. It's shown as one word, but it should be two words. Maps cannot find the address when it is spelled correctly, so I have it purposely misspelled it as one word in my contacts, which helps for the most part, however it still tries to place my home on an entirely different street all together. Fortunately this new random street is at least close to where I live. When I used to spell my street correctly with two words, maps would try to send me to the next town over. So it kind of works, as long as I misspell my street, and ignore the fact that it is showing where I live to be a couple of streets down from where I actually live. I live in Connecticut - not in the most populated of areas, but not in the middle of nowhere either. Amazingly enough Google Maps will correctly find my address whether it's spelled with one words or two words. Google Maps also shows my apartment complex, which Apple Maps does not. I really wish Apple would just do a quick pass of the area to fix these issues. I’ve reported the problem several times, months ago. How long will it take for there to be a fix? I keep trying to use the Apple ecosystem, but Google is clearly the better solution for me.

    Apple does not do the GIS data for maps. That comes from 3rd party vendors like Tom Tom. I have read it takes some time to update map data. The only thing you can do is report it.
    Not to belittle your complaint, but on my end it is Apple that is clearly better. When looking at my house in Google, the satellite photo is more than 4 years old, and the Apple one is much newer. I can tell because of the condition of my home and the neighbor's. They had an above ground pool which was removed 4 years ago and it shows on the Google Map. I had remodeling and roof work done to my home that started 3 years ago and Apple's satellite view showed this work done, which took over a year to complete. I live in the middle of a block in a rural town. Both Apple and Google split the block into 100 parts and put my home close to the beginning of the block instead of where it actually sits. I've reported it to both Google and Apple and no one has changed. Just one of those things. But, keep your chin up, it will get corrected eventually.

  • Sub Report Performance problem

    Our current software configuration is Microsoft SQL Server 2008 R2 (10.0.2531.0) where our data is housed. Our User Interface is Microsoft Visual Studio 2008 (Visual Basic) and Microsoft .NET 3.5 SP1 platform.  We use Crystal Reports 2008 (12.0.0.683) to do our reporting.
    We upgraded from Crystal Reports XI and our reports are taking a long time to render?... Is there any evidence of other companies experiencing this trouble? Are there any degraded performance issues when moving from XI to 2008?
    In some cases we utilizing a small simple sub report.
    Any help appreciated. Thanks.

    Hi Billy,
    Subreports in detail sections are never a good idea. Example, you have 100 records returned int he main report and if that field is your subreport link it causes the subreport to run 100 times. Your database is being queried 101 times.
    Also, the default time out for database is typically 1 minute, could be you need to verify your report and database so CR can "clean up" any wrong pointers.
    It's always better to do the data collection server side if and when possible, after all that's what they do best.
    Not much detail to go on so I can't say if it's a report design problem other than the above or not. It could be also that .NET takes time to load all of the CR assemblies so depending on how you have your app configured depends on the delay. If you load a dummy report when your starts up to pre-load CR runtime then subsequent reports will be much faster.
    Also check off all of the Verify Database options, you may be telling CR to verify each time which on big databases can cause a delay also.
    Thank you
    Don

  • Interactive report performance problem over database link - Oracle Gateway

    Hello all;
    This is regarding a thread Interactive report performance problem over database link that was posted by Samo.
    The issue that I am facing is when I use Oracle function like (apex_item.check_box) the query slow down by 45 seconds.
    query like this: (due to sensitivity issue, I can not disclose real table name)
    SELECT apex_item.checkbox(1,b.col3)
    , a.col1
    , a.col2
    FROM table_one a
    , table_two b
    WHERE a.col3 = 12345
    AND a.col4 = 100
    AND b.col5 = a.col5
    table_one and table_two are remote tables (non-oracle) which are connected using Oracle Gateway.
    Now if I run above queries without apex_item.checkbox function the query return or response is less than a second but if I have apex_item.checkbox then the query run more than 30 seconds. I have resolved the issues by creating a collection but it’s not a good practice.
    I would like to get ideas from people how to resolve or speed-up the query?
    Any idea how to use sub-factoring for the above scenario? Or others method (creating view or materialized view are not an option).
    Thank you.
    Shaun S.

    Hi Shaun
    Okay, I have a million questions (could you tell me if both tables are from the same remote source, it looks like they're possibly not?), but let's just try some things first.
    By now you should understand the idea of what I termed 'sub-factoring' in a previous post. This is to do with using the WITH blah AS (SELECT... syntax. Now in most circumstances this 'materialises' the results of the inner select statement. This means that we 'get' the results then do something with them afterwards. It's a handy trick when dealing with remote sites as sometimes you want the remote database to do the work. The reason that I ask you to use the MATERIALIZE hint for testing is just to force this, in 99.99% of cases this can be removed later. Using the WITH statement is also handled differently to inline view like SELECT * FROM (SELECT... but the same result can be mimicked with a NO_MERGE hint.
    Looking at your case I would be interested to see what the explain plan and results would be for something like the following two statements (sorry - you're going have to check them, it's late!)
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two),
    sourceqry AS
    (SELECT  b.col3 x
           , a.col1 y
           , a.col2 z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5)
    SELECT apex_item.checkbox(1,x), y , z
    FROM sourceqry
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two)
    SELECT  apex_item.checkbox(1,x), y , z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5If the remote tables are at the same site, then you should have the same results. If they aren't you should get the same results but different to the original query.
    We aren't being told the real cardinality of the inners select here so the explain plan is distorted (this is normal for queries on remote and especially non-oracle sites). This hinders tuning normally but I don't think this is your problem at all. How many distinct values do you normally get of the column aliased 'x' and how many rows are normally returned in total? Also how are you testing response times, in APEX, SQL Developer, Toad SQLplus etc?
    Sorry for all the questions but it helps to answer the question, if I can.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

  • Report generation problems on the WinNT target machine

    I'm using report generation VI's to generate a standard report, mixed with text and graphs.
    In development mode (LV 6.0.2; Win-NT 4.0 SP6)there are no problems to print it. As soon as I make an application (application builder 6.0) and transfer it to the target machine (Win-NT 4.0 SP6; run time engine 6.0.2) I get an error -2147352567 unable to load picture..to Append front panel image to report.vi> If I delete the VI "Append front panel image to report.vi", I can print the text of my report without problems. Do you have any idea?

    I could fix the bug in the meantime. I had installed an older version of the Internet Explorer. When I updated the target PC to Internet Explorer Vers. 5.5, there are no problems anymore. I think it must be a problem of ActivX.

  • Report a problem form does not pop up

    My 5 year old bought $80 of stuff with an In App purchase in error yesterday. I tried to use the REport a  problem link. But all that pops up is a webpage:
    http://www.apple.com/ca/support/itunes/
    When I click 'Report a problem'
    How do I get it cancelled, the link does not work.

    I can confirm that report a problem sends me nowhere when I click it. Funny how when it comes to reporting that it doesn't work

  • Report a problem is not working on Windows 64 bit

    I just downloaded the latest 10.5.3.3 version of ITunes for 64 bit windows.  When I go to my purchase history, and click "Report a Problem" it just fires up the browser with the Apple Support page. http://www.apple.com/support/itunes/

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue with your purchase to the iTunes Store.
    Regards.

  • 'Report a Problem' is not working at all on my iMac. What do I do?

    I'm running Mac OS X Version 10.5.8, 3.06GHz Intel Core 2 Duo, etc...
    I have not been able to use the Problem Report interface for over a month.
    No matter what software the problem is with, no matter how strong my internet connection is, I get a dialog saying "Submission failed: Your report could not be submitted. Please try again later." For example, here's a screencap from 1 minute ago, after Spotify crashed.
    The same thing happens with Apple software as well as third-party. I have no idea what to do.
    Any help will be much appreciated.
    -S.

    StefanoBlack wrote:
    None of this is the point though. I don't care about reporting the problems, I wanna know why my computer is having errors rendering a very basic function impossible. Hard drive problem, data corruption, mystery Mac virus...my concern is that this is a symptom of something bigger.
    That's good to know, but keep in mind that your original posting complained solely about "Report a problem not working." That was the issue in the title and text of your original post. Several people responded with regards to that concern that you raised, and indicated that not being able to report back to Apple was not a serious concern, we don't think Apple is using that data much and may have turned off some of the reporting paths back to the company anyway. As Pondini said, if you are really concerned about some other problem, describe it so people here might address it. You mention "Hard drive problem, data corruption, mystery Mac virus ..." but provide no details except that the report back to Apple failed, about something. A report back to Apple failing to go through is not evidence of any of those things you mentioned, it's actually seen pretty often.

Maybe you are looking for

  • G/L code error in new Procurement Catalog

    Dear All, We are currently using SRM 4.0 version. Recently we had created a new catalog for a particular plant. The catalog was created sucessfully, also the new product categories were successfully pulled in SRM from R/3. We have also maintained the

  • How do I Open a Vi reference to and run a Polymorphic VI?

    In my case, I was trying to use a PolyVI Refnum to an instance of PID.vi. Even though I set the inputs for some of the controls, I have no output.the Invoke Method of 'Run VI' does not return an error. The Invoke Method of Ctrl Val. Get All does not

  • Update Illustrator display while ScriptUI window is showing

    Hello everyone! When I use a script that utilizes a UIScript window, AI appears to not reflect any visual changes the script makes until I .hide() or .close() the ScriptUI window. For example... if I have a script that draws circles when I hit a "go"

  • Exporting fireworks with button

    This may be a stupid question with a simple answer but bear with me. I have used Fireworks for many years but have not created a button rollover for a while and everything is different. I have Fireworks 7.0 (PC) I created a symbol for the button usin

  • Freigestellte Bilder von PS in PM

    Eigentlich möchte ich etwas ganz einfaches erledigen. Man nehme ein Bild mit 4 Ecken und zeichne eine z.b. Elipse darum, danach Auswahl umkehren und dann Delete. Somit sollten ja die Ecken gelöscht sein. Wie bringe ich nun dieses Bild in den Pagemake