How to show printer list in a pop-UP in web-UI

Hi Guru's,
I have a requirement in which I need to display all available printer (windows local +SAP configured) list in a pop-up, on the web-UI . From this list user can select any printer and print on it.
Now my question is: Does SAP provides something out of the box which I can  re-use or I need to write the code for it. In any case, I will really appreciate if someone can throw some light on it.
Regards,
Sandeep

Hi Sandeep,
There is already a Print button available on the overview Page, which opens up a Printable Page and rest can be done by the Internet Explorer's Print Option.
I doubt whether this solves your Problem.
Regards,
Harshit

Similar Messages

  • How to show one list  from bean two times

    Hi All,
    I am using jdeveloper version 11.1.1.6.0.
    I have a scenario where I want to bind list attribute from the my bean to two different talbes or iterators.
    I want to show this list twice on the page.
    If I keep both the tables then it shows only one of it.
    <af:table value="#{myAccShoppingCartBean.favAccountList}"
                                        columnResizing="disabled"
                                        disableColumnReordering="true"
                                        styleClass="carttbl" var="row"
                                        rows="#{bindings.favAccountList1.rangeSize}"
                                        emptyText="#{bindings.favAccountList1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                        fetchSize="#{bindings.favAccountList1.rangeSize}"
                                        width="877" horizontalGridVisible="false"
                                        verticalGridVisible="false"
                                        rowBandingInterval="0" id="tblCart"
                                        binding="#{myAccShoppingCartBean.tblCartItems}"
                                        inlineStyle="border:1px solid #000000;overflow:hidden !important;">
                                <af:column sortProperty="productSizeId"
                                           sortable="false" visible="false"
                                           id="c239">
                                  <af:outputText value="#{row.productSizeId}"
                                                 id="ot2asdf"/>
                                </af:column>
    </af:table>
    <af:table value="#{myAccShoppingCartBean.favAccountList}"
                                        columnResizing="disabled"
                                        disableColumnReordering="true"
                                        styleClass="carttbl" var="row"
                                        rows="#{bindings.favAccountList1.rangeSize}"
                                        emptyText="#{bindings.favAccountList1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                        fetchSize="#{bindings.favAccountList1.rangeSize}"
                                        width="877" horizontalGridVisible="false"
                                        verticalGridVisible="false"
                                        rowBandingInterval="0" id="tblCart"                                 
                                        inlineStyle="border:1px solid #000000;overflow:hidden !important;">
                                <af:column sortProperty="productSizeId"
                                           sortable="false" visible="false"
                                           id="c239">
                                  <af:outputText value="#{row.productSizeId}"
                                                 id="ot2asdf"/>
                                </af:column>
    </af:table>How to show this list two times.
    any help is apprciated

    Hi ,
    Can I replace above posts table with iterator
    Can I set value attribute for different iterators same from the bean.
    like
    <af:iterator value="#{myAccShoppingCartBean.favAccountList}" id="i1">second one like
    <af:iterator value="#{myAccShoppingCartBean.favAccountList}" id="i2">How to solve this?
    Is there any way to set same value to the different Iterators on the same page

  • How to show property bag values of site collection in web part on landing page in sharepoint online?

    How to show property bag values of site collection in web part on landing page in sharepoint online - office 365?

    You can use JavaScript Client object model to read the property bag values. Example:
    function getWebProperty() {
    var ctx = new SP.ClientContext.get_current();
    var web = ctx.get_site().get_rootWeb();
    this.props =  web.get_allProperties();
    ctx.load(web);
    ctx.load(this.props); //need to load the properties explicitly
    ctx.executeQueryAsync(Function.createDelegate(this, gotProperty), Function.createDelegate(this, failedGettingProperty));
    function gotProperty() {
        var myPropBag = this.props;
        alert(myPropBag.get_fieldValues()["allowdesigner"]); //returns the value of the key allowdesigner
    function failedGettingProperty(args, sender)
         //handle errors here
    Source:
    http://sharepoint.stackexchange.com/questions/37198/grab-a-specific-property-bag-using-ecma-script
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • How can i print lists from the reminder app

    Does anybody know how to print lists from the Reminder app ?

    There's no print menu in Reminders.
    You can take a screen shot and print that.  Hit command-shift-3 when Reminders is showing, then hit the spacebar, and then click on the Reminders window and you'll get a screen shot on your desktop.  You can then open that in Preview and print from there.
    A better solution though is to just use an iPhone and sync, and have your reminders with you :-)

  • How to suppress print dialog box from popping up under a condition

    Greetings...
    There may be a better way to accomplish what I'm trying to do, so I'm open to outside-the-box suggestions.
    I have a pretty simple page which lists a set of statuses and descriptions of each. The user can edit these status flags and their descriptions on the page as well. When I view the page in "printer friendly" mode, I see a nice simple report of what the statuses are and their descriptions. Everything works great so far.
    In our work request system built in ApEx, there's a page where someone can view the details of a work request, including the current status. When someone clicks on the help of that item, what I'd love to do is simple show the "printer friendly" version the status page mentioned above in a pop up window. My problem is that the print dialog box automatically shows up when a page is displayed in "printer friendly" mode and I do not want this to happen in this case.
    I see the javascript code in the Printer Friendly page template which causes the print dialog box to show up automatically, but I don't want to remove it in the template just for this one case. This would suppress the print dialog box on all "printer friendly" page views and the users are used to it showing up when they ask to print the page.
    I guess I could create a custom request to pass to the master status page which would pretty much do everything that the "printer friendly" mode is doing, but that seems like a lot of work when I'm so close to using something that is built in.
    Am I not seeing some simple other way of doing it or perhaps asking too much? Any suggestions?
    Shane.

    Hi,
    I think you have to call the FM GET_PRINT_PARAMETERS and pass NO_DIALOG = 'X'.
    Something like:
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          no_dialog      = 'X'
        IMPORTING
          out_parameters = ls_params
          valid          = lv_valid
        EXCEPTIONS
          OTHERS         = 1.
      NEW-PAGE PRINT ON PARAMETERS ls_params NO DIALOG.
    * Display Table
      lr_table->display( ).
    add: Spool numbers can be found in TSP01 or in system field SY-SPONO available in the submitting program...
    Hope it helps,
    Kr,
    m.
    Edited by: Manu D'Haeyer on Sep 28, 2011 10:02 AM

  • How to show print Preview of an file in java

    Hi,
    Suppose i have a file like "bina.xls". Now i want to see the print preview of this file from java code. How is this possible? I s there anybody can help me? now i am in serious trouble with this? I can generate an excel file. But i can not show this file with JExcelApi. i can know that this is possible with jasper report, how this is possible with Jasper Report ? if any one help me with sample code then i will be very gratefull to u . Please help me.
    With Regards
    Bina

    This forum is exclusively for Sun Java Studio Creator. Please post your queries on appropriate forums to have better discussions :
    e.g.
    Java Technology Forums - Java Programming :
    http://forum.java.sun.com/forum.jspa?forumID=31

  • How to show/print waiting message when system is serving pdf to browser

    Hi,
    does anybody know how to print/show "please wait for your request to be completed..." message when they try to click GeneratePdf button for example
    they way i do serving pdf to the browser is as below
    response.reset();
    response.setContentLength(contentLength);
    response.setContentType("application/pdf");
    response.setHeader("Content-disposition", "inline; filename=\""System.currentTimeMillis()+".pdf"+ "\"");
    output = new BufferedOutputStream(response.getOutputStream());
    while (contentLength-- > 0) {
    output.write(input.read());
    output.flush();and this is what was written in my popup jsp ( when user click GeneratePdf , the application will process it and at the end serve pdf file to the user using popup window )
    <body> <h1>Please Wait for your request to be completed...........</h1> </body> </html>
    <%
    boolean redirect=false;
    try{
    PdfDispatcher.dispatchApplication(response,session);
    }catch(Throwable t){
    System.out.println("Application Dispatcher Exception ... "+t.getMessage());
    System.out.println("Continue as per normal....");
    redirect = true; // will redirect to other jsp output
    if(redirect){
    //go to other jsp
    }The problem is my message above never got printed to the page ( i guess because the browser thinks that the response has not been completed )
    by the time the response has been completed the whole page will be cover in pdf document
    The reason i want to do this because my user complaining that they see blank page for long time when the system is slow to generate/server pdf to them.
    and it would be better to show some "waiting message" when the system is processing the application and server pdf at the end of the operations.
    anybody know how to workaround this?
    Thanks

    just_a_kid83 wrote:
    does anybody know how to print/show "please wait for your request to be completed..." message when they try to click GeneratePdf button for exampleUse JavaScript+DOM. Add a <div> somewhere in the page where the message should be displayed and put the message and an animated 'loading' gif in it. Hide the <div> using the CSS 'display' property which is set to 'none'. Then add an onclick event to the button/link which downloads the PDF file which gets the <div> element by its ID and set its 'display' property to 'block'.

  • How to show SharePoint list items in tab view?

    Hi All,
    I would like to show list items in tab or metro tiles like:
    How to achieve this?
    Thanks in advance!

    Hi Sam,
    you can either use third party controls or create your own using JQuery / Javascript-
    my preference is JQuery UI.
    here are some references-
    http://summit7systems.com/tabbed-web-parts-in-sharepoint-2013-office-365/
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/SharePoint-2010-at-Work-SharePoint-2010-Tab-Page-Peter-Allen.aspx
    http://sympmarc.com/2011/11/09/adding-a-tabbed-view-to-a-web-part-page-using-jqueryui/
    http://kyleschaeffer.com/sharepoint/wp-tabify/
    Metro Style -http://dellakin-smith.com/sharepoint-2010-a-simple-metro-style-dashboard/
    http://www.metaengine.com/2012/03/SharePoint-menu-web-part-with-Metro-style-using-a-DVWP
    Third party - http://www.amrein.com/apps/page.asp?Q=5806 
    note: i dont work for amrein or endorse their product, this product was suggested since it gets has functionalities that you are looking for.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to show "Error List" in SSMS ?

    Hi,
    For unknown reason, when we open the SSMS, we get "Error List" in the bottom. 
    There are columns like: Description / File / Line / Column in the "Error List".
    We just wonder how to turn it on / off ?
    Cheers

    for Display the "Error List" Window (Transact-SQL Editor only)
    you can use this keyboard shortcuts (it depends on the version):
    CRTL+\, CTRL+E  or CTRL+\, E
    You can learn more about the following link shortcuts:
    http://msdn.microsoft.com/en-us/library/ms174205.aspx
    I saw later that you are using version 2005, you may be using a version of Express that shows this?
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • How do I print off of a pop-up window? There are no buttons that I can find!

    The website I use to get my paperwork for my job creates a pop-up window that has my work order in it. I used to use firefox to do this because I was able to scale it down in print preview and reduce the amount of paper I use, but now I can't even print at all! Is there something I'm missing or is it just gone?

    cor-el: WOW can't believe I forgot basic Windows shortcuts. That works the only problem is there isn't a print preview to check things out. Thanks!
    edmeister: I found that Print button a while ago but it will only print the main window as far as I can tell. The window I need is a pop-up that doesn't have any menu buttons. Ctrl+P works though!

  • How to show print dialog as soon as it opens in browser

    I need to open a pdf with print dialog through AcroJS. The code that I used is:
    console.show();
    var pp = this.getPrintParams();
    pp.interactive = pp.constants.interactionLevel.full;
    this.print(pp);
    In order to add the script I used iText. I made a PdfAction object which add the javascript  to the file. I used PdfWriter to set the open action as:
    writer.setOpenAction(PdfAction.javaScript(<script>));
    But it is not working. It gives the following error when I open the pdf.
    InvalidArgsError: Invalid arguments.
    Global.print:1:Doc undefined:Open
    The acrobat reader version is 7. Any help will be appreciated. Thanks in advance.

    Thanks George. Your solution worked to perfection. I was looking at all kinds of twisted scipts and all it took was an event. Thanks again.

  • How to show alv list in Dialogbox  ??

    Hi Experts;
    Im writing an OOP program in abap. Code is below ;
    TYPE-POOLS: SLIS, CNDP , CNTL.
    DATA DIALOGBOX TYPE REF TO CL_GUI_DIALOGBOX_CONTAINER.
    DATA: GRID TYPE REF TO CL_GUI_ALV_GRID.
    DATA: CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    " screen pbo .
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'GUI'.
      IF DIALOGBOX IS INITIAL.
        CREATE OBJECT DIALOGBOX
          EXPORTING
            WIDTH   = 540
            HEIGHT  = 100
            TOP     = 150
            LEFT    = 150
            REPID   = REPID
            DYNNR   = DYNNR.
      IF CONTAINER IS INITIAL.
        CREATE OBJECT CONTAINER
          EXPORTING
            DYNNR          = DYNNR
            PARENT         = DIALOGBOX         " dont work an error CNTL
            CONTAINER_NAME = 'ALV_CONTAINER'.
      ENDIF.
      IF GRID IS INITIAL.
        CREATE OBJECT GRID
        EXPORTING
        I_PARENT = CONTAINER.
      ENDIF.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    then Container  will become create an error. I m how to PARENT container in dialogbox ?
    Thanks for answers
    Regards.
    İrfan

    Check this sample code..
    Create a screen 100, and Dont place any control on that.
    Create the pf status in PBO enable BACK etc.
    REPORT  ztest_dialog_alv.
    DATA dialogbox TYPE REF TO cl_gui_dialogbox_container.
    DATA: grid TYPE REF TO cl_gui_alv_grid.
    DATA: container TYPE REF TO cl_gui_container.
    DATA: it_flight TYPE sflight_tab1.
    SELECT * FROM sflight
    INTO TABLE it_flight
    UP TO 20 ROWS.
    CALL SCREEN 100 .
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS'.
    *  SET TITLEBAR 'xxx'.
      IF dialogbox IS INITIAL.
        CREATE OBJECT dialogbox
          EXPORTING
            width   = 540
            height  = 100
            top     = 150
            left    = 150
            repid   = sy-repid
            dynnr   = sy-dynnr.
        IF grid IS INITIAL.
          CREATE OBJECT grid
          EXPORTING
          i_parent = dialogbox.
        ENDIF.
        CALL METHOD grid->set_table_for_first_display(
           EXPORTING
             i_structure_name              = 'SFLIGHT'
           CHANGING
             it_outtab                     = it_flight
           EXCEPTIONS
             invalid_parameter_combination = 1
             program_error                 = 2
             too_many_lines                = 3
        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.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
    case sy-ucomm.
    when 'BACK' or 'EXIT' or 'CANC'.
    leave to screen 0.
    endcase.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Flow Logic..
    process before output.
    module status_0100.
    process after input.
    module user_command_0100.
    Check it and update.

  • How can I print something from my iPhone to my web enabled Office Jet 8500A ePrint printer ?

    When I select a picture from my iPhone to print, my desktop printer HP OJ 8500A does not show up as an option.  Only vendors i.e. Walmart appear.

    Hello,
    You can refer to this detailed document to setup Airprint on your iPhone to send print jobs to your printer:
    http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/AirPrint-how-to-use-Apple-s-AirPrint-solution-...
    Apart from this, make sure that your printer and phone are both on same network and same subnet.
    Hope this helps.
    I work for HP.

  • How the show parameter form for the report over the web by using an url ?

    hello,
    my url to call my report is :
    http://server/reports/rwservlet?report=rtm0350.rep&desformat=html&userid=un/pw@hostring&server=rep_server&paramform=yes
    but it doesn't show me the parameter form to introduce the parameters and I get :
    'FINISH SUCCESSFULLY'
    has anybnody any idea ?
    thank's

    If this is a 'paper' report then =yes has always worked for me as long you have parameters declared in the report.
    Description Use PARAMFORM to specify whether to display the Runtime Parameter
    Form when you execute a report through CGI or a servlet. PARAMFORM is used only to
    supply parameters to paper layout reports, not JSP-based Web reports.
    Syntax PARAMFORM=YES|NO|HTML
    Values
    &#9632; YES Display the Parameter Form.
    &#9632; NO Do not display the Parameter Form.
    &#9632; HTML Display the Parameter Form in HTML format.
    Message was edited by:
    Bob C

  • Bonjour printer not showing up in Printer List

    I am having trouble adding a bonjour printer (HP PSC 1610). The printer is not showing up in the list of printers under System Preferences > Print & Fax. I was able to add the printer by clicking on the "+" sign. It found the bonjour printer and I clicked "Add." Everything seemed fine, but the printer is not showing up in the list of available printers.
    When I'm in Printer Setup Utility, the Printer shows up when I click View > Show Printer List. I just can't select it when I'm in an application and trying to print.
    I can print to the printer from my G5 which still has OS 10.3.9.
    MacBook Pro 1.83   Mac OS X (10.4.7)  

    I think the reason you haven't got responses is that no one has experience with that. Here are some generic troubleshooting steps to try, one at a time:
    Repair permissions (Disk Utility).
    Delete Print Prefs - search for (File>Find) files that start with com.apple.print and delete them all and reboot.
    Reset Printing System (new in Tiger) - In Printer Setup, click this menu item found just above Quit Printer Setup.
    If there is a downloadable Combination Updater from Apple, use it to re-Update OS X.
    Try Printer Setup Repair from www.fixamac.net.
    Use a Disk Utility like Disk Warrior to repair the HD.

Maybe you are looking for