Display report on the web in pdf format

I am attempting to display a report in pdf format where I have passed parameters to it and it doesn't work.
We are using Oracle Reports 6i.
If I use the following CGIcmd line
a: server=reports destype=cache desformat=HTML userid=test/test@db paramform=no %*
and the URL
http://sun9ias:7777/dev60cgi/rwcgi60?a+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
This report is displayed in HTML format.
For the following test I only changed the format from HTML to pdf.
The CGIcmd line became
b: server=reports destype=cache desformat=pdf userid=test/test@db paramform=no %*
and the URL
http://sun9ias:7777/dev60cgi/rwcgi60?b+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
In this instance there is no report but there is a 'broken image' icon displayed in the top left hand corner of the screen. There are no error messages.
This is the preferred method.
As a test I also tried allowing the parameterer form with both HTML and pdf reports.
The CGIcmd line was set to
ax: server=reports destype=cache desformat=HTML userid=test/test@db %* %P
and the URL
http://sun9ias:7777/dev60cgi/rwcgi60?ax+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
This displayed the parameter page and when you accept the parameters, the correct report is displayed in HTML format.
When I use the following CGIcmd line
bx: server=reports destype=cache desformat=pdf userid=test/test@db %* %P
and the URL
http://sun9ias:7777/dev60cgi/rwcgi60?ax+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
As before, this displays the parameter page and when you accept the parameters, the correct report is displayed in pdf format.
The only problem is where we are attempting to use the URL to go directly to the report in pdf format.
Thanking you in advance of any help
Michael Redford

Hello ,
You can try out the following
1. Click on the Report name and bring up the property palette to show all of the properties for the whole report.
2. Under Report Escapes->Before Form Value, change form method from POST to GET .
Thanks
The Oracle Reports Team

Similar Messages

  • Using Reports6i to Publish Reports On The Web As PDF Format - Arabic Data

    Hi everybody.
    I am using Reports6i to create some reports and publish them on the web as PDF format for security reason. The problem is that the opened document displays Arabic letters in encrypted way, I tried to use Acrobat Reader version 5 but it is still not working. Then I try to publish reports as HTML document, In this way, the arabic letters look fine but any vertical lines I designed in the reports did not show up, furthermore, the user can edit HTML document, change the data, then print the report, so using HTML as an output is not secure.
    Any suggestions?

    Hello ,
    You can try out the following
    1. Click on the Report name and bring up the property palette to show all of the properties for the whole report.
    2. Under Report Escapes->Before Form Value, change form method from POST to GET .
    Thanks
    The Oracle Reports Team

  • Displaying report in .pdf format while Running oracle reports over the web

    I am running a report over the web via IE. I am suing .pdf
    format as the file type. The problem I am facing is that the
    report comes out with a blank in acrobat reader if there are
    just one or two records - i.e less thatn one pagefull. THe
    reports displays output only when there ar more than one
    pagefull of records.
    Any explanation for this bezarre behavior and any suggestions?
    I will very much appreciate your help.
    Regards
    Prasad.

    in R12 I found 2 choice
    1) when submitting requests (if available) you can set the output format by using the Options button (upon sompletion section):
    layout --> format --> select format you need (RTF/HTML/EXCEL/PDF)
    2) in the request form (view->request) selecr the report you want to reprint in the Tools menu select print/republish, in the html page that pop up select output format you want, number of copies =1 submit
    www2p

  • How to display the data in PDF format : problem is splitting into 2 lines

    Hi ,
    I developed one report which downloads the data into PDF format and saved in C drive but my problem is
    in my program : Line size of the report is 255 in PDF it is splitting into 2 lines. it has to show in a single line. how to do it. how to reduce the width of the output? i am sending my code below. anybody can suggest me how to do it. if possible please send me the code.
    my code:
    report zmaheedhar.
    maheedhar-start
    TABLES : vbak.
    parameters : p_vbeln type vbak-vbeln.
    data : begin of itab occurs 0,
            vbeln type vbak-vbeln,
            ERDAT type vbak-erdat,
            ERZET type vbak-erzet,
            ERNAM type vbak-ernam,
            ANGDT type vbak-angdt,
            BNDDT type vbak-bnddt,
            AUDAT type vbak-audat,
            VBTYP type vbak-vbtyp,
            TRVOG type vbak-trvog,
            AUART type vbak-auart,
            AUGRU type vbak-augru,
            GWLDT type vbak-gwldt,
            SUBMI type vbak-submi,
            LIFSK type vbak-lifsk,
            FAKSK type vbak-faksk,
            NETWR type vbak-netwr,
            WAERK type vbak-waerk,
            VKORG type vbak-vkorg,
           end of itab.
    maheedhar-end
    DATA: pripar TYPE pri_params,
          arcpar TYPE arc_params,
          lay TYPE pri_params-paart,
          lines TYPE pri_params-linct,
          rows TYPE pri_params-linsz.
    DATA: val(1), val1(1).
    *---> Local Printer Name defined in SAP, Change NHREMOTE to your local printer
    DATA: dest TYPE pri_params-pdest VALUE 'ZNUL'.
    DATA: name TYPE pri_params-plist VALUE 'Testing'.
    DATA: i_pdf TYPE STANDARD TABLE OF tline.
    DATA: spono TYPE tsp01-rqident.
    maheedhar-start
    top-of-page.
    write: 'Sales Document' , 'C Date', 'Entry time', 'Created By','Quotation date',
           'Date','Document Date','SD document category','Transaction group','Sales Document Type',
           'Order reason'.
    start-OF-SELECTION.
          select vbeln  ERDAT ERZET ERNAM ANGDT BNDDT AUDAT
                  VBTYP  TRVOG AUART AUGRU GWLDT SUBMI LIFSK
                  FAKSK  NETWR WAERK VKORG from vbak
            into table itab
            where vbeln = p_vbeln.
    maheedhar-end
    --- Retreive local printer details
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        destination            = dest
        no_dialog              = 'X'
        immediately            = ' '
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
        valid_for_spool_creation = val1
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc NE 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *-- Set Spool printer details w.r.t local printer
    pripar-prdsn = 'DSN'.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_archive_parameters    = arcpar
        in_parameters            = pripar
        no_dialog                = 'X'
        list_name                = name
      IMPORTING
        out_archive_parameters   = arcpar
        out_parameters           = pripar
        valid                    = val
        valid_for_spool_creation = val1
      EXCEPTIONS
        archive_info_not_found   = 1
        invalid_print_params     = 2
        invalid_archive_params   = 3
        OTHERS                   = 4.
    IF sy-subrc EQ 0.
    ---> Triggers the spool creation in the sense all the write statements from hereon will be written to spool instead of screen
      NEW-PAGE PRINT ON
      NEW-SECTION
      PARAMETERS pripar
      ARCHIVE PARAMETERS arcpar
      NO DIALOG.
    ELSE.
      WRITE:/ 'Unable to create spool'.
    ENDIF.
    *--- Output statements
    *WRITE:/ 'First Line', 'mahee','lklk','kikik','lokiuj','fffff','kijuyh','fgfgfgfg','gtgtgtgtgtgtgtgtggggggggggggggggggggggggggggggg'.
    *WRITE:/ 'Second Line'.
    LOOP at itab.
    write: itab-vbeln,
            itab-ERDAT,
            itab-ERZET,
            itab-ERNAM,
            itab-ANGDT,
            itab-BNDDT,
            itab-AUDAT,
            itab-VBTYP.
    ENDLOOP.
    "---> Close spool
    NEW-PAGE PRINT OFF.
    spono = sy-spono.
    Convert ABAP Spool to PDF
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
      EXPORTING
        src_spoolid                    = spono
        no_dialog                      = 'X'
    TABLES
       pdf                            = i_pdf
    EXCEPTIONS
       err_no_abap_spooljob           = 1
       err_no_spooljob                = 2
       err_no_permission              = 3
       err_conv_not_possible          = 4
       err_bad_destdevice             = 5
       user_cancelled                 = 6
       err_spoolerror                 = 7
       err_temseerror                 = 8
       err_btcjob_open_failed         = 9
       err_btcjob_submit_failed       = 10
       err_btcjob_close_failed        = 11
       OTHERS                         = 12.
    Download PDF contents to presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = 'c:\test.pdf'
        filetype                        = 'BIN'
      TABLES
        data_tab                        = i_pdf
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22.
    thanks,
    maheedhar

    hi tripat,
    actual problem is what u said it is decreased the wiidht of the output.
    now the output is:
    Sales Document C Date Entry time Created By Quotation date Date Document Date
    SD document category Transaction group Sales Document Type Order reason
    62741 07/29/1996 11:54:38 DARLENE 00/00/0000 00/00/0000 07/29/1996 C
    actual output is:
    output should come in a single line. it is splitting into 2 lines.
    thanks,
    maheedhar

  • How to send the output to PDF format in reports 6i?

    Hi,
    How to send the output to PDF format in reports 6i? I given Mode = BITMAP.
    DESTYPE = File, DESFORMAT = PDF, DESNAME = C:\x.pdf.
    Report is running fine. But PDF file not generated. I don't know what i missed. Any one can help this?
    Thanks
    Kavitha

    Hello,
    Do you get this problem only for DESFORMAT=PDF ?
    Test with :
    DESFORMAT = RTF, DESNAME = C:\x.rtf
    or
    DESFORMAT = HTMLCSS, DESNAME = C:\x.html
    does it work ?
    Check if DESNAME is modified in the reports itself.
    Regards

  • D2000 Reports for the web PDF and FDF

    Has Oracle considered tighter integration of Adobe FDF (Forms
    Data Format) and Oracle Reports for the web?
    null

    Hi
    I think Portal applications are much more simple to build and lighter than developer apps, but Portal fits better to "simple" apps, without many business rules, complex validation/navigation etc. If the app you need to build has such characteristics, maybe you must use developer.
    lc
    Hello,
    I am thinking of creating an extranet and was going to use Portal - but coming from a forms/reports background I am thinking of looking at 9i forms/reports. Are they still thick clients as when I played around with web-deployed forms before they seemed pretty slow. Would I be better off writing it in Portal ?

  • How to Publish on the Web a PDF document in Reading mode only

    Hello,
    I'm planning to post on my web site my manuscript in PDF format. I would like to make it available in a reading mode only.. I wonder if ADOBE LIVECYCLE Rights Management would allow me to do so in a safe manner. What would be the cost?
    Thanks.
    PATEGA

    Thank you for your reply.
    De : Test Screen Name 
    Envoyé : 15 septembre 2014 05:51
    À : Gaétan Patenaude
    Objet :  How to Publish on the Web a PDF document in Reading mode only
    How to Publish on the Web a PDF document in Reading mode only
    created by Test Screen Name <https://forums.adobe.com/people/TestScreenName>  in Adobe PDF Pack - View the full discussion <https://forums.adobe.com/message/6730511#6730511>

  • Message cannot be displayed because of the way it is formatted

    I have an email sent to my company exchange 2003 account with pdf attachments. When I open the email on my Ipad, I can view the the pdf files but when I move to another email message and then go back to the email message with the pdf files the following message appears:
    "Message cannot be displayed because of the way it is formatted, Ask the sender to send it again using a differnet format or email program. text/plain."
    When I moved the email message to another folder and can view the attached pdf files. However when I read another email message and go back to the email with the pdf files and the error message again.
    I have no problems with the pdf files on my outlook PC client. Any suggestion to resolve this issue would be helpful.

    I too get this irritating problem, or one very like it on both my iPad and iPod Touch. I have several mail accounts on different services, the main being BT. Incoming messages that I want to keep I move to the Sent folder (for want of anywhere better). The content of some messages is then replaced by the "This message cannot be displayed because of the way it is formatted etc" text, some but by no means all. If I move the message back to the Inbox the text miraculously reappears. This is not because it is being reloaded from the server as the text reappears even if the message has been deleted on the server.
    Any thoughts on this peculiar behaviour?
    Thanks.

  • Problem with the icon "Display query on the web" in Query Designer

    Hi Friends,
             I was told by my PM to give them all FI Modules standard business contenet reports, so for that reason i have installed all FI business content & loaded the data in the Dev Server, now i just want to show the reports, but i want excute these reports in Internet Explorer using the Icon "Display Query on the WEB" in query designer, when i click on that it isn't getting displayed in the browser.
             the URL coming like this, "http://itcchqbd:8100/sap/bw/BEx?sap-language=EN&bsplanguage=EN&CMD=LDOC&INFOCUBE=0FIAA_C11&QUERY=0FIAA_C11_Q0001&VARIABLE_SCREEN=X&DUMMY=1"
    getting the message in the page, the page can't be displayed,
              How to solve this problem & how do i have to show the standard business content reports to all FI Superiors ?
    awaiting for ur answers
    Regards,
    Balaji

    Balaji,
    first check if you have enabled web reporting on your BW server ( there is a how to paper for the same )
    another way to check out the same is to find out if there are existing web templates being published which would make the server web ready.
    As for FI content - activate the FI relevant areas in Business content and then activate the respective datasources and then load the data.. or go trough the best practices for BW-FI ( service.sap.com/bestpractices) wnd then activate the best practices for the same.
    Hope it helps.
    Arun
    Assign points if useful

  • How to view my pro*C reports on the web with forms10g

    Hi All,
    I have a scenario where :
    I just migrated my forms from forms6i to forms10g. My IDS 10g R2 sits on Windows XP machine through which I build my form. My IAs 10g R2 sits on Linux machine throught which I compile my forms. Lot of my forms uses pro*C reports which I want to display on the web. I'm using host command in my forms. My questions are :
    1) Do I have to use webtuil?
    2) Is my pro*C reports needs to be ftp into my windows machine or I can still run it even though they sit on linux machine.
    3) How can i dsiplay my pro*C report on the web?
    regds
    Lasily

    Greetings anandhi108,
    After reading your post, it sounds like you are experiencing an error with the Photos app on your iPhone. You may want to consider restarting the device first, and then resetting if that does not work. This article provides detailed instructions for Restarting, and Reseting:
    Turn your iOS device off and on (restart) and reset
    How to restart
    Press and hold the Sleep/Wake button on the top of your device until the red slider appears. Then drag the slider to turn your device completely off.
    After the device turns off, press and hold the Sleep/Wake button again until you see the Apple logo.
    How to reset
    You should reset your device as a last resort and only if you can't restart it.
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Thank you for contributing to Apple Support Communities,
    BobbyD

  • How to put webi report onto the web

    Hi All,
    I have created a webi report in the web rich client and then i need to put on the web.
    Can some body tell me how to do it .
    Thanks & Regards,
    Anjna Goyal.

    Hi,
    As already explained by others, you can use opendocument URL for that report located in CMS and show it as a link in the webpage.
    For details in opendocument, refer to http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf
    Regards

  • Printing Report on the Web

    Hi all,
    I have a question about printing the report on the web.
    I would like to directly print the report once I press the button in the web form. The method I am now using is just hard-code the URL of the report link to the button.
    However, I want to print the report directly to the printer once I press the button, but I am not successful.
    I have already set the following:
    destype=printer
    destname=HP4050
    My printer is on the network where the port is specified by the HP is NPIAB7C2B. Is it related to the link that I need to included?
    Thx first~
    Patrick.

    Hi
    Was a solution found for this?
    I also want to print a report straight to the users default printer without them having to open Adobe on the web and then selecting File > Print?
    The forms version is Forms 10g and running on the report on the report server.
    I can thus transfer the report from the report server to the local pc of the user, but I still don’t have a way of printing the PDF file once it is there.
    I know about the adobe command line below, but that assumes you know the users verion of Adome and the location of where it is installed.
    AcroRd32.exe "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" /p "c:\temp\test.pdf"
    Id there a way to get arounf this?
    Thanks

  • Reports Server/running reports on the web.

    I am trying to configure my web server to run reports on the web. I have followed the instructions provided by Oracle, but some is not clear. When i try to run report on the browser, i get the following error:
    CGI Error
    The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
    Oracle documentaion say the following about the steps to configure the web server:
    1-Start your Web server by entering the following:
    2-Start your browser.
    3-Create a listener.
    4-Configure your Web server mapping and note the physical and virtual directories. For example:
    I have done all the steps above except creating a listener. The documentation doesnt explain that step at all.
    I have created a cgi-bin directory and made it excetable and copied the rwcgi60.exe from reports server machine to the web server machine. I also copied the TNSNAMES entry for the web server from the reports server machine to the web server machine.
    Here is the command i use(just trying to make sure that web CGI is responding, but it doesnt work)
    http://web_server/scm/cgi-bin/rwcgi60.exe
    Other question: On the server machine, i have 3 oracle directories: ORA81, ISUITES, 806, which one should be the home directory for the reports to work on the web??
    I am using oracle 8.1.7 with 9iAS release 1.
    Thanks

    Please note that our CGI servlet is only used as a migration point for
    people with legacy CGI. It is not intended to support people with new
    development to -- we encourage you to use JSP and servlets.
    Thanks,
    Michael
    Savitha wrote:
    >
    Thanks Wei,
    Savitha
    "Wei Guan" <[email protected]> wrote in message
    news:8itate$332$[email protected]..
    Yes, WebLogic has CGIServlet to handle CGI, refer to document for details.
    Cheers - Wei
    Savitha <[email protected]> wrote in message
    news:8isq8i$ocn$[email protected]..
    Does Web logic Support CGI ?
    Need to connect the Web Server with the Oracle Reports Server running
    on
    a
    separate machine.
    Which is to be referred to as CGI_Virtual Directory?
    Thanks ,
    Savitha
    Thanks,
    Michael
    -- BEA WebLogic is hiring!
    Check our website: http://www.bea.com/

  • How to deploy existing forms and reports on the web

    Hi Guys,
    I have 6i forms and reports within our environment, and we are running client/server architecture, by installing forms and reports runtime on each client PC's. We would like to get rid of this by deploying forms and reports on the web, without zero coding. Can any one suggest and guide me through the process with proper security mechanism enabled along with.
    Thanks in advance,
    Aji

    Thanks for the update,
    We have a develpment 10g AS environment setup made,
    1) But we are really confused how to present the forms and reports.
    We have around 250 forms and reports running on client/server architecture. All these forms/reports have been copied to a fileshare and access control is restricted by folder security.
    2) How to deploy forms - entries within formsweb.cfg with Named Configuration sections.
    3) How to deploy reports, as to were to copy the .rep files.
    getting the following error
    REP-110: Unable to open file 'Car_Readings.rep'.
    while trying
    http://kddsvr6.kddc.com:7778/reports/rwservlet?report=Car_Readings.rep&userid=username/passwd@db&desformat=htmlcss
    Thanks in advance,
    AJi

  • BO slow when accessing reports through the web but not with a installed client.

    Hi
    We have installed BO 4.0 SP08 in a virtual machine with 32 RAM and 8 CPU processors. We have divided the APS in a number of instance with different services. We have also 8 Web Intelligence Processing servers.
    The application is slow when trying to create or view a report from the web browser (ie or chrome). If we use the installed Web Rich Client on a machine, then it works fine.
    Does anyone knows why?
    thanks
    Teresa

    Any ideas??
    I don’t know, but whatever it is, it’s preventing you from creating complete sentences.
    Run the Apple Hardware Test as described on page 101 of your owner’s manual to see if it detects any problems.
    RRS

Maybe you are looking for