Printing Issues in Oracle

Hi,
We have custom PDF reports, where when we print it in Oracle the columns to the right getting chopped off, when I try to print the same copy to regular printer all the columns are getting printed on the same page.
When I print the report to a regular printer the page scaling option in the printer properties by default selects to Shrink to printable Area so that the report gets printed without any hiccups.
Where as in oracle, not sure what the Page scaling option is getting selected to, sys admin team informed to change the layout of the report which is quite not possible as we have 100's of custom reports.
Any help how to set up the page scaling option to Shrink to printable Area in oracle??
Thanks,
RGV

Don't tell so much.
Check the following link
1. PDF Reports in Unicode / Arabic & English | Oracle Community
2. OraFAQ Forum: Reports & Discoverer » Report in Arabic(pdf) (merged)
3. Arabic Report generated to text file giving Jun... | Oracle Community
Hope this helps
Hamid

Similar Messages

  • Arabic -English Report direct printing issues in Oracle 10g

    Hi,
    I am working on Oracle database 10g and application server 10g on windows 2008 platform in Arabic Environment with the following settings.
    -- Oracle database NLS_Characterset as AR8IS08859P6
    --Oracle Database registery NLS_LANG as ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256
    --Application Server registery NLS_LANG as ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256
    -- font subsetting in uifont.ali for PDF
    -- set Reports_BIDI_ALGORITHM = UNICODE
    Now I am facing an issue in connection with arabic reports:  When user enter the narration in the DATA ENTRY form like     ' AP600N حبر طابعة ريكو اسود   '      writing from right to left.
    it's storing in the database as '  حبر طابعة ريكو اسود AP600N '    
    Again when its querying in the form, it comes properly as it's written.
    Even its coming in the bitmap report in screen as it's written.   But when I am printing directly to printer in bitmap mode, its coming as its in the database.
    Is there any way to get the print as they wrote in the screen?
    Also the Character mode printing comes in left to right  in screen as well as in printer.
    Please help me...
    with thanks & regards,
    BJ

    Don't tell so much.
    Check the following link
    1. PDF Reports in Unicode / Arabic & English | Oracle Community
    2. OraFAQ Forum: Reports & Discoverer » Report in Arabic(pdf) (merged)
    3. Arabic Report generated to text file giving Jun... | Oracle Community
    Hope this helps
    Hamid

  • Printing issue in Oracle discoverer report

    Hi Experts,
    As usual many thanks for all your support in advance.
    We are facing an issue in printing the discoverer report.
    When we ran the discoverer report, we are getting the output, in a perfect way.
    But when we try to print the report, the report is printing with junk characters.
    We tried printing this report in multiple printers with multiple log in but of no luck.
    could you please help me on this
    Thanks in advnace.
    Naz

    Andreas Weiden You use thisI'm pretty sure i never used "Oracle Reports Remote Printing Utility 1.3.4" ;)
    In "WHEN-TIMER-EXPRIED"Why do you have to use a timer for this. I don't think its necessary.
    WEB.SHOW_DOCUMENT('c:\temp\'||:GLOBAL.PrintOutPut,'_blank') ;Web.SHOW_DOCUMENT shows a WEB-url and c:\temp\ definitely is none.
    I am trying to use "Oracle Reports Remote Printing Utility 1.3.4 (ORARRP)"And where do you use this? I don't find any call in your code..

  • Print Issue withing Oracle Apps

    Hi All,
    I have following inssue related XML Publisher PDF Report Print;
    1) Submit XML Publisher Report , View Output Print on Printer1.
    Print Comes Fine.
    2) Submit same XML Publisher Report, While Submiting Report I provide Printer1 and no of copies to be printed 1 and its Prints but it comes without any margin as i have defined in XML RTF document.
    Can you please help how can i resolve this?
    Thanks in advance
    Prashant Pathak

    Pl see if the troubleshooting steps in ML Notes 364547.1 and 412232.1 can help you diagnose the issue
    HTH
    Srini Chavali

  • ORARRP 1.3.4 Remort Printing Issue in Oracle Form 10g.

    Dear All;
    Andreas Weiden You use this so Please help me regarding this matter it is very urgent.
    I am trying to use "Oracle Reports Remote Printing Utility 1.3.4 (ORARRP)". Here is the code that I am using to call the report.
    In "WHEN-BUTTON-PRESSED"
    BEGIN
    vcFile := get_application_property(USERNAME)||TO_CHAR(SYSDATE,'YYYYMMDDHHMISS');
    vcFile := vcFile||'.rrpa';
    report_id:=FIND_REPORT_OBJECT('REP_TST');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,FILE);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'Y:\02\02\'||vcFile);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REP_APPSRV_FRHOME1');
    :GLOBAL.ReportHandle := RUN_REPORT_OBJECT(report_id);
    :GLOBAL.PrintOutPut := vcFile;
    hTimer := CREATE_TIMER('PRINTER_QUEUE','15000',REPEAT);
    END;
    In "WHEN-TIMER-EXPRIED"
    BEGIN
    vcTimerName := get_application_property(timer_name);
    IF vcTimerName ='PRINTER_QUEUE' THEN
    vcStatus := REPORT_OBJECT_STATUS(:GLOBAL.ReportHandle);
         IF vcStatus in ('RUNNING','OPENING_REPORT','ENQUEUED')THEN
    NULL;
         ELSIF vcStatus ='FINISHED' THEN
              WEB.SHOW_DOCUMENT('c:\temp\'||:GLOBAL.PrintOutPut,'_blank')     ;
         delete_timer(vcTimerName);
         ELSE
    MESSAGE('Report Has failed');MESSAGE('Report Has failed');
    delete_timer(vcTimerName);
    END IF;
    END IF;
    END;
    ButI have no Idea where I set the name of my reort like my report is placed at "Y:\02\02\SUPP_INFOR.REP" how can I call this report?
    Please tell me if anybody using this......... Thx. In advance.
    B/R;
    Zahid Hussain
    Edited by: zahid9999 on Jul 30, 2010 9:48 PM
    Edited by: zahid9999 on Jul 30, 2010 10:26 PM
    Edited by: zahid9999 on Jul 31, 2010 1:04 AM
    Edited by: zahid9999 on Aug 2, 2010 3:06 AM

    Andreas Weiden You use thisI'm pretty sure i never used "Oracle Reports Remote Printing Utility 1.3.4" ;)
    In "WHEN-TIMER-EXPRIED"Why do you have to use a timer for this. I don't think its necessary.
    WEB.SHOW_DOCUMENT('c:\temp\'||:GLOBAL.PrintOutPut,'_blank') ;Web.SHOW_DOCUMENT shows a WEB-url and c:\temp\ definitely is none.
    I am trying to use "Oracle Reports Remote Printing Utility 1.3.4 (ORARRP)"And where do you use this? I don't find any call in your code..

  • Oracle Reports Printing issue

    I have multiple printing issues with Oracle Reports developed in 10g. Please help me to resolve the issue.
    1. Even though i set ORIENTATION to landscape, it is printing Portrait .
    I have tried the below options
    1. I SET ORIENTATION AS landscape Under Data Model, System Parameters
    2. I have tried to pass ORIENTATION=landscape from the Keymap File
    3. I have tried to set ORIENTATION=landscape Under Paper layout Main,Header and Trailer Sections.
    2. Always the report is trying to fit in a single page (Width wise) which is annoying the user. I want to set Scaling instead of fit to a single page. How will i achieve this?
    i was trying to display the reports in SPREADSHEET Format.
    Thanks for all your Help.

    Hello Chris90909,
    switch width an height properties as Inol mentioned.
    http://nycapex.blogspot.com/2010/03/landscape.html
    If you have any question about the issue, let us know.
    Don't forget to mark Correct or Helpful accordingly.

  • Deadlock issue in Oracle 10g Partitioned Tables

    Hi ALL,
    I am facing an issue of Deadlock while inserting data into a partitioned table.
    I get an error "ORA-00600: Deadlock detected". when i see the trace files, following lines are appearing in them:
    "Single resource deadlock: blocking enqueue which blocks itself".
    Here is the detail of my test case:
    1. I have a list-partitioned table, with partitioning defined on some business codes.
    2. I have a query that merges data into partitioned table (actually compares unique keys between temporary table and partitioned table and then issue an insert if keys not matched, no update part).
    3. The temporary table contains transactional data against many business codes.
    3. when calling the above query from multiple (PL/SQL) sessions, i observe that when we merge data in same partition (from different sessions) than deadlock issue occurs, otherwise it is OK.
    4. Note that all sessions are executed at same time. Also note that Commit is called after each session is completed. Each session contains 2-3 more queries after the mentioned merge statement.
    Is there an issue with oracle merge/insert on same partition (from different sessions)? What is the locking mechanism for this particular case (partitioned tables)?
    My oracle version is Oracle 10g (10.2.0.4). Kindly advice.
    Thanks,
    QQ.

    Could you print the deadlock tree so we can see the type and mode of the locking. (Please use the 'code' tags - see FAQ at top right of screen - to showthe output in fixed font). can you list any SQL operated by this session that gets reported in the trace file.
    Does the table reference itself in a foreign key.
    Is this table involved in any referential integrity constraints.
    Do you have a global primary key index, or a local primary key index ?
    Are there any triggers on the table - if so do they contain autonomous transactions.
    At present the only though that springs to mind is that the merge command has to lock the target table to do the insert/update, but it also has to lock any child table. The mode of the child lock depends on whether it has a suitable index or not, and whether the child table IS also the parent table. If you have two merges to the same partition one partition may get its locks, and the other partition may be in a state where it can't get one of the locks because it's wait for the other. (This shouldn't be a self-deadlock, though, but the scenario might be heading in the right direction for a self-deadlock).
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    "The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge." (Stephen Hawking)

  • Printing Issues with HP OfficeJet 100 and Windows 8.1

    We use HP OfficeJet 100 mobile printers and have a printing issue.When we print the printer acts as if it is going to print and then prints one blank page.Printer will not print even though it is showing as default printer.Printer will just stop printing in the middle of a document, even in the middle of printing out a page. We are printing via the USB cableWe are using Windows 8.1We are connecting to laptopsWe have been using the HP mobile range of printers since 2004 and have only experienced these issues since we moved the laptops onto Windows 8/8.1 We have:Uninstalled and reinstalled the printer drivers – this fixed this issue for a short while and then it reappeared againCalled HP support and they directed us to the driver support page which had the latest print drivers, uninstalled and reinstalled drivers with them on the phone. This initially fixed the problem and then it returned a few days laterAfter trawling the support forums found directions to change the print processor to “WinPrint” – No effect as the processor was already on this settingDownloaded the HP diagnostic tool – HP Print and Scan Doctor – didn’t fix anything Any further help would be much appreciated.

    Hello there Lawrence, Welcome to the Forums! I hope you enjoy your experience
    I noticed your post about the troubles you are running into when you attempt to install your OJ 6100 printer on your Windows 8.1 laptop. I read all of your attempts and seen you have tried several methods to try and get the installation to complete successfully.
    I would like to make some suggestions that may help. Let me know how it goes!
    1. Check that Internet Explorer pop-up blockers are turned off before downloading the installer
    Internet Explorer Pop-up Blocker: How do I turn off Pop-up Blocker?
    Try to install
    2. If you're running McAfee Live Safe or any other firewall, please temporarily disable the "real time scanning".
    How to disable realtime scans
    Try the install
    3. Go to the start screen (you may also press the windows key + R to open the run box) and type %WINDIR% this should show the windows folder.
    Click on the folder and scroll until you see files. Look for a filed named "HPWINS*.DAT" (the * is for a number that varies) remove this file and try the installation.
    Try the install
    Enjoy your Monday!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • HP ENVY 100 D410 Printing issues...

    I have an HP ENVY 100 that has recently started having printing issues.  We recently upgraded to Mountain Lion and had no problems in the upgrade nor have we had any other software that we've changed.  The problem seems to be somewhat random and the results are always the same.  When commanded to print the printer acts as if it is running out of ink and then distorts the fonts creating vertical lines on the page and skipping rows creating what almost looks like a bar code. It's most peculiar and the only way I can find to solve the issue is to completely restart both my system and the printer.  Thinking that I had a driver issue on my Mac I used the utility on the printer to update drivers and none were found.  To insure that the problems wasn't isolated to just my machine I tried our laptop as well and it seems to have the same problem.  Has anyone had a similar problem?

    Hi Talon,
    That more liekly related to the software indeed, I would suggest trying the following steps:
    Reset the printing system as listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01371980
    Open the Applications folder, then Hewlett-Packard and then open the Device Utilities folder, launch the HP Setup Asisistant and follow the steps to reconfigure the device.
    If there is no Hewlett-Packard folder simply re-add the printer by clicking the plus button under Print & Scan.
    Now try printing and follow for any difference.
    If the same persists uninstall any HP Software by following the HP Uninstaller under the Hewlett-Packard folder.
    If there is no Hewlett-Packard folder follow the steps listed under Mac OS X 10.6, 10.7, and 10.8 > I used Apple Software Updates to install the product software below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02440673&tmp_task=useCatego ry&cc=us&dlc=en&lang=en&lc=en&product=5157536#N1305
    Download and isntall the latest Lion Software below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-97934-2 &cc=us&dlc=en&lc=en&os=219&product=4073738&sw_lang=
    Once completing the installation click the Apple icon and install any available Software Update.
    Shlomi

  • New airport extreme and printer issues

    OK here is the deal
    I have the new airport and a hp psc 750 printer. I have a new macbook which can not print on this printer. It will recognize it thru bonjour but will not install the driver - the odd thing is that I have a pc connected directly and a windows based wireless laptop which both are able to print via this airport. I also have an external hard drive that is connected to the airport. All of the computers are able access this drive. So all appears in order except for the macbook-printer issue. I contacted tech support and they claimed driver issue. Anyone have any ideas - I have updated the most recent drivers for this computer and I was able to install this printer via a usb connection. Thanks

    There have been a few posts about issues with HP printers working or not working as the case may be through the extreme. I can't remember what they say, but a search for HP in this forum may well help you.
    Sorry to be so vague, just thought it might be a start for you.

  • Performance issues with Oracle EE 9.2.0.4 and RedHat 2.1

    Hello,
    I am having some serious performance issues with Oracle Enterprise Edition 9.2.0.4 and RedHat Linux 2.1. The processor goes berserk at 100% for long (some 5 min.) periods of time, and all the ram memory gets used.
    Some environment characteristics:
    Machine: Intel Pentium IV 2.0GHz with 1GB of RAM.
    OS: RedHat Linux 2.1 Enterprise.
    Oracle: Oracle Enterprise Edition 9.2.0.4
    Application: We have a small web-application with 10 users (for now) and very basic queries (all in stored procedures). Also we use the latest version of ODP.NET with default connection settings (some low pooling, etc).
    Does anyone know what could be going on?
    Is anybody else having this similar behavior?
    We change from SQL-Server so we are not the world expert on the matter. But we want a reliable system nonetheless.
    Please help us out, gives some tips, tricks, or guides…
    Thanks to all,
    Frank

    Thank you very much and sorry I couldn’t write sooner. It seems that the administrator doesn’t see the kswap going on so much, so I don’t really know what is going on.
    We are looking at some queries and some indexing but this is nuts, if I had some poor queries, which we don’t really, the server would show pick right?
    But he goes crazy and has two oracle processes taking all the resources. There seems to be little swapping going on.
    Son now what? They are all ready talking about MS-SQL please help me out here, this is crazy!!!
    We have, may be the most powerful combinations here. What is oracle doing?
    We even kill the Working Process of the IIS and have no one do anything with the database and still dose two processes going on.
    Can some one help me?
    Thanks,
    Frank

  • Printing issue

    I just replaced my b/w cartridge which was working for about 10 copies and now trying to print a colored copy and while the color print is fine, the black ink is coming out blurry/smudged.     The screen indicates "Print cartridge problem  (Black) Refer to device documntatnion to troubleshoot"   I took out the cartridge, shook it, put it back in - no luck - help! Thanks

    Hi @LYNNHAAG , and welcome to the HP Forums!
    I see you're experiencing print issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Need help diagnosing cause of printing issue w/ image distortion

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Layout issue in Oracle rdf

    Hi Experts,
    I am facing a strange issue in oracle rdf reports.
    Requesting an assistance from you.
    I have a report which displays the vendor information.
    For all the vendors the layout is working fine for me, but for one particular vendor the vendor name is splitting into 2 lines as follows.
    EAD - Empresa de Arquivo de
    Documentação, SA
    But it is one name as 'EAD - Empresa de Arquivo de Documentação, SA'.
    Please help me on this. how to display this as a single value.
    Thanks,
    Zaheer.

    This is probably because the field is not wide enough. Check the horizontal elasticity property of this field (and possibly the frames around it).

Maybe you are looking for