Error:- Rep-1223 Invalid page size

while am trying to run the reports which is having 67 columns , throwing error in Oracle reports 10g i.e Rep-1223 Invalid page size...plz help
As am having 67 columns in a reports like below,
----(1)--,(47),---(2)-----,-----(3)---------,-(4)--,--(5)--,---(6)-------,---(7)------
,--(8)------,--(9)-----,------(10)---------,-(11)-,--(12)---,-(13)-,----(14)------,
----(15)---,---(16)--------,----(17)---------------,-------(18)--------,
--------(18)---------,------(19)------,---(10)-----,-----(21)--------,---(22)------,
----(22)-----,----(23)--------,-(24)-,--(25)----------,----(26)--------,
-------(27)--------,
--(28)--,-----(29)--,-(30)-,--(31)-,
--(32)--,---(33)----,-(34)-,--(35)--,
--(36)--,---(37)----,-(38)-,--(39)--,
--(40)--,---(41)----,-(42)-,--(43)--,
--(44)--,---(45)----,-(46)-,--(47)--,
-------(48)---------,--(49)-,-(50)-,----(51)------,----(52)-----,-----(53)------,
-(54)-,--(55)---,--(56)-,----(57)-----,-(58)-,-(59)-,---(60)----,-----(61)------,
-----(62)--------,---(63)----,-----(64)----,---(65)----,--(66)--,-----(67)----,
thanks,
prasadreddy.

Hi,
Did you set the Layout Model, header/Main/Trailer --> Width/Height and need to check format type, some case run in Character mode or Bitmap Mode.
Regards,

Similar Messages

  • Rep - 1223  (Invalid Page Size)/Urgent

    Hi,
    I has developed a report in character mode.Then i save the report.In order to have a precise alignment i then changed the design in character units property to Yes.After some time,while running the report it gave an error Rep - 1223 (Invalid Page Size).
    On seeing the property inspector for Paper layout for the Main Section,i saw that the width and height property increased to some very high level.On trying to reducing the width and height size ,it gave a message that unable to reduce it since the layout is not large enough to accomodate layout items.
    Even when i do not save the report the next time,the error somehow persists.
    This kind of error comes very occasionally when try to design character mode reports using design in character units property set to Yes.
    Kindly help me out.
    Regards
    Deepak

    Hi Deepak
    I suggest you apply the latest patch set and check if issue still exist. There are no known issues like this currently.
    Thanks
    Rohit

  • Reports error rep-1223

    I am using Developer suite 9i reports. In the running of one report, i am getting the message rep-1223 "Invalid page size". I do not know, how to see help on the error message. Even i have the old Reports developer 2.5, but in that also, i forgot how to see the error message. Could i get help on how to see the menu sequence help to see the error message.
    I hope, my quetion is clear. Please help in solving the doubt.
    Rgds.

    Hi,
    Did you set the Layout Model, header/Main/Trailer --> Width/Height and need to check format type, some case run in Character mode or Bitmap Mode.
    Regards,

  • Error Items-90122: "Invalid Executable Size " the size of your app's executable file exceeds the maximum allowed size of 80 MB ,

    Hi,
    I am getting "Invalid Executable Size" error when i am trying to upload my app Ipa to iTunes , the same app was uploaded before without this issue, can any one help me to get out of this and to upload my app to iTunes ,
    Any help greatly appreciated....:)
    Thanks in advance..
    Thanks,
    HariKrishnan

    No , still i didn't get any reasonable solution, ,

  • REP-1222: Invalid body size in report

    Hi All,
    I am trying to add two labels in margin.i am getting this error.Please help me to resolve this problem.
    Thanks
    Santhosh

    Hi..
    Please help me with this issue.
    It is very critical for me.

  • REP-0826: Invalid printer driver 'dflt' specified by parameter DESFORMA

    We are using Developer 6. We had .PS Reports that printed fine till yesterday. Since this morning, we are getting the following error:
    REP-0826: Invalid printer driver 'dflt' specified by parameter DESFORMAT.
    What could be wrong?

    Hi,
    restart the reports process.
    If this doesn´t help restart the whole machine including the whole operating system.
    We do relativly often have this problem that the Oracle Reports processes function a long time (over months and more) without problems and then suddenly something does not work anmymore.
    Simply restart the whole machine and in most cases everything will work again.
    regards

  • Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but

    Hi All,
    Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but got 817 bytes)
    Today I opened my working project in Jdeveloper 10.1.3 version and as I compile the project, it gives me this error in all Jsf - Jsp pages.
    The line that it shows the above error in my pages is follows.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    Any idea ? Till yesterday, I never got this error and all of sudden it started showing up.
    Your help appreciated.
    thanks,
    pp

    And just to add, nothing got checked out from repository (I mean CVS etc).
    I have this project and Jdev on my windows laptop. I just opened it and started getting this strange error. any idea ?

  • New preview function for iPad–error message "Multiple page sizes not supported"

    When I try to use the new preview function with my iPad I get the error message "Multiple page sizes within a layout are not supported". I have a page that is 768 x  1296. I would really like to preview this folio before publishing. Any suggestions?

    If you're trying to create an article that scrolls vertically, you can create a 768x1296 article in a 1024x768 folio, but you need to select a Smooth Scrolling option when you create or import the article, or in the Article Properties dialog box.

  • Java.util.zip.ZipException: invalid entry size error --  help required

    Hi all
    I am sure this error would have been posted many number of times, but I would really appreciate if someone could help me with my problem. I am working on reading data from a .zip file, which in it has ~5GB data. All I am performing is a read operation through the piece of code specified below. This code worked well for .zip files handling till ~2.5GB
    FileInputStream fis = new FileInputStream(filename);
    BufferedInputStream bis = new BufferedInputStream(fis);
    ZipInputStream zis = new ZipInputStream(bis);
    StreamTokenizer tok = new StreamTokenizer( zis );
    ZipEntry entry;
    while((entry = zis.getNextEntry()) != null)
    \\read from the zip file through the streamTokenizer
    I just print what I read through the program, on the console.
    But the error I get is
    java.util.zip.ZipException: invalid entry size (expected 4294967295 but got 2117536490 bytes)
    at java.util.zip.ZipInputStream.readEnd(Unknown Source)
    at java.util.zip.ZipInputStream.read(Unknown Source)
    at java.util.zip.InflaterInputStream.read(Unknown Source)
    at java.io.StreamTokenizer.read(Unknown Source)
    at java.io.StreamTokenizer.nextToken(Unknown Source)
    at ZipFileStreams.getMessages(ZipFileStreams.java:677)
    at ZipFileStreams.main(ZipFileStreams.java:814)
    Could anybody give me hints as to what am I missing and where am i going wrong. Any help would be appreciated.
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but

    Hi all!
    I'm getting this error when I try to execute my application in JDeveloper: Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but got 2845 bytes)
    This started to happen after I had checkout my application to CVSNT.
    Any help?
    P.S. I'm using JDeveloper 10.1.3 with CVSNT 2.5

    My cvswrappers file (CVSNT):
    *.cab -kb
    *.class -kb
    *.doc -kb
    *.dll -kb
    *.ear -kb
    *.exe -kb
    *.exp -kb
    *.fla -kb
    *.gif -kb
    *.gz -kb
    *.jar -kb
    *.jpg -kb
    *.jpeg -kb
    *.lib -kb
    *.msi -kb
    *.mso -kb
    *.pdf -kb
    *.pfw -kb
    *.png -kb
    *.ppt -kb
    *.sit -kb
    *.swf -kb
    *.tar -kb
    *.tlb -kb
    *.vsd -kb
    *.xls -kb
    *.war -kb
    *.wmz -kb
    *.zip -kb Via Tortoise client I can add and commit zip (jar) files in binary format and everything is OK.
    If I do that via Jdev, anybody who checkout that module from cvs have zip exception, because JDev didnt sent in binary format. How to setup that?
    Thanx
    Message was edited by:
    vpetreski

  • HP B8850 Page Size Error Printing from Aperture 2 (or iPhoto)

    I am trying to print on 13x19 (B+) size paper to an HP Photosmart Pro B8850 printer. I get this error when printing from Aperture --> "Page Size Error: Paper size selected in the print driver does not match the paper loaded in the printer IN tray."
    Aperture 2.1.2
    Mac OS X 10.5.6
    HP Photosmart Pro B8800 Series Print Driver 2.3.1
    I can set the paper size to 13x19 (B+) in the Aperture print dialog, but under the Print Settings button there is no option for paper size, only paper type. So apparently the size that the printer is expecting in the driver does not match the 13x19 that is loaded in the printer. I was able to verify this by leaving all print settings for 13x19 and loading an 8.5 x 11 sheet in the printer. It pulled the paper through and started printing, but the print was scaled to fit onto the 8.5 x 11!
    So in other words, the way I'm seeing it, even though I am setting the paper size for 13x19 in Aperture's print dialog, the printer thinks it's suppose to print on 8.5 x 11.
    To make matters worse, there is no Page Setup menu item in Aperture to set the paper size in the print driver directly. I would have assumed that the Aperture print dialog was "smart enough" to pass the page size parameter to the HP printer driver, but that is apparently not happening.
    I spoke with HP tech support and they were surprisingly helpful. With their help I was able to print on 13x19 paper with HP's bundled software package, but I had to export my file from Aperture and import it into HP's software. Now that's a good first step which assured me there is nothing wrong with the printer itself, but obviously I purchased Aperture to use it's more elegant and supposedly streamlined interface to make my prints.
    Has anyone had a similar problem? Any solutions? Suggestions? I have searched this forum, HP's support forum, DP Review, Google and not finding much. I can't believe I'm the only guy trying to print on 13 x 19 from Aperture using this printer. I suspect it's not printer specific though. Could be my system I guess. I plan on calling Apple Care depending on what type of response I get here.

    I don't know if this may help, but recently we had a discussion about problems with Aperture's custom paper size not working correctly:
    The solution was to define a paper size outside Aperture:
    In any application, for example Preview, try to print something and the print dialog comes up. At this point click on Paper size and choose Manage Custom Sizes. You can define a new paper size here. This new custom size will then appear when you go to Aperture print dialog under paper size. It solved my problems with custom paper sizes here, for some reason (a bug?) defining a custom paper size within Aperture itself did not work correctly for me.

  • Change page size and get error on Booklet. Why?! Only in CS6...

    Why when we are working with a material of many pages, and all pages have the same measure, and alter the size of each page (in File -> Document Setup), we can no longer generate booklets? I was tested in version CS5 and it worked perfectly in version CS6 gives error:
    "The active document uses multiple pages sizes. Booklet Print works only with documents That use consistent page size."
    I've checked all pages and it all have identical size between them.
    Take a test.
    Open a new file with multiple pages. Try to create a booklet. Will function properly. After this, go to File -> Size and change the page size of the pages. Now try to create a booklet. Will give error.
    I tested in a couple of macs...

    Well I am having this exact issue.
    I have seen many posts in other areas of this discussion and online elsewhere. As it goes, Adobe is going to get sued for this.
    I paid for a working feature of the software in CS6. Simply releasing a new version and forcing the user to pay for a fix to a problem in an old version is not lawful business. It's extorsion. They did not uphold their end of the bargain on the contract of me paying for a working product.
    The owness is on them now to fix the bugs in the current versions of broken software.

  • Incorrect Page Size or Orientation Error Detected in Live Preflight

    Wednesday, November 10, 2010 12:16:40 PM PST
    I am trying to prepare a newsletter created in Adobe InDesign to send to a Printer in Germany.  This is the first time I'm sending a document to press since moving to Germany last February and the first time since upgrading my computer and software to:
    MacBookPro: Model 5,3
    Adobe InDesign:  ver. 6.0.6
    Adobe Acrobat Pro:  ver. 9.4.0
    The standard paper size in Europe is "A4" , slightly larger than our "Letter" size. Document was set up an "A4" document size. A4 is also selected on the Print menu.
    Live Preflight shows "incorrect page size or orientation" and says:
    Required: 612 pt. x 792 pt.
    Current: 595.276 pt. x 841.89 pt.
    Fix: Choose File/ Document Setup to specified required page size.
    I tried changing the document setup to the "required" 612 x 792, and the document was squeezed into the smaller space, ruining the document formatting! I undid the damage and looked further for the incorrect preference setting.
    There is a wrong setting somewhere, but I can't find it.
    Distiller is rejecting the document and won't generate a PDF. The only other errors detected in Preflight were RGB color space issues.
    All settings in InDesign Preferences, Print Menu and PDF generator are set for the size A4, yet Preflight insists that the Document
    Size and Orientation are incorrect and suggests changing the size to 612 pt. x 792 pt.
    I also noted that when setting up the PDF, I did not check "Optimized for Fast Web Viewing," yet when I generated the PDF, it "Optimized for Fast Web Viewing." It seems that there is some preference somewhere that is overriding my selections. But where....?!
    I was able to generate a PDF from InDesign (without going through Distiller) and the printer was able to use the PDF.  I was taught to always use Distiller when submitting files to printers, and to "package" the files.  Is there some risk in sending files without using Distiller?
    In addition to the page size/orientation issue, Europe has different standards for color space and printers' ink also. If anyone could shed some light on how I should adapt to European standards, I would be grateful.
    I was disappointed that Adobe offered only paid support, although I purchased Adobe CS4 less than a year ago. For such an expensive
    product, I would think free support would be available for at a minimum one year.

    Yes, Preflight was looking for letter size and created a conflict with my page size/orientation selections in the document setup and print setup.
    No, this didn't resolve the problem keeping Distiller from making my PDF.
    Here is the message Distiller gave when it rejected the file:
    Distilling: 12_REVISTA_INFORMATIVA_07.indd
    Start Time: Saturday, November 13, 2010 at 6:36 PM
    Source: /Users/bethshaw/Desktop/DOEBRICH NEWSLETTER/12_DESIGN/12_REVISTA_INFORMATIVA_07.indd
    Destination: /Users/bethshaw/Desktop/DOEBRICH NEWSLETTER/12_DESIGN/12_REVISTA_INFORMATIVA_07.pdf
    Adobe PDF Settings: /Library/Application Support/Adobe/Adobe PDF/Settings/Standard.joboptions
    %%[ Error: undefined; OffendingCommand:   Ìıÿ FÂΩ1ÔÁ˛t∑ DOCUMENT p  ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Distill Time: 7 seconds (00:00:07)
    **** End of Job ****
    Does every criterion set in Preflight have to be fulfilled for Distiller to work?  How do I isolate the problem keeping the PDF from being created?

  • Custom PDF page size errors

    When printing to PDF to a custom size of 36x85 or 85x36 the adobe PDF writer doesnt do anything. THis happens from any program I try. If I Select a size of 82x36 the PDF creator with create the file. I can even print 92 x 92 with no issues, just not anything that is 36 x anything greater then 82 inches. This is being done in Windows 7 64 and I cant duplicate this issue 100% of the time in versions 9 and X standard on multiple machines.
    The interesting thing is that if i try to print a PDF from within Acrobat 9 or X, it will print 32 x 82 fine, but when printing 85x36 or anything 36 x 82 or greater, it gives me the following errors:
    "The document could not be printed"
    "There were no pages selected to print"
    So my question is, why cant i print to this size? Is there a ratio limitaiton to printing custom page sizes using the Adobe PDF printer?
    Any assistance anyone can give me with thsi would be very much appreciated.
    --Update--
    If I try this same size on a windows XP 32bit machine with Acrobat X Standard it works fine. Not sure what the issue is with Windows 7 64 and Acrobat 9/X in regards to custom page sizes.

    Not sure if you ever found a cause to this but I wanted to post my solution here because I've seen may people posting about the same issue and the solution/workaround that you came up with is the exact configuration that causes the  error for me.
    After looking through several forums, nothing worked. I'm running XP 32-bit with both Acrobat X Pro AcroReader X trying to plot to an HP DesignJet 800ps. I had never had any problems printing with Acrobat X until our IT dept. upgraded the print server from Win2003 server to 2008R2. I don't believe there were any new drivers installed for the plotter as it's an older model but the hardware/OS upgrade changed how we installed drivers. The technical details are beyond me.
    So suddenly, for whatever reason, I'm now getting this no pages selected error. After unsuccessfuly trying several solutions that others reported to work for them I was determined to figure out why it wouldn't work for me.
    What I found is probably just another in the handful of workarounds but I'm posting it here just in case it also works for you. In the print dialogue, click the Advanced (print setup) button. In the Output tab(?)/window(?)/area there is a check box default checked on for Use Maximum Available JPEG2000 Image Resolution. I uncheck this box. Back in the main print dialogue at the bottom right there is a Page Setup... button. In there I changed the page orientation to Landscape to match the orientation of my document. I had already specified this in the printer properties window, and in the main print dialogue it was set to Auto Portrait/Landscape (which oddly if I select just landscape it crowds the job to the top left of the page).
    Like I said, these were the only two things I changed and it worked so if you're still reading this hopefully it will solve your problem too.

  • Acrobat Pro V8.1.2 "Invalid Page Range" Error - Rotate Pages

    Hi,
    I have Adobe Acrobat Professional version 8.1.2. For the last couple of weeks every time I try to rotate a page in any direction I get the following error:
    "Invalid Page Range" (OK)
    I have tried every combination of options for amount of rotation and page range (all, selected, specify). No matter what I do I get the same message. I have tried this on several different documents both encrypted and unencrypted.
    Does anyone have any ideas?

    I know this is nearly 4 years late, and I realise this may not have been the cause with the original post, but for the sake of covering this issue for anyone who searches and lands on this page:  The most common cause for receiving this "invalid page range" error when attempting to rotate pages is becaue the option for "Even and Odd Pages," "Even Pages Only," or "Odd Pages Only" drop-down choices are inconsistent with the selection.  For example, if you're trying to rotate just page 1, but the selection "Even Pages Only" is slected, then you will receive this error.  You will find this option in the options window that appears when you click the Rotate command.
    Just my two cents after trying to remedy this over and over with users.
    Cheers!

Maybe you are looking for

  • GPS in Playbook.

    Does the playbook hardware support GPS capability ? Will an improved OS help the device identify coordinates in future ? Solved! Go to Solution.

  • My 8520 keeps stopping to sync

    Hi all, In the last one week or thereabout, my device, curve 8520 has kept on showing a small kind of stop clock at the centre of my screen in a 3 - 4 minute interval. Anytime this tiny clock comes up, it stays for like 30 seconds and freezes my devi

  • Why can't I access ebay

    I can't access ebay on my MAC. I've tried eliminating history, rebooting, etc. The command just sits there until finally Safari says it got no response from the site. I can access e-bay from another computer.

  • QM Sales Return Process

    Dear Friends, For return delivery inspection, I am using insp type 06. But the stock is not coming into unrestricted after I clear the lot. Is 06 insp type stock non relevant? Should I use 05? What is the difference between 05 and 06 insp types? Rega

  • "Plant to Site " - IS Retail

    Hi All We had set a retail system and all business processes are running fine. But still Retail system shows as "PLANT" instead of "SITE" , "MATERIAL GROUP" instead "MERCHANDISE CATEGORY" Is there some report we need to activate? , Plse advise us sui