Add buttons in download region (Report Interactive)

Hi all,
Is it possible to add more buttons in download region in Report Interactive, such as PDF 1, PDF 2 .... ?
I used OC4J and FOP (Print Server) to download PDF for testing, but it is so limited. When I use break column and export it to PDF, instead of to show a break, the PDF file shows an ordinary report.
Therefore, I think the best idea is create two buttons and link for another page and do whatever I want, as PLPDF.
:S
Thank you,
Eric

Hi Eric,
a nice way to do this is use the "IR customs actions menu" plugin (http://apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/ir-actions-menu-item_171.html) , so you can add extra menu's to the actions menu in your IA report.
Regards
Bas

Similar Messages

  • Can we add button in query region  along with go and clear

    Hi Friends,
    i have a requirement as below steps-
    1)i have developed search pgae by using query regiion
    2) in pgae,first we have search items,go and clear(submit buttons), table region.
    3)here go and clear buttons came automatically.
    4) i can able to add button in front of the page and end of the page.
    4) my requirement is i need to add one more button along with go and clear(here go and clear button are in between search items and table region) .
    5)i am not able to add button along with go and clear.
    Can any one know how to do this--
    Thanks in Advance
    vamshi

    Hi Vamshi,
    You can not create extra buttons in Standard Query region.
    Alternatively you can create your custom region for the search and there you can add a button. If you don't need advanced region, you can create the custom region in place of standard one.
    Anoop

  • Downloading ALV report in excel and csv format

    1.I have generated a report in ALV.
    Now, I want a button 'generate' on my alv tooldbar.
    How to do that?
    2.Now  clicking on that generate button will show a popup window containing the title 'Save list in file..'
    And the window will contain two radio buttons to download the report in either in excel or in csv file format.
    i. Spreadsheet(.xls)
    ii.Spreadsheet(.csv)
    How to get the popup window containing two radio buttons and having the options for downloading the alv report in the above file formats.
    Kindly guide.

    @chandrasekhar:
    Thanks for your response. I'll try with the export button but also willing to know how to create button on toolbar.And by clicking on that button a popup box will come having two radio buttons asking to download the report either in .xls or in .csv format. I am looking for the subroutines for that.
    Thanks.
    Message was edited by:
            cinthia nazneen

  • Placing buttons in a region displaying an Interactive Report

    Hi,
    I have a page on which I am displaying an interactive report.I would like to place buttons on this region where the report is displayed-
    - The first button right of the search bar of the interactive report
    - The second button right of the first button.
    - The third (exactly ) below the second button (still right of the search bar)
    I am aware that if this where an HTML region,then I would have had the flexibility to place the third button in a new line without a problem,but can I achieve this in a region displaying an interactive report?
    Is there any way to do this?
    Regards,
    Priya Jetley

    Create the buttons as region buttons in the IR region, with the following properties:
    Button Position: Right of Interactive Report Search Bar
    Button Alignment: Left Right
    Enter *style="display: block; float: right;"* in the Button Attributes of the third button.
    Edited by: fac586 on Nov 11, 2008 8:04 AM
    Changed to fix slight layout glitch in Firefox 2.
    Edited by: fac586 on Nov 11, 2008 9:06 AM
    Changed back as the slight glitch in FF2 is preferable to not working in FF3 and Safari

  • How to add button in ALV report (Class method )?

    Hello experts,
    I have developed one ALV report using classes.
    I want to add one more  button on the report like already is there named DISPLQUA
    How ca i do that here?
    Following the code of CLASS definition & implimentation
    CLASS lcl_handle_events DEFINITION.
      PUBLIC SECTION.
        METHODS:
          handle_on_user_command FOR EVENT added_function OF cl_salv_events
            IMPORTING e_salv_function.
    ENDCLASS.                    "lcl_handle_events DEFINITION
          CLASS lcl_handle_events IMPLEMENTATION
    CLASS lcl_handle_events IMPLEMENTATION.
      METHOD handle_on_user_command.
        CASE e_salv_function.
          WHEN 'DISPLQUA'.
            PERFORM show_quant_record.
         WHEN 'DISPQM03'.                                " Here i want to add button
           PERFORM display_quality_notification.
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_on_user_command
    ENDCLASS.                    "lcl_handle_events IMPLEMENTATION

    HI Ronny.
    Code snippet for reference.
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION.
        METHODS :
    *--Toolbar control
          HANDLE_TOOLBAR FOR EVENT TOOLBAR
            OF CL_GUI_ALV_GRID IMPORTING E_OBJECT
                                         E_INTERACTIVE,
    ENDCLASS
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *--handle toolbar
      METHOD HANDLE_TOOLBAR.
    * append a separator to normal toolbar
        CLEAR G_TOOLBAR.
        G_TOOLBAR-BUTN_TYPE = 3.
        APPEND G_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
        CLEAR G_TOOLBAR.
        G_TOOLBAR-FUNCTION = 'SAVE'.
        G_TOOLBAR-ICON = ICON_SYSTEM_SAVE.
        G_TOOLBAR-BUTN_TYPE = 0.
        G_TOOLBAR-QUICKINFO = 'Save the Customer'(203).
        APPEND G_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
      ENDMETHOD.                    "HANDLE_TOOLBAR
    Hope this helps.
    Gary.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 7, 2008 5:41 PM

  • Add buttons in ALV Report output

    Dear Friends,
    I am developing one ALV report in PP moule for calculating Shelf Life. The output is coming properly in ALV.
      But my additional requirement is ADD coustomise buttons in ALV Reports.
    Please give me an idea how can I insert buttons in my alv report?
    Thanks & Regards
    Vasu

    Hi vasu,
    consider the code given below.
          FORM F4200_PF_STATUS_SET                                      *
    FORM f4200_pf_status_set USING i_extab TYPE slis_t_extab.
      REFRESH i_extab.
      PERFORM f4210_exclude_fcodes CHANGING i_extab.
    The PF status is an exact copy of the PF status 'STANDARD' of program
    SAPLSALV but with command 'CHNG' added to it.
      SET PF-STATUS 'ZSOM_STANDARD' EXCLUDING i_extab.
    ENDFORM.
    *&      Form  f4210_exclude_fcodes
    FORM f4210_exclude_fcodes USING i_extab TYPE slis_t_extab.
      DATA: ws_fcode TYPE slis_extab.
      CLEAR ws_fcode.
      ws_fcode = '&EB9'.            " Call up Report.
      APPEND ws_fcode TO i_extab.
      ws_fcode = '&ABC'.            " ABC Analysis.
      APPEND ws_fcode TO i_extab.
      ws_fcode = '&NFO'.            " Info Select.
      APPEND ws_fcode TO i_extab.
      ws_fcode = '&LFO'.            " Information.
      APPEND ws_fcode TO i_extab.
    ENDFORM.                    " f4210_exclude_fcodes
    *&      Form  f4300_user_command
    FORM f4300_user_command USING ucomm LIKE sy-ucomm
                                             selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN '&IC1'.                              "Double Click line Item
          READ TABLE i_data INDEX selfield-tabindex.
          IF i_data-qmnum NE space.
            SET PARAMETER ID 'IQM' FIELD i_data-qmnum.
            CALL TRANSACTION 'IW52' AND SKIP FIRST SCREEN.
            CLEAR ucomm.
          ENDIF.
        WHEN 'CHNG'.                          " Change Notification Icon
          READ TABLE i_data INDEX selfield-tabindex.
          IF i_data-qmnum NE space.
            SET PARAMETER ID 'IQM' FIELD i_data-qmnum.
            CALL TRANSACTION 'IW52' AND SKIP FIRST SCREEN.
          CLEAR ucomm.
          ENDIF.
      ENDCASE.
      CLEAR ucomm.
    ENDFORM.                    " f4300_user_command
    EXPLANATION
    In this program, first we created a PF status (ZSOM_STANDARD), which was an exact copy of STANDARD of program SAPLSALV through transaction SE41 (Menu Painter). Then we added another button to it,with a new fcode called ‘CHNG’.  After this this we set this PF status instead of STANADRD.
    We initialize a third event USER_COMMAND and associate a form with it. In this form we can capture the function codes and write any functionality under it. If we write functionality for an existing fcode, then this gets precedence over the default functionality that might be associated with it.
    In this example, we capture a standard fcode ‘&IC1’ that is nothing but double clicking a line of the report.  We are capturing the notification number of that line and calling transaction IW52 with it. We are also doing the same when a user clicks on the new ‘Change Notification’ button.
    When the user clicks the “Back’ button in IW52, it comes back to the report.
    Please reward for the same.
    Message was edited by: Prakhar Saxena

  • Download data from interactive report

    Hi all. I'm on apex 3.1.1.00.09.
    I have this problem: when I download data from interactive report I can download only in CSV and PDF. If I try to download into pdf it creates a file of only 1 KB.
    I would know if I must configure my apex in order to download correctly in pdf and if I must configure it in order to download in doc and xls format.
    Thanks all for collaboration,
    Fabrizio

    Thank you for your reply.
    I am able to download the csv file, but my problem is: I don't want the column headings to show.
    Is it possible to download only the data, not the column headings?

  • I clicked the download all button at the end of the list of my library iTunes which i believe is in the iCloud, i have iTunes match also, many downloads were reported as occurring over several hours and then received the warning startup dis

    i clicked the download all button at the end of the list of my library iTunes which i believe is in the iCloud, i have iTunes match also, many downloads were reported as occurring over several hours and then received the warning startup disc is full (activity monitor shows 3.99 of 4 GB used) and then another stating the download had not occurred due to the disc being full. most of the tunes still appear to be in the cloud but the disc is said to be full, spent a good period of time trying to investigate what has happened but failed...I'm not well up on all of this as an old chap so any help would be wonderful.....

    unclefossil wrote:
    Thanks Michael, what is the best way of backing up, should buy a cheap standalone external hard drive rather than relying on the Time Capsule which is quite sensitive...
    If you read the link I provided you'll get an idea of one way to maintain a backup of your music files, use Time Machine, and not take up as much room on the internal HDD/SSD.
    unclefossil wrote:
    i live in the Scottish Highlands where Broadband is frequently intermittent disrupting backups.
    Your internet connection speed has no effect on Time Machine/Time Capsule backups. Since that is all done locally, over your wireless network you actually do not need an internet connection at all.
    unclefossil wrote:
    Also I wondered if I could increase the memory on the setup disk by replacing the 4GB card already in the MBP with 16GB cards, if I upgraded would that affect anything I have stored already like my iTunes?
    You're asking about the computer's RAM. Increasing that will not increase the size of the internal storage available to the computer. You'd need to replace the HDD/SSD of the Mac, which, depending on what model you have may or may not be possible (with new models of Macs).

  • Download Link in Interactive Report isn't Showing

    I'm not sure if this is a bug or not, but I have an interactive report which allows users to download the report (under the Actions menu).
    The download formats that were used previously were HTML, Email and PDF, and it worked perfectly fine. However, I want to remove PDF as one of the options so I unchecked it... but now the Download link won't appear at all.
    Does anyone know how to get the Download link to appear again? Thanks in advance!

    If I turn on everything except PDF it works.
    Also PDF off and CSV off, still works.
    PDF off, CSV off, RTF off it works.
    Only HTML and EMAIL on, it breaks.
    HTML on, EMAIL on, RTF on it works.
    Sounds like there is a bug here and it's a matter (for now) of finding the most acceptable combination to you and your business needs.

  • Download CSV of Interactive Report

    Hi,
    I am using Apex 4.1 and Oracle 11g.
    Can anyone pls help me with this below issue.
    select a,b,c,'<font style="font-size:10px; background-color:#FF0000; color:black" nowrap>'|| d ||'</font>',e from table_name
    a,b,c,d are column names.
    I have used the above HTML code for giving background color for single column. But when I am downloading the Report in CSV format through Actions Menu on Interactive Report in the d column i am getting the HTML code also along with data in it which i dont want. I want only the data to come into CSV not the HTML code along with it.
    Regards,
    Shoaib
    Edited by: Shoaib581 on 04-Jun-2012 01:15

    mahmoudrabie wrote:
    Dear Shoaib,
    i am getting the HTML code also along with data in it which i dont want. I want only the data to come into CSV not the HTML code along with it. 1) Right click on the interactive report ---> edit report attributes
    2) Change the column (Display Text As) to *(Standard Report Column)* for column d
    This does not solve the problem because he is getting the html code in CSV and not in browser
    >
    <font style="font-size:10px; background-color:#FF0000; color:black"  nowrap>'|| d ||'</font>Stop using font tag because it is deprecated
    Please remove the html formatting from the sql query and use the Interactive report Actions Menu > Format > Hightligh option
    Login as developer Go to Actions Menu > Save > Save as default > primary report to save it as default for all users
    http://apex.oracle.com/pls/apex/f?p=46417:4
    Login test/test

  • How we can add buttons on report/dashboard ?

    Hi,
    I want to add buttons on my report/dashboard so that clicking on one button it should generate one report, by clicking on another button it should generate another report.All these things are to be done on single dashboard/report.
    Thanks,
    Ganesh

    Hi Ganesh,
    Just as Olaf said, we can embedded all other reports as subreports in the main report, then control its visibility toggled by some Textboxes. For more details, please refer to the following steps:
    Drag some Textboxes(Textbox1, Textbox2, Textbox3…) and some Subreports to design surface.
    Right-click one subreport to open Subreport Properties dialog box.
    Select the report name which you want to display as the subreport in the General pane.
    Select “Hide” option when the report is initially run and enable it toggled by ‘Textbox1’ item.
    In the Parameters pane, add parameters if necessary.
    Use the same method for other subreports.
    The following screenshot is for your reference:
    The following blog is for your reference:
    http://www.codeproject.com/Articles/195017/SSRS-Series-Part-II-Working-with-Subreports-DrillD
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Download multiple reports on click of a single button

    Hi,
    I have nearly 12 reports on a page which are displayed according to some conditions, and all have a download report option.
    I have created a button for one of the report, i.e when i click that button then the report is downloaded. similarly i want to download all the reports which are displayed, by clicking the same button(user do not want to click each button for each individual report).
    Is this POSSIBLE to achieve this criteria ?
    Does anyone encountered this problem before, if so who did you solve it.
    any alternatives or workarounds?
    Have searched forum but couldn't find the solution.
    am using apex 4.0.2 with 11g DB
    Thanks
    Little Foot

    Hi mini,
    Since u said of having a button which is downloadable(whether it is downloading to the HTML format or to excel) of the singel report.it is downloading to .sql file.
    Does the downloadable format interferes with this?
    But before that who to proceed to download multiple reports on single click(of a single button "DOWNLOAD")
    Thanks,
    Little Foot

  • OBIEE - add button for exporting report into specified folder

    Hi all,
    How do I add button for exporting report into specified folder?
    See example below (this is print screen from working OBIEE report)
    http://s9.postimage.org/xqs9cellb/BI_report_export.png
    Oracle Business Intelligence 11.1.1.6.0

    What version of Crystal Reports are you using?  Any service packs or hot fixes installed?
    Can you open other xls files with 2007?  
    Have you ever exported to excel before?
    I export to -excel (97-2003) data only- and open the files with Excel 2007 with no problems. Excel 2007 complains about the old format (xls) and wants to convert it to the new excel format. I alsways ignor it.
    Maybe the 'garbage' you are seeing is because the layout of your crystal report is not working for the export. Is all the data there but you have extra cells and/or lines, or the data is pushed to the left? I find that I must have the fields packed tightly with no space between them and no space above or below the fields, or I get extra cells between and lines above or below them.
    Most of my exports are detail lines with a single line header and columns are set to match the detail line. When exporting multiple lines where the fields do not line up exactly with the ones above them, I may use one or more empty text fields that matches the size of the fields above them to fill the empty space. Sort of like:
    line 1:{field1.}{field2...}{field 3}
    line 2:(text...}{text.....}{field 4)
    And you may need to turn off 'can grow' on all fields as they may cause miss-alignment. All the data will be there when you export it, even what you can not see in Crystal. You will just need to format the cells in Excel to see it.
    Debi  (hi Don)

  • Is it possible to add buttons for user feed back in Bobj WEBI report?

    Dear all,
    I am an ABAP Web dynpro developer. 
    As part of the workflow, i am displaying  a BOBJ Webi Report to the users.
    The requirement is to allow users Aapprove/Reject the data in the report.
    Is it possible to have user input or any buttons in the Webi Report?
    If yes, How to achieve this ? Please help.
    Thanks,
    Vamshi

    There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

  • Add Button Column in IR

    Hi,
    I have created an Interactive report on a table. I want to add two buttons in each row: Accept and Reject, so that i can change the status(db column) of the corresponding record on button action.
    How can I do so?

    Hi poojaC,
    Try the below code,
    i am giving the idea to add buttons..may be this is not the way you want.
    step1
    -- put this code in report region
    select "ROWID",
    '<input type="button" value="Accept"  onclick="func('||EMPNO||')">'  as "Accept",
    '<input type="button" value="Reject"  onclick="func('||EMPNO||')">'  as "Reject",
    "EMPNO",
    "ENAME",
    "JOB",
    "MGR",
    "HIREDATE",
    "SAL",
    "COMM",
    "DEPTNO"
    from "#OWNER#"."EMP"
    -- edit the Accept and reject column and change Display type to "standard report column"Step 2 : create one function in page header like
    -- here you can execute your process on button action
    <script>
    function func(id)
    alert(id);
    </script>Hope this will give you some idea.
    Regards,
    Jitendra

Maybe you are looking for

  • Am not able to download ios 5.1...??..

    am also not able spot personal hotspot in my iphone 4. the current ios is 5.0.1..

  • Loading Smart list values

    Hi All, Can we load smart list values thirugh FDQM? I have tried but it gives error during import stage. Any help will be highly appreciated. Thanks in advance.

  • Second monitor with Windows 8.1

    I installed the recommended upgrade to Windows 8.1 and the second monitor stoped working. I have a HP 110-194 DEsktop PC US poduct number H6U03AA#ABA.

  • ***Performance of SSD: Optical Bay vs. SATA

    I was thinking about installing a second drive into my optical bay that I can use as my media/scratch drive. System/Apps on main drive Video on optical drive Just wondering..is there any difference in performance/speed when editing based on if the dr

  • External Drive Format / Partition Question

    Ok.. had my iMac for almost a week... and loving it. Starting to feel comfortable with it. I just ordered a LaCie 750G External Drive for Time Machine and some extra storage. My question is this... I will partition the drive for 500G for Time Machine