Customization of Page size in report

Hi ,
I've a report which is having 60,000 records, i have created filter on showing only 5 records , when i click on show all it will take more space to show all the records, is there any customization of page size.
Appreciate your help.
Thanks,
Malli.

Hi,
1. An alternate is to restrict the records in the report to some range.
For Ex- Record_count <1000 (ie ., Some value).
In this case the report will always show only '1000' (in this case) of records.
2. Another solution is make a column and write the case statement as
case when rcount(Column_name)>1000 then
'Data Too Large. Apply filters'
end
And in the narrative view refer this column and place it in the report.
This narrative view will be visible whenever the record count exceeds the specified limit.
Hope this solves your problem. Please do award points if was helpful.
Regards,
MuRam

Similar Messages

  • Customize page size in report builder 6i layout.

    hi all ,
    I have developed a contact order report in report builder 6i ,which print its output on preprinted form (using DOT Matrix printer).
    for example if output is giving 3 orders ,each order and its details should be printed on each preprinted form.
    But when i given print from report builder 6i to dot matrix printer for every order one page is getting skipped .
    Even i adjusted wide and height as 35 and in printer file also adjusted but even it is skipping one page for every order .
    Even i adjusted wide 80 and height as 66 and it is skipping one page for every order.
    Kindly help me how to customize page size in report Builder 6i.
    Thanks for all in advance.

    Hi,
    Thanks for your reply. To get rid off that error, i did the following thing.
    I set the width as 132, and height as 62 of header, main body and trailer section in report builder.
    In Concurrent program window also, i set the column as 132 and rows as 62, and style as BAC.
    When i submit the report through concurrent program, it's working fine.
    Now i changed the width of the report to 200 and height to 66.
    Now, i want to change the style to A4 in concurrent program window. I don't have A4 style in list of values. I went to SYSTEM ADMINISTRATOR ---> INSTALL --> PRINTER --> TYPES. (Added A4 style to all types)
    Now i changed the columns to 200 and rows to 66 and style as A4.
    Now, it's showing below error.
    ERROR: APP-FND-00314:INVALID PRINTER.
    Again i selected BAC style and try to submit the program, it's giving different error.
    REP-1219: 'Body' has no size - length or width is zero.
    Could somebody help me to solve the issue. (Why it's giving above error after adding the A4 style to all types of printers) and why did i get the previous errors (REP-1212, Body fully not enclosed).
    Kindly help me, it's urgent.
    Thanks.

  • How We Can Change Page Size During Report Run Time

    Hello !
    How We Can Change Page Size During Report Run Time .
    How can we stop to change the column name when we amend a sql in report data model.
    Thanks !
    null

    hello sohail
    1. question - i'm afraid this cannot be done ... bit in report 6 and newer you have posibility to divide your report in 3 parts (former header, body, trailor) and each part can have diferent page siz, orientation , ...
    2. question - best is give each column in your statements in one report diferent alias. when you have to chnge something, alias will remain same ...
    try this: select 1 as fist_column, 1 as second_column from dual
    hope this helsp

  • Physical page size in reports 9i

    Greetings all.
    I am trying to create a report to print on multiform dot matrix epson printer. The height of the pre-printed form is 5.5".
    Is it possible in graphics (bitmap) mode to define a custom size? Or is it only possible to do the same in charater mode?
    I am able to do the settings on the printer control panel but the program settings always override and there is no custom size available in the page setup.
    Please help!!
    Thanks in advance.
    Mahesh

    Hi Mahesh
    You need to perform three task to design your report:
    1. In Reports property palette, change the Unit of
    dimesion. You can design the report in any of
    different units i.e characters (charcater and bitmap
    mode), points (bitmap), inches (bitmap) and centimeter.
    2. Set the Dimension. Report can have any length and any
    width. Because printer pages may be smaller or larger
    then report, the concept of physical pages versus
    logical pages are used in Reports. A logical page is
    the size of one page of your actual report. You need
    to set this ratio in reports properties.
    3. Set the required page size in Reports section
    properties. There are three sections: header,
    body/margin and Reports trailer.
    Hope this helps!
    Thanks
    The Oracle Reports Team

  • Page Size in reports 6i

    By default the page size in D2k reports (forms 6i) is 80 colum i.e. 8 1/2x11.
    How can i enlarge the page size..i.e. i want to make if fanfold 15x12 inch i.e. 132 colum .How do i go about it?
    please help.

    Hi Rajeev,
    Set the Unit of Measurement in the Report property inspector, and then set the Height and Width in the Section (Header, Main or Trailer) property inspector.
    Navneet.

  • PHYSICAL PAGE SIZE IN REPORT DESIGNER 2.5

    I have designed a report in character mode and it prints on a page size of 15" * 5.5". Only one record is printed on one page. I have set the page size at design time and looks fine. I have also defined page as 130 * 33 characters. But when you run the report and send it to printer, and the end of each record page feed skips one page. i.e. printer feeds 11" paper or 66 line paper. Now how can I make the printer to set page size 5.5" or 33 lines.
    Thank you.

    Check on your printer defintion file and modify it to match with your page size or print area. Hard work to modify from standard
    HP files to legal (242x66) and letter (88(?)x134) since nobody or vendor or Oracle
    provide (max)many columns and rows on letter and legal. I had to modify two special printer define files. I am glad to print exact layout to the HP printer without contact any vendor or Oracle. Also I dropped my special files to Window NT shared disk area and Later I am only person to run Oracle Report 2.5 output at my personal computer. Therefore you must work very hard to test, test, test and understand PCL language script for your need or this page size than standard letter or legal. Sam

  • Large page sizes on Solaris 9

    I am trying (and failing) to utilize large page sizes on a Solaris 9 machine.
    # uname -a
    SunOS machinename.lucent.com 5.9 Generic_112233-11 sun4u sparc SUNW,Sun-Blade-1000
    I am using as my reference "Supporting Multiple Page Sizes in the Solaris� Operating System" http://www.sun.com/blueprints/0304/817-6242.pdf
    and
    "Taming Your Emu to Improve Application Performance (February 2004)"
    http://www.sun.com/blueprints/0204/817-5489.pdf
    The machine claims it supports 4M page sizes:
    # pagesize -a
    8192
    65536
    524288
    4194304
    I've written a very simple program:
    main()
    int sz = 10*1024*1024;
    int x = (int)malloc(sz);
    print_info((void**)&x, 1);
    while (1) {
    int i = 0;
    while (i < (sz/sizeof(int))) {
    x[i++]++;
    I run it specifying a 4M heap size:
    # ppgsz -o heap=4M ./malloc_and_sleep
    address 0x21260 is backed by physical page 0x300f5260 of size 8192
    pmap also shows it has an 8K page:
    pmap -sx `pgrep malloc` | more
    10394: ./malloc_and_sleep
    Address Kbytes RSS Anon Locked Pgsz Mode Mapped File
    00010000 8 8 - - 8K r-x-- malloc_and_sleep
    00020000 8 8 8 - 8K rwx-- malloc_and_sleep
    00022000 3960 3960 3960 - 8K rwx-- [ heap ]
    00400000 6288 6288 6288 - 8K rwx-- [ heap ]
    (The last 2 lines above show about 10M of heap, with a pgsz of 8K.)
    I'm running this as root.
    In addition to the ppgsz approach, I have also tried using memcntl and mmap'ing ANON memory (and others). Memcntl gives an error for 2MB page sizes, but reports success with a 4MB page size - but still, pmap reports the memcntl'd memory as using an 8K page size.
    Here's the output from sysinfo:
    General Information
    Host Name is machinename.lucent.com
    Host Aliases is loghost
    Host Address(es) is xxxxxxxx
    Host ID is xxxxxxxxx
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Manufacturer is Sun (Sun Microsystems)
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    System Model is Blade 1000
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    ROM Version is OBP 4.10.11 2003/09/25 11:53
    Number of CPUs is 2
    CPU Type is sparc
    App Architecture is sparc
    Kernel Architecture is sun4u
    OS Name is SunOS
    OS Version is 5.9
    Kernel Version is SunOS Release 5.9 Version Generic_112233-11 [UNIX(R) System V Release 4.0]
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Kernel Information
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    SysConf Information
    Max combined size of argv[] and envp[] is 1048320
    Max processes allowed to any UID is 29995
    Clock ticks per second is 100
    Max simultaneous groups per user is 16
    Max open files per process is 256
    System memory page size is 8192
    Job control supported is TRUE
    Savid ids (seteuid()) supported is TRUE
    Version of POSIX.1 standard supported is 199506
    Version of the X/Open standard supported is 3
    Max log name is 8
    Max password length is 8
    Number of processors (CPUs) configured is 2
    Number of processors (CPUs) online is 2
    Total number of pages of physical memory is 262144
    Number of pages of physical memory not currently in use is 4368
    Max number of I/O operations in single list I/O call is 4096
    Max amount a process can decrease its async I/O priority level is 0
    Max number of timer expiration overruns is 2147483647
    Max number of open message queue descriptors per process is 32
    Max number of message priorities supported is 32
    Max number of realtime signals is 8
    Max number of semaphores per process is 2147483647
    Max value a semaphore may have is 2147483647
    Max number of queued signals per process is 32
    Max number of timers per process is 32
    Supports asyncronous I/O is TRUE
    Supports File Synchronization is TRUE
    Supports memory mapped files is TRUE
    Supports process memory locking is TRUE
    Supports range memory locking is TRUE
    Supports memory protection is TRUE
    Supports message passing is TRUE
    Supports process scheduling is TRUE
    Supports realtime signals is TRUE
    Supports semaphores is TRUE
    Supports shared memory objects is TRUE
    Supports syncronized I/O is TRUE
    Supports timers is TRUE
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Device Information
    SUNW,Sun-Blade-1000
    cpu0 is a "900 MHz SUNW,UltraSPARC-III+" CPU
    cpu1 is a "900 MHz SUNW,UltraSPARC-III+" CPU
    Does anyone have any idea as to what the problem might be?
    Thanks in advance.
    Mike

    I ran your program on Solaris 10 (yet to be released) and it works.
    Address Kbytes RSS Anon Locked Pgsz Mode Mapped File
    00010000 8 8 - - 8K r-x-- mm
    00020000 8 8 8 - 8K rwx-- mm
    00022000 3960 3960 3960 - 8K rwx-- [ heap ]
    00400000 8192 8192 8192 - 4M rwx-- [ heap ]
    I think you don't this patch for Solaris 9
    i386 114433-03
    sparc 113471-04
    Let me know if you encounter problem even after installing this patch.
    Saurabh Mishra

  • Dynamic Page Orientation in Reports 6i

    I have the following requirement. I need to print a letter that contains an attachment. The letter is two pages long and the page size letter and orientation is portrait. The attachment is legal but the orientation is landscape. So what it essentially means is that I need to change the orientation between pages. The letter is a separate repeating frame that the attachment, they are at the same level. I have set the main layout section to H=11 and W=8.5. When I layout the attachment in the layout editor and run the report I get error that the body is outside the frame etc... Meaning the size of the attachment is outside the page. I can define a different page size in the Trailer Section and it works fine if I am only printing one letter, If I enter parameters to print multiple letters, ie. from Customer A to C I get Letter A followed by letter B then Letter C then the three attachments. Problem is the letters go to a folding machine and need to be in order. I know I can do it by using text fields that contain the field name prefaced with and ampersand and then rotate the text field accordingly but this seems very cumbersome. Does anyone know of a better way to essentially create a single report that has different page orientations from page to page. Thanks in advance for any insights. Phil

    hello,
    in 6i we only support one page size per report. in 9i/10g we allow for different pagesize settings for the three sections of a report.
    thanks,
    ph.

  • Formatting webI issue: page size such as othe normal US sizes are missing.

    In a WebI report formatting "//page layout > page size", the report page size issue of other normal US sizes are missing. Such as: 11x17 inches. Is there a way we can include these page sizes?

    I face a somewhat similar issue. We have existing reports in Reporting Services - that can present the complete data in one page PDF and similar page creation in webi is just not possible. With sections and data seperation the whole report comes in 3 or 4 pages and no recourse to manipulate page size.
    I hope BO provides more enhancements to Webi - once adhoc users start creating reports they expect to see formatting that's traditionally present in canned reports

  • How to create a report with different page sizes

    Hi,
    I would like to create a report with different page sizes, it's possible to do it with diadem?
    When I change the layout parameters, changes afect to all sheets...
    Is there a way to change page size individually for each sheet?
    Thanks in advance.
    Marc

    Hi Marc,
    You can use the DocStart and DocEnd commands along with the PicPrint command to spool multiple print commands to the same output PDF file using the direct printer approach.  This should enable you to programmatically specify the page size differently for each sheet that you add to the print job.
    ' Print PDF Page by Page.VBS
    OPTION EXPLICIT
    Dim i, Path, OldPrintName
    Path = AutoActPath & "2D Stacked"
    Call DataDelAll
    Call DataFileLoad(Path & ".TDM")
    PDFFileName = Path & " Page by Page.pdf"
    IF FileExist(PDFFileName) THEN Call FileDelete(PDFFileName)
    OldPrintName = PrintName
    PrintName = "winspool,DIAdem PDF Export,LPT1:" ' Set to PDF printer
    PDFResolution = "72 DPI" ' "2400 DPI" , "default"
    PDFOptimization = TRUE
    PDFFontsEmbedded = FALSE
    PDFJPGCompressed = "high"
    PrintOrient = "landscape" ' orient paper
    Call PrintMaxScale("GRAPH") ' auto-max, see alternative margin setting variables below
    PrintLeftMarg = 0.181
    PrintTopMarg = 0.181
    PrintWidth = 10.67
    'PrintHeigth = 7 (read-only)
    Call WndShow("REPORT")
    Call DocStart ' Begin multi-page document/print job
    FOR i = 1 TO 4
    Call PicLoad(Path & ".TDR")
    Call GraphSheetNGet(1)
    Call GraphSheetRename(GraphSheetName, "Page " & i)
    Call PicUpdate
    Call PicPrint("WinPrint") ' Add a page to be printed
    NEXT ' i
    Call DocEnd ' End multi-page document/print job
    PrintName = OldPrintName
    Call ExtProgram(PDFFileName)
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Crystal report 9 com+ pdf page size

    Post Author: edp
    CA Forum: Exporting
    I build a dll with vb6 which indoor is present a report (pippo.dsr). The dll was insert in a COM+ application of our server. When i open the COM+ structure and the from an asp page i use the dll will be create a file .pdf perfectely. When i close the COM+ structure the same page asp will create a file .pdf with a strange page size (half of A4 format). Someone know the reason ? Regards

    Hi Alias,
    Please ensure that the  "reset page number after" is unmarked in the section expert on the grouping that this displaying in the report.
    Regards,
    Zack H.

  • How to allow domain users to customize  Adobe PDF  printer page size in Printer Preferences

    Hi
    I am able to customize  Adobe PDF  printer page size in Printer Preferences in admin login but not able to customize  Adobe PDF  printer page size in domian users login...
    can I have a solution to customize  Adobe PDF  printer page size in domin user login

    WOW! I was amazed to see that within minutes of posting my initial thread, I tried something that works.
    Apparently, the only way is will actually convert is if you select the regular Print option in the File tab. Then, change the Printer to Adobe PDF & the Paper Size to 11x17. It also worked for 36"x48" becuase I created a custom size named "Poster", so I changed the paper size to Poster & it worked!
    I hope this helps someone. I searched for an existing forum on this issue off & on for MONTHS before creating this thread. If anyone has any suggestions why the Adobe PDF tab /PDF Maker wouldn't work, I'd like to know.

  • How to allow domain users to customize page Size in Adobe PDF printer.

    Hi all,
    I am not able to customize page size in Adobe PDF printer when I logged in with Domain user login. But I am able to Customize PDF printer in admin Login.
    I need a solution to allow Domain users to customize page size for Adobe PDF printer.
    Looking for a solution ASAP
    Regards
    Nagesh

    Oops, I misread your question, so I edited my response.

  • Change report page size dynamically -URGENt

    Hi,
    I am developing one report for super market, and as per the req. of super market I want to control the page size during the runtime only.
    Pleas help me regarding this.
    Thanns in advance.
    Sharad

    You can't actually change the page size.
    But there are some things may help in this respect.
    In the report layout you can have some frames that include different layouts for the same data and print those frames conditionally.
    Or you may use two different .rdf for two different page sizes.

  • Setting the page size of a report to 5.5height and 8.5 width(size-inches)

    Hi,
    I want to set the report's page size on a dot matrix printer(for PAYSLIP) to 5.5 inches height * 8.5 inches width. But i'm not able to define my own size through the printer(custom size or user defined size). Some how i cannot see the custom size in the printer settings. Is there any way where i can define the size for the report. The report output is genrated to a pdf format. Will the settings remain same once generated to pdf format. Please let me know if there's any solution for this. Its very urgent.
    Thanx.
    Anu.

    Someone plaese reply to this.

Maybe you are looking for

  • Problems sending email using javax.mail.*

    I need to send an email from an application I am working on. I am using the features of the javax.mail package to do so. In looking at the code I am unsure why this is not working. This is my first time using this package so it might be something sil

  • OS X Maverick

    Somebody spent a whole lot of time and wasted a lot of money trying to improve a product that was working perfectly. OS 10.7.5 was not broke. Being neither, sex therapist, gynaecologist, preacher, veterinarian, psychiatrist, or obstetrician; I am sha

  • Discover OS language and architecture of Windows 7 using command prompt

    The problem: in a bat file a need make different think based on language an os architecture of windows 7 (are different setup program to be running). Something like this: IF OSLanguage = 1033 AND OSArchitecture == 32-bit DO IF OSLanguage == 1033 AND

  • Printing from ipad too large on p1102w

    All my printing from the IPad print out too large compared to the print from my Win7 PC. E.g. If I print an email from my WIn 7 PC to the HP P1102w result normal - 1 page. The same email printed from my Ipad to the P1102w prints a much larger font an

  • Dual screen issues!!

    Hi, I just bought a new display, Acer x193w 19inch. I set it as my primary display, having my macbook as secondary display. my menubar and dock appear fine on my external display, but the icons are hidden by an overlay (my desktop picture), which onl