PDF download option to be enabled

Hello All,
I am new to ISA development, and need your detailed help and advice on the requirement. Please note that I am working on ISA R3.
The requirement is to have a pdf download option on the orderstatusdetail.jsp . From backend, I am being given a RFC with binary format output in a table to accomplish this.
Please tell me how to proceed ahead.
Thanks & Regards,
Vibha

Not sure if you are still waiting for an answer. Below details:
1. Add a link on your jsp to call an action
2. Implement action, bo, bo implementation, backend classes with corresponding methods and parameters
3. In your backend class call the fm to get the xstring data, convert to byte array and pass it all the way back to your action
4. Now with the byte array open a pdf file using mime type application/pdf
5. reply back if you get stuck
pradeep

Similar Messages

  • Xls/pdf Download Options not available in interactive report on group by

    Hello All,
    I have the similar problem like mentioned here:
    export from IR with group by
    there I didn't find any response, Please let me know why it is happening, is there any solution to this.
    thanks
    Tauceef
    Edited by: Tauceef on Feb 9, 2011 4:02 PM

    Can anyone please tell me why it is happening,
    is it a bug?
    or it is a property of Interactive Report which I can't change?
    Please, because I didn't find any documentation for this.
    Thanks
    Tauceef
    Edited by: Tauceef on Feb 14, 2011 6:47 PM

  • Issue with PDF download

    Hi Guys,
    I am facing problem with the PDF download option. In the answers request I have to use Pivot tables to display data and since these pivot tables do not provide the option of Table Headings, I resorted to HTML to get a similar output. The issue I am facing right now is when I print it through PDF or Powerpoint, the HTML code I have written comes up instead of the result. In the case of excel or answers, I am getting the proper output. Is there some setting I am missing?? I am using the column with the HTML coding in the Columns section of the pivot table.
    Thnx!

    Hi,
    This is a known issue with HTML code embedded in your request, when you try to download the same in PDF, PowerPoint it will show the code.
    You can the following bugs regarding this in metalink.
    Bug 7187501: PDF SHOWS HTML TAGS WHILE PRINTING REPORT WITH BOLD LETTERS -HTML Tags Shown When Print or Export to PDF (Doc ID 1064060.1)
    Bug 9372634: HTML TAGS SHOWN WHEN PRINT/EXPORT TO PDF
    Bug 8899783: HTML TAGS APPEAR IN PDF REPORT
    Thanks,
    Vino

  • Smartform Preview Disabled when PDF download is implemented

    Dear All
    I incoproated the PDF download option in the smartform.  It is working as expected,  However it disables the Preview Option.  I ddid not know where I am missing.  I like to have both Preview option as well as PDF download.
    Very much helpful if someone throw light on it.
    Regards,
    Venkat

    after useing the above code then write pdf download i.e
    *&      Form  DISPLAY_PDF_OUTPUT
    form display_pdf_output  using    f_sf_formname
                                           f_sf_fmname.
      call function 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language             = v_language
          i_application          = 'SAPDEFAULT'
        IMPORTING
          e_devtype              = v_e_devtype
        EXCEPTIONS
          no_language            = 1
          language_not_installed = 2
          no_devtype_found       = 3
          system_error           = 4
          others                 = 5.
      if sy-subrc <> 0.
      endif.
      st_output_options-tdprinter = v_e_devtype.
      st_control_parameters-no_dialog = 'X'.
      st_control_parameters-getotf = 'X'.
      call function 'SSF_FUNCTION_MODULE_NAME'
              exporting
                formname                 = f_sf_formname
              importing
                fm_name                  =  f_sf_fmname
             exceptions
               no_form                  = 1
               no_function_module       = 2
               others                   = 3            .
      if sy-subrc <> 0.
      endif.
      call function f_sf_fmname
       exporting
    *   ARCHIVE_INDEX              =
         control_parameters         =  st_control_parameters
    *   MAIL_APPL_OBJ              =
         output_options             = st_output_options
    *   USER_SETTINGS              = 'X'
       importing
         document_output_info       = st_document_output_info
         job_output_info            = st_job_output_info
        job_output_options         =  st_job_output_options
        tables
          it_output                  = it_output
          it_final                   = it_final
    * EXCEPTIONS
    *   OTHERS                     = 5
      if sy-subrc <> 0.
      endif.
    *Conveting to PDF
      call function 'CONVERT_OTF_2_PDF'
    * EXPORTING
    *   USE_OTF_MC_CMD               = 'X'
    *   ARCHIVE_INDEX                =
         importing
           bin_filesize                 = v_bin_filesize
         tables
           otf                          = st_job_output_info-otfdata
           doctab_archive               = it_docs
           lines                        = it_lines
         exceptions
           err_conv_not_possible        = 1
           err_otf_mc_noendmarker       = 2
           others                       = 3
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    *........................GET THE FILE NAME TO STORE....................*
      concatenate 'Tax_Invoice' '- ALL' sy-datum '.pdf' into v_name.
      create object v_guiobj.
      call method v_guiobj->file_save_dialog
        EXPORTING
          default_extension = 'pdf'
          default_file_name = v_name
          file_filter       = v_filter
        CHANGING
          filename          = v_name
          path              = v_path
          fullpath          = v_fullpath
          user_action       = v_uact.
      if v_uact = v_guiobj->action_cancel.
        exit.
      endif.
    *..................................DOWNLOAD AS FILE....................*
      move v_fullpath to v_filename.
      call function 'GUI_DOWNLOAD'
        exporting
          bin_filesize                    = v_bin_filesize
          filename                        = v_filename
          filetype                        = 'BIN'
    *     APPEND                          = ' '
    *     WRITE_FIELD_SEPARATOR           = ' '
    *   IMPORTING
    *     FILELENGTH                      =
        tables
          data_tab                        = it_lines
    *     FIELDNAMES                      =
        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
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " DISPLAY_

  • How to enable download option on the dashboard?

    Hi All,
    I am unable to enable my download option on the dashboard.
    can anyone help me in this.
    thnx in advance.

    Hi...
    No thanks,
    but need to close the thread and mark correct/helfpful to the correct reply given to you... ;)
    I also observed all your threads were not closed yet...
    are those not answered or.. you forgot to close them?
    just check... and close all the threads, so that others easily can refer your thread..
    Remember you are helping others indirectly which has same issue like you... ;|
    Thanks & Regards
    Kishore Guggilla

  • How to enable download option in flash website

    Hii
    Can someone help me out in enabling the download options for [ringtones and images] from the website developed using flash CS4 [AS3] .
    Thanks ,
    Gayatri

    Look into using the FileReference class and its download() method.  There are examples in the Flash documentation that should help you.

  • Interactive Report Download Options

    I am running APEX 3.2 on Fedora. I was going thru some of the interactive report tutorial samples available online. It seems that under the Report Attribute there are only 2 of the 4 download options available namely csv and pdf formats. From the tutorial instructions I had expected to see CSV, XLS, PDF, RTF formats? Please note I do have admin rights to the workspace and the only two checkbox options presented are CSV and PDF.
    How can I enable support for excel (xls)? - wanted to add the other checkbox option for XLS
    Also is there an download limit to the number of rows when downloading either csv or xls formats?
    Thanks
    bob

    To download PDF/Excel, RTF style files you need to install a print server. For limited PDF's you can use Cocoon/FOP with a Tomcat server. For more advanced PDF's, Excel and RTF files you need to install BI Publisher. It is NOT free..
    http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html
    Thank you,
    Tony Miller
    Webster, TX

  • Problem with file download option in ALV via ITS. Please help!

    Hi Experts,
           I have a ALV report which I have web enabled using ITS service. In the ALV there is a delivered functionality for file download. It works fine when the report is run in the SE80. But when I run the ITS service for the report and choose file download option it displays a page saying "this page has been diaplayed due to technical reasons" with title "File properties". In addition it looks for Java runtime in the browser. After all this it opens a popup window for selecting path and file name.
    This is not user friendly and many customers have rasied their concerns on it.
    My question is that,
    Q1: What is the need of this "File properties page"? Why ITS calls this while ABAP editor does not?
    Q2: Is there any way we can suppress this so that it directly opens a popup window for selecting path and file name?
    Please help me.
    Thanks
    Gopal

    Hello Klaus,
    i have also the problem with these intermediate screens!
    We have in between installed patch 22 for ITS 6.20 and SP18 at SAP Netweaver 2004!
    But they are still not processed invisible for the users.
    Are there any additional parameters, which controls this behaviour(~webgui_updown_make_visible is not used!)?
    How can i check, if i have really a.ex. the actual ws.jar-file or other related files of the patch?
    We are using the standalone ITS with an own (modified) IAC with an own CI-design for the webpages. The intermediate screens are displayed with the "normal" SAPGUI-design because of the parameter ~generatedynpro. Without this it does not work, because the template SAPLSIT_0100 is missing!
    Or do you have an example for such a intermediate template with the applet for an upload of a file?
    Thanks in advance
    Felix

  • Need to add print and download options for report in new window

    Hi,
    On one of the columns empid of the report1 (which is on the dashboard) , I am using navigation and pointing it to report2.
    Report1 has all the links, print, download and refresh (I enabled them using the section properties) but when I click on empid and it takes me to report2, then I don't see any links under that report. I want to include print and download links for report2 when it opens in the new window.
    I know, one way is to embedd that report in the dashboard page and hide it, but is there any other way of doing it?
    Any help would be highly appreciated.
    Thanks,
    Ronny

    Ronny wrote:
    Just to clarify again, I am using a navigation from report1 (which is on the dashboard) to report2 (which is not on the dashboard).
    As per the requirements, I can't put my report2 on any dashboard page and hide it and then use navigation. Also, I can't enable the print and download options for report1 which is already on the dashboard. Doing this gives me print and download options for report2 but that is not the requirement.
    Is there any way to have print and download options for report2 when I am directly navigating to the report2 from report1 and not the report2 on any dashboard page which is hidden.
    I will really appreciate any help on this.
    Thanks,
    RonnyPlease explain why you can't do what I said. What is the "requirements" that prevent this? It would be transparent to the user, really. They just click and get their report.

  • Pdf download in bi publsiher 10g

    Hi All,
    We are using OBIEE 10g. We are placing bi publisher reports on dashboard. When we click on the report link on dashboard, we need to get direct download option for the publisher report in pdf format instead of viewing it in pdf format, like we get in excel format.
    For Example: If we select excel and select Auto Run option and click on the report link in dashboard, it will directly give option to download the report with default parameters, similarly we need the direct download option for pdf format also. How to get it it for pdf..??
    Thanks.

    Hi ,
    Increase the Template page size and align the column width accordingly..
    Check the output based on incresing the page size.
    Thanks,
    Ananth

  • How do I disable Download Option on .Mac Web Gallery

    I created my pages on .Mac Web Gallery with iweb from my iphoto albums yesterday. At that time I chose to enable viewers to download these photos. I have changed my mind and now want to disable the downloading option. How do I do this with out having to delete and then upload the pages all over again.
    Message was edited by: MA818

    If you created the gallery in Iphoto open iphoto, select the gallery, click on "settings" at the bottom, make the changes and re-publish.

  • How do I get ipad ios8 to stop pdf download default being itunes U?

    since upgrading to ios8 when I want to download a pdf, from safari, the default app it tries to download to is itunesU instead of iBooks.  it does come up with other options, including iBooks, but you have to find iBooks from the list.  on ios7 it would default to iBooks.  
    can the default pdf download app be changed?. Other people I know don't have this issue so there must be something in my settings which creates this issue.
    i am not sure why it wants ro default to itunesU as I never use this app.
    Any help would be hugely appreciated as I download a lot of pdfs from safari web pages  and this is getting frustrating.

    I have this problem too.  I'm thinking maybe the last downloaded app becomes the default, so perhaps deleting iBooks and redownloading it will make it default?  I haven't treid yet though, I don't want to have to download all my PDFs again (from different websites).

  • Download options for dashboard level

    Hi ,
    how to get download option at entire page in dashboard.
    Regards,
    Malli

    Hi,
    Page Option -->Print-->Printable HTML --> save it as html and then open as xls format . this will download entire page reports into execel , PDF,HTML driect download.
    Thanks
    Deva

  • Download Option in Page Level

    Hi,
    I have 2 reports in a page. Instead of giving seperate download options for the 2 reports, I need a single download option with which both the reports can be downloaded in a single excle or pdf format.

    try Printer Friendly option at the bottom of a dashboard page... It's not a download, but pdf you can safe as a file...
    !http://i45.tinypic.com/66cio3.png!
    *and I couldn't find the way to download the whole dashboard page in Excel file.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • OWA 2013 - No download option for office documents

    Using Chrome, Firefox and IE browsers I do have a "download" option right next to the attachment as long as the attachment is NOT an office document (.doc,xls,ppt,etc). If the attachment is an image, a download link is right next to the attachment
    as expected.
    But if the attachment is for example a .docx file I only have a preview option available and no download. Also right-click to Save-As only shows an HTML download.
    I have enabled in ECP
    Permissions - Outlook Web App Policies - File Access
    Public or Shared - Direct File Access and Web ready document viewing
    Private - Direct File Access and Web ready document viewing
    and
    Servers - Virtual Directories - Owa
    Public or Shared - Direct File Access and Web ready document viewing
    Private - Direct File Access and Web ready document viewing

    Hi,
    How many users encounter this issue, all users or some specific users?
    Please use the Get-OwaMailboxPolicy cmdlet to check all Microsoft Office Outlook Web App mailbox policies in a Microsoft Exchange Server 2013 organization:
    Get-OwaMailboxPolicy | FL
    Thanks,
    Winnie Liang
    TechNet Community Support

Maybe you are looking for

  • AppBarButton stuck on disabled

    (Windows Phone 8.1 Runtime) I have a Page which I have set NavigationCacheMode to Required. I have a command bar on this page with an AppBarButtton that is bound to an ICommand on my view model. The command 'can execute' whenever a loading operation

  • .avi files come up as a white screen

    Anytime I try to play a .avi file I just get a white screen in the quicktime window and a little pop-up that tells me I don't have the required plug-ins to play this movie. So I go to the site and there are about 20 different plug-ins... which one do

  • What is hyphenation services?

    What does this error message actally mean? I made a document in CS6 and I'm opening the same file on another machine with CS6. I know what hyphenation is and the first line of the message is understandable, but the second is weird? Hyphenations servi

  • Firefox won't start (after downloading Xmarks update)

    Hello, this morning I downloaded Xmarks update since that point in time I am unable to open Firefox. I reinstalled the browser a couple of times and I am still unable to open the Firefox. Any ideas? Please. I use Mac OS X 10.6.4 == This happened == E

  • Printing out a character set

    The old ALDUS PageMaker (circa 1992) used to have a file that printed out all the characters in a font - you merely changed the font to see all the characters; i.e., times roman showed all the characters in that font, changing to symbol showed all th