Landscape PDF Report Print Problem....?

Dear All,
I have campiled 6i report (Landscape PDF) in Report10g and successfully deploy on web through OAS 10g forms and report services.
When we run this report on web it gives perfect landscape preview but it always prints as Portrait.
Please guide us to get Landscape print.
Thanks
Rana

Yes I did. We don't want this because some of our reports direclty goes to printer.
So it wiil chang the format of thos reports.
Kindly gives the proper solution so that it will not change other report's format.
Regards
Rana

Similar Messages

  • PDF Report prints Portrait Instead of Landscape

    Hi,
    We've created several PDF reports - some that print portrait and some landscape. For the portrait reports, they print fine both from Adobe Acrobat and directly from Oracle to the printer.
    When we try to print a Landscape report, it prints as Landscape from Acrobat, but portrait from Oracle. We followed note 421358.1 on Metalink on how to set up a new .cfg file , print style, and print driver for printing landscape reports, but now it's not printing at all when we assign the style to the report. We tried removing -pairs and -shrink from the cfg file (Oracle analyst suggetsion) and it's still not printing.
    Has anyone else had this much trouble trying to set up Landscape printing? We're using the acroread tool.
    Thanks,
    Suzanne

    If you've bounced your concurrent manager, double checked your command string and it still doesn't print right, what O/S do you have and what version of acroread do you have? There's a known bug in Adobe 7 on HP-UX where landscape reports will generate in landscape correctly(i.e. copies=0) but when sent directly to a printer, they come out portrait. It happened to us on our system.
    I tried -shrink and -landscape but it didn't work. Our user decided to just generate them and print them elsewhere.
    Evita
    Edited by: Evita on May 5, 2010 9:58 AM

  • PDF report printing is displaying '?' mark instead of thai characters

    Hi All,
    When trying to print PDF report I am getting question mark "?" for thai characters.
    In browser it is showing properly.The problem is happening only when I open pdf file.It is showing "?" mark instead of thai characters.
    I tried developing simple application in apex.oracle.com and I could reproduce the problem.It is showing "?" mark.
    Below is the link:
    http://apex.oracle.com/pls/otn/f?p=40394:1:1102169243398303
    username: thai
    paswd: thai123
    Thai characters are displaying properly outside Apex.So there is no problem with BI Publisher.
    I also tried the suggestion given in below link but no luck
    Re: Cannot print out Chinese , show as '?' in pdf report
    When I try the same thing in apex.oraclecorp.com it is working fine .I could clearly see thai characters.It is working fine
    My Adobe version is 8.x
    Is there any difference compared to apex.oraclecorp.com and apex.oracle.com settings for BI publisher?
    nls_language on server = 'THAI_THAILAND.TH8TISASCII and' 'PlSqlLanguage = AMERICAN_AMERICA.AL32UTF8'
    System Locale is set to thai and also the browser encoding set to thai windows
    Thanks in advance for your inputs.
    Kind Regards,
    Anwar

    Hello Mark,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • PDF reports generation problem from single oracle reports in 10G

    Hi All,
    i am generating 4 PDF reports from one Oracle reports in 10 G.
    i used RUN_REPORT_OBJECT built in 4 times with some different parameter list at a single time.
    some time it generates but some time it generate 2 or 3 out of 4.
    Can you anyone help me on this issue.
    Regards,
    Abhishek
    Code that i used for generation of report:
    on key-F0:
    DECLARE
    PL_ID PARAMLIST;
    PL_NAME VARCHAR2(10) := 'REP';
    USRNM VARCHAR2(50);
    pl_id2 paramlist;
    pl_name2 varchar2(10):= 'REP';
    usrnm2 varchar2(50);
    pl_id3 paramlist;
    pl_name3 varchar2(10):= 'REP';
    usrnm3 varchar2(50);
    pl_id4 paramlist;
    pl_name4 varchar2(10):= 'REP';
    usrnm4 varchar2(50);
    BEGIN
    USRNM := GET_APPLICATION_PROPERTY(USERNAME);
    PL_ID := GET_PARAMETER_LIST(PL_NAME);
    IF NOT ID_NULL(PL_ID) THEN
    DESTROY_PARAMETER_LIST(PL_ID);
    END IF;
    PL_ID := CREATE_PARAMETER_LIST(PL_NAME);
    IF ID_NULL(PL_ID) THEN
    MESSAGE('Error Creating Parameter List ');
    END IF;
    ADD_PARAMETER(PL_ID, 'P_PRNT_C_FAM_ID', TEXT_PARAMETER, :PRNT_C_FAM_ID);
    ADD_PARAMETER(PL_ID, 'P_NOTICE_DATE', TEXT_PARAMETER, TO_CHAR(:FRONT_END.NOTICE_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID, 'P_REDET_DATE', TEXT_PARAMETER, TO_CHAR(:FRONT_END.REDET_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID, 'USR_NM', TEXT_PARAMETER, USRNM);
    ADD_PARAMETER(PL_ID, 'SCHEDULE', TEXT_PARAMETER, :RUN_TIME);
    ADD_PARAMETER(PL_ID,'P_PRNT_PROV',TEXT_PARAMETER,'PRNT');
    ADD_PARAMETER(PL_ID, 'P_ENG_SP', TEXT_PARAMETER,'N');
    REDET_REPORT('506',PL_ID,'CT506_Parent_FamId_Eng'||To_Char(sysdate,'MMDDRRRR-HHMISS'));
    USRNM2 := GET_APPLICATION_PROPERTY(USERNAME);
    PL_ID2 := GET_PARAMETER_LIST(PL_NAME2);
    IF NOT ID_NULL(PL_ID2) THEN
    DESTROY_PARAMETER_LIST(PL_ID2);
    END IF;
    PL_ID2 := CREATE_PARAMETER_LIST(PL_NAME2);
    IF ID_NULL(PL_ID2) THEN
    MESSAGE('Error Creating Parameter List');
    END IF;
    ADD_PARAMETER(PL_ID2,'P_PRNT_C_FAM_ID',TEXT_PARAMETER,:PRNT_C_FAM_ID);
    ADD_PARAMETER(PL_ID2,'P_NOTICE_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.NOTICE_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID2,'P_REDET_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.REDET_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID2,'USR_NM',TEXT_PARAMETER,USRNM2);
    ADD_PARAMETER(PL_ID2,'SCHEDULE',TEXT_PARAMETER,:RUN_TIME);
    ADD_PARAMETER(PL_ID2,'P_PRNT_PROV',TEXT_PARAMETER,'PRNT');
    ADD_PARAMETER(PL_ID2,'P_ENG_SP',TEXT_PARAMETER,'Y');
    REDET_REPORT('506',PL_ID2,'CT506_Parent_FamId_Sp'||To_Char(sysdate,'MMDDRRRR-HHMISS'));
    USRNM3 := GET_APPLICATION_PROPERTY(USERNAME);
    PL_ID3 := GET_PARAMETER_LIST(PL_NAME3);
    IF NOT ID_NULL(PL_ID3) THEN
    DESTROY_PARAMETER_LIST(PL_ID3);
    END IF;
    PL_ID3 := CREATE_PARAMETER_LIST(PL_NAME3);
    IF ID_NULL(PL_ID3) THEN
    MESSAGE('Error Creating Parameter List');
    END IF;
    ADD_PARAMETER(PL_ID3,'P_PRNT_C_FAM_ID',TEXT_PARAMETER,:PRNT_C_FAM_ID);
    ADD_PARAMETER(PL_ID3,'P_NOTICE_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.NOTICE_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID3,'P_REDET_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.REDET_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID3,'USR_NM',TEXT_PARAMETER,USRNM3);
    ADD_PARAMETER(PL_ID3,'SCHEDULE',TEXT_PARAMETER,:RUN_TIME);
    ADD_PARAMETER(PL_ID3,'P_PRNT_PROV',TEXT_PARAMETER,'PROV');
    ADD_PARAMETER(PL_ID3,'P_ENG_SP',TEXT_PARAMETER,'N');
    REDET_REPORT('506',PL_ID3,'CT506_Prov_ProvId_Eng'||To_Char(sysdate,'MMDDRRRR-HHMISS'));
    USRNM4 := GET_APPLICATION_PROPERTY(USERNAME);
    PL_ID4 := GET_PARAMETER_LIST(PL_NAME4);
    IF NOT ID_NULL(PL_ID4) THEN
    DESTROY_PARAMETER_LIST(PL_ID4);
    END IF;
    PL_ID4 := CREATE_PARAMETER_LIST(PL_NAME4);
    IF ID_NULL(PL_ID4) THEN
    MESSAGE('Error Creating Parameter List');
    END IF;
    ADD_PARAMETER(PL_ID4,'P_PRNT_C_FAM_ID',TEXT_PARAMETER,:PRNT_C_FAM_ID);
    ADD_PARAMETER(PL_ID4,'P_NOTICE_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.NOTICE_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID4,'P_REDET_DATE',TEXT_PARAMETER,TO_CHAR(:FRONT_END.REDET_DATE,'MM/DD/RRRR'));
    ADD_PARAMETER(PL_ID4,'USR_NM',TEXT_PARAMETER,USRNM4);
    ADD_PARAMETER(PL_ID4,'SCHEDULE',TEXT_PARAMETER,:RUN_TIME);
    ADD_PARAMETER(PL_ID4,'P_PRNT_PROV',TEXT_PARAMETER,'PROV');
    ADD_PARAMETER(PL_ID4,'P_ENG_SP',TEXT_PARAMETER,'Y');
    REDET_REPORT('506',PL_ID4,'CT506_Prov_ProvId_Sp'||To_Char(sysdate,'MMDDRRRR-HHMISS'));
    Message('Notice Submitted For Printing');
    EXIT_FORM;
    END;
    Program unit:
    PROCEDURE REDET_REPORT(rep_name in Varchar2,plist in ParamList,rep_pdf_name in Varchar2)IS
    filecode varchar(2);
    Repnm varchar(30);
    report_id REPORT_OBJECT;
    report_id_hear REPORT_OBJECT;
    report_prop VARCHAR2(20);
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(200);
    bat_loc varchar2(200);
    time_slot varchar2(100);
    rep_folder_name varchar2(100):='Redet Notice for Packets Sent\';
    BEGIN
    Filecode := init.GetFileNmCode;
    if filecode 'FL' then
    if upper(substr(rep_name,1,2)) ='CC' then
    RepNm := filecode||substr(rep_name,3);
    else
    if rep_name != 'viewerr' then
    RepNm := filecode||rep_name;
    else
    RepNm := rep_name;
    end if;
    end if;
    end if;
    Begin
    begin
    report_id := find_report_object(RepNm);
    if error_code = '41219' then
    Message('Unable to execute : '|| RepNm);
    Raise FORM_TRIGGER_FAILURE;
    end if;
    end;
    set_report_object_property(report_id, REPORT_FILENAME, RepNm);
    set_report_object_property(report_id, REPORT_SERVER, init.Appl_Repserver);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_COMM_MODE,SYNCHRONOUS);
    set_report_object_property(report_id, REPORT_DESFORMAT,'PDF');
    select rprm_param_val||rep_folder_name||rep_pdf_name||'.pdf' into bat_loc from rprm where rprm_param_name = 'BAT_LOC';
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,FILE);
    SET_REPORT_OBJECT_PROPERTY(REPORT_ID,REPORT_DESNAME,'"'||bat_loc||'"');
    begin
    v_rep := RUN_REPORT_OBJECT(report_id,plist);
    exception when others then
    Message('Error While executing running reports ::'||error_code);
    end;
    end;
    END;

    Thanx Frank
    Well one solution is that i can decrease the length of my report name and the problem does not occur than.
    any ways thanx ..but where to get the patch from.
    Kindly provide me with the link if possible.
    Thanx,
    Qaiser Qayyum Malik.
    [email protected]

  • Drill-Down Report Printing Problem for Selection Parameters

    Dear Experts,
    Have tried to configure Drill-Down Report for Vendor Balances,
    Am having trouble when printing this drill-down report, Printing is coming OK but it comes with ALL selection parameters, for e.g, have entered 20 vendor codes for the balance display, system first prints all selection parameters and then it prints the output of vendor balances,
    User does not want selection Parameters to be printed with the Report Output. Please find below screenshot for the problem.
    Input Parameter Screen
    Report Output Screen
    Print Preview Screen (First Page - Selection Parameters)
    Your help is much appreciated, if anyone can guide me, how to switch off selection parameters from Print Output of Drill-Down Report
    Thanks
    Regards
    P

    Hello Ms. Preeti,
    Thanks for your reply, Have designed the report through FKI0 (FKI*)
    Have already looked these setting, but these are not helping really, PFB screenshot for settings am having in my system, if you have any idea which can avoid User Input Parameters from printing then it will be really great help
    Thanks for your help
    Kind Regards
    P

  • Crystal report printing problem in Malayalam

    Hi,
    I have a printing problem in Malayalam in crystal report.The viewer displays the correct font but the printed output displays the square boxes.I have installed the font.I am using Visual studio 2010 and crystal report 13.0 version.what could be the problem???
    please help me...!!!

    Hi priyashekar,
    I’m afraid that it is not the correct forum about this issue, since this forum is to discuss Visual C#. You can post your question in the
    Crystal report forum: http://scn.sap.com/community/crystal-reports-for-visual-studio/content?filterID=content~objecttype~objecttype[thread]
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Report printing problem

    hi folks,
    I am facing problem in printing report thru Browser, Here is the case
    we have generated a text file at server using d2k report which we are displaying to user thru our application we have used all formating characters in it , we are required to print on 'dot matrics printer' . When we print the report the resulting printout is not comming as per page size in d2k reports means one report page is get printed on multiple page. We are supposed to print many report of different size .
    can any body suggest me how to handle this problem?
    we r trying to set browser print page size as per report page setting.if any body know abt it . please let me know.
    Thanks for any help
    Regards
    Pravin

    Hi Pravin,
    Why don't you try sending the report print straight to the printer without saving into text.
    Then you can customized the page print using printer definition files.
    Ref - http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwrefex%7Cfiles%7Cprinting%7Cprt_a_packaged_printer_def%7Ehtm/
    Nilaksha.

  • PDF report font problem

    Dear all,
    All our reports are developed by reports builder 10g (under windows) and deployed on an Application Server 10g (on Linux).
    We had a problem with displaying the arabic letters, but this was solved by following the steps in the metalink doc no 726205.1 for generating arabic pdf reports on unix.
    Now, the problem is that the font used in the reports is ARIAL, but when the reports are displayed (in PDF format) the font is TAHOMA. This font conversion happens in both Arabic and English reportsl.
    I wonder how can I correct this behaviour.
    Thanks in advance for your time.
    Naglaa

    I am not sure if this may be the solution, but I think you need to use font-subsetting.
    Please have a look at the following documents:
    Generating a Unicode PDF File - 11g Release 1 (11.1.1)
    Building a Report with Multibyte Characters for PDF Output - 11g Release 1 (11.1.1)
    Regards
    Markus

  • Does creating Excel,Word,PDF reports & printing in Apex need licensing ?

    I am new to this Apex 4.0
    I have installed the Apex 4.0 with Oracle 10g database.
    Now using Apex if I create any web application, and develop some reports in the web application.
    1) Now to do the printing of the reports in Excel,Word,PDF does Apex need some other components to be installed ?
    2) Does those components needs licensing ? or are they free like Apex 4.0 ?

    Hi,
    Yes you need other components
    http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    Some of solutions need license, like BI Publisher.
    There is also free solutions using e.g. Cocoon, Jasper reports ...
    http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html
    http://www.poveravoce.net/blog/?p=85
    http://ubuntuforums.org/showthread.php?t=1004742
    http://daust.blogspot.com/2010/09/jasper-reports-integration-v1100.html
    ANNOUNCE:JAPEX Open Source PDF reporting & Blob Download/Flash upload
    Regards,
    Jari

  • SQL Report - PDF Report Printing. How to show one row per page?

    Hello
    I have successfully created a simple SQL Report.
    Than I enabled Report Printing to PDF (default Report Layout).
    Export to PDF is working good by default.
    Now I want to see one report row per one PDF page. Is it possible?
    How I can change the amount of rows per PDF page using default report layout?
    I tried to create a User Layout with MSWord Plugin. it's quite suitable for data forms.
    But I still did not find a way around for my question.

    I would create an User Layout (.rtf) with MSWord. Load your XML data and use the table wizzard to put the fields in your document.
    Put this code after your last field and before the 'E' (= <?end for-each?> tag):
    <?split-by-page-break:?>

  • Report print problems

    we are working on a couple of reports that are giving us problems printing. on the first we are getting multiple records that are the same this report prints fine ,but when i add the distinct keyword to the query the report comes up blank on the web. in the client/server environment the report prints the expected results. the second report is simply passed one parameter and i want to print that parameter as a barcode. i can also get this report to run in client/server but not on the web. these reports produce no errors just a blank report. we have other reports running fine but these two are driving me crazy. is there anything i should look for.
    null

    Hi nrp,
    This seems to be more of a Windows error but it could be related to how LabVIEW is trying to communicate with IE too. I would recommend that you try the official example and see what happens. There is a VI in the Example Finder called HTML Report. It shows you how to correctly create a HTML report. There is also an example by the name of PrintControlReport.vi. This shows how you can then print any report that you’ve created. The combination of the two should give you what you need.
    Hope this helps,
    Regards,
    Mahdieh G
    Applications Engineer
    National Instruments UK&Ireland

  • PDF report Printing from Portal

    Hi BI Gurues
    I am new in BI. i want to know can i take a Print of BI PDF Report from SAP Enterprise Portal. If Yes then pls send me the steps for that.
    Helpful answer rewardwd with high points
    Regards
    Sumit Patel

    Hi,
    Chk this:
    /people/prakash.darji/blog/2006/10/29/tips-tricks-when-printing-to-pdf-in-sap-netweaver-2004s-bi
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c8/4adf7ba13c4ac1b4600d4df15f8b84/frameset.htm

  • PDF format printing problem... (complex 6i reports conversion to 10g)

    Hi All,
    I hope somebody has solved this problem and could give me a hint. We have a lot of complex reports in 6i (client\server) and PDF format is the only option for us in 10g, I believe.
    The previews of the report in 6i and 10g (PDF format) are very similar. When we send the report to the printer from 6i preview, the printout also looks the same as in the preview (with about 3mm sides margin), but when we print a PDF version of
    the report with the default settings for Acrobat Reader, the printout gets huge
    margins and it is absolutely unacceptable for our company. When we change “Page Scaling:” to “None” in Acrobat Reader printing settings, some information of the report doesn’t get printed on the paper (being cut off). This report has a landscape orientation and a legal paper size and these settings are also setup in the printer driver as default (for Oracle PDF writer). The testing was done on the developer workstation with local OC4J and a local report server (10g iDS).
    I also tried to generate this report into PDF file by Oracle 6i Reports (client-server). Same problem. In Acrobat in looks fine, but in Acrobat preview, it only looks OK
    when "Page Scaling:” is set to “None”, however, when it gets printed the report
    data is being cut off (left and top parts). If "Page Scaling" is set to "Fit to
    Printable Area" (default), the report on paper gets resized with huge margins.
    I hope it is not an Acrobat Reader v8 problem.
    Thank you

    Hi,
    Was it a character mode report? While converting character mode reports to bitmap reports you have some layout problems. You might be facing similar issue it seems.
    And there are many other formats supported by Reports 10g, not only pdf.
    Br,
    Gouri Sankar

  • Report printing problem in Oracle Report 10g

    Hi group,
    I have one report which I am callinng from form. Out put is comming directly in PDF format, While taking printout on EPSON Printer allignment is not comming properly.
    But If i convert in to text format and print from MS-DOS prompt on same printer it is comming properly.
    Now want to print same in report builder directly in first way. whole environment is on Oracle AS and server is LINUX and client machine is windows
    Please revert back, It can be a great help for me.
    Thanks & Regards,
    Narendra.

    you can solve this problem by using oracle remote printing utility(orarrp)
    Nizhad
    Software Engineer,
    Accel Frontline Limited,
    Kochi.

  • Acrobat 9 mixed orientation pdf file print problem

    I have a pdf file with 10 pages or so.  The pages change from landscape to portrait every so often.  When I tell it to print, the file will only print until the orientation changes, then it will quit.  Is there a way to get the file to print completely?
    Message was edited by: mac-inslaw

    Sounds like a bug to me. Please report it: http://www.adobe.com/support/feature.html
    George

Maybe you are looking for