IW37N - work order printing: Pop-up window deactivation

Hi,
If the user selects 50 order operations to print in IW37N, then pop-up keeps coming repeatedly for user to enter "OK" 50 times.  How to deactivate this pop-up window?
Infact, this pop-up has started appearing recently while printing any SAP document (invoice etc.).  i.e. issue is not specific to IW37N printing.  But user impact is high for IW37N because of bulk printing.  It happens only in production system, not in quality or pre-production !
Cheers,
Sankar

Hi Pete,
Thanks for your response.
Updating the thread to show how we got this issue resolved.  There is Access Method setting at printer definition level i.e. transaction SPAD, which is usually done by BASIS team.  Activated "No Device Selection at Frontend" to get rid of the printer selection pop-up window.
Thanks,
Sankar

Similar Messages

  • Urgent ....Work Order Printing Simulation

    Hi gurus,
    I want to validate the work order printing before I create work order.
    Say, i only have the routings, how can I do it?
    Response at the soonest possible time is really appreciated.
    Thanks.
    Regards,
    Ching

    Hi Ching
    Unfortunately the CO04N transaction needs to be executed for Prod order. I dont think unless we create a production order we can print it.
    If you have a test system in place you can check the outputs there before moving it to production.
    Please let me know if you need any more info on printing
    Deepak

  • Ouput to Printer (pop-up window) ??

    Hi!
    The following class is called to run (print out to printer) at 11AM every morning.
    ....... at that time , this class generates a "pop-up" window ..... that makes you press a "Print" button to start the print job.
    Can I stop this "pop-up" and have it print out to printer by itself?
    Thanks !
    package AddRFSwitchPac;
    import javax.print.*;
    import javax.print.attribute.*;
    import java.io.*;
    //import .*;
    public class BasicPrint {
        public BasicPrint(){
        try
        String filename = ("C:/OW_A/MoviesAuditLog/TextAreaStart.txt");
        PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
        DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
        PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);
        PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
        PrintService service = ServiceUI.printDialog(null, 200, 200,
        printService, defaultService, flavor, pras);
        if (service != null) {
        DocPrintJob job = service.createPrintJob();
        FileInputStream fis = new FileInputStream(filename);
        DocAttributeSet das = new HashDocAttributeSet();
        Doc doc = new SimpleDoc(fis, flavor, das);
        job.print(doc, pras);
        Thread.sleep(1000);
           catch (Exception e)
            System.out.println(e);
       // System.exit(0);
     

    If you're happt to accept printing to thecomputers
    default printer, just delete the line containing
    printDialog and equare service to the defaultservive
    I concur. There is no need to offer a list of
    printers if you are just going to choose one
    automatically.HI ! ... and thanks!
    I'm sure a typo ... but what is this..... "equare" ?? (below)
    printDialog and equare service
    I took out the "printDialog" line ... and this stopped the "pop-up" and sends print job to printer.
    A problem I'm having now its that when I print ... printer takes in paper , ready to print, but printer doesnt print and throws an error. If I press the flashing button on the printer ... it then prints out the print job fine.
    ..... any Ideas? : (

  • Sales Order Change -- Pop-up  window

    Hi All,
    I have a requirement.
    If some one changes a sales order. A pop-up window should apprear and give some message of what they should do next
    Eg : Please change inco-terms, Payment terms etc.
    Please advice me how I can achive this requirement.
    Any Pseudo code is greatly appreciated.
    Thanks & Regards
    Madhu

    hi ,
    check this...do like this in ur report
    report  z_vishvas_alv1.
    type-pools: slis.
    data: begin of i_outtab occurs 0.
            include structure sflight.
    data:   w_chk type c.                  "For multiple selection
    data: end of i_outtab.
          I_OUTTAB TYPE SFLIGHT OCCURS 0,
    data: i_private type slis_data_caller_exit,
          i_selfield type slis_selfield,
          w_exit(1) type c.
    parameters: p_title type sy-title.
    start-of-selection.
      select * from sflight into table i_outtab.
      call function 'REUSE_ALV_POPUP_TO_SELECT'
           exporting
                i_title                 = p_title
                i_selection             = 'X'
                i_zebra                 = 'X'
              I_SCREEN_START_COLUMN   = 0
              I_SCREEN_START_LINE     = 0
              I_SCREEN_END_COLUMN     = 0
              I_SCREEN_END_LINE       = 0
                i_checkbox_fieldname    = 'W_CHK'
              I_LINEMARK_FIELDNAME    =
              I_SCROLL_TO_SEL_LINE    = 'X'
                i_tabname               = 'I_OUTTAB'
                i_structure_name        = 'SFLIGHT'
              IT_FIELDCAT             =
              IT_EXCLUDING            =
              I_CALLBACK_PROGRAM      =
              I_CALLBACK_USER_COMMAND =
               IS_PRIVATE             = I_PRIVATE
         importing
                es_selfield             = i_selfield
                e_exit                  = w_exit
           tables
                t_outtab                = i_outtab
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.
       MESSAGE i000(0k) WITH sy-subrc.
      endif.
    *****the internal table is modified with a cross sign for marking the
    ***rows selected
      loop at i_outtab where w_chk = 'X'.
        write: /  i_outtab-carrid, i_outtab-price.
      endloop.
    regards,
    venkat.

  • Work Order printer selection through dialog still picking default printer

    Hi,
      When i'm printing Work Order (trx: IW32) programs picks up default printer assigned to the user.
    in my case this also happening when user selects different printer though dilog.
    was trying to get it from NAST-LDEST but in my case NAST is empty and ITCPO pointing to LP01(Local Printer of user).
    can anyone please help how to get printer name which is selected by user.
    Thanks in advance,
    Kian

    Hi,
    Below code show you the way to assign any printer to form. (Pls find the code in you print prog )
    DATA: output_options        TYPE ssfcompop.
    DATA: control_parameters TYPE ssfctrlop.
      output_options-tdimmed       = 'X'.
      output_options-tddest         =  'PR01'. --- > here we can hard code the printer name and pass to FM
      control_parameters-no_dialog = 'X'. 
    CALL FUNCTION fm_name
        EXPORTING
          control_parameters = control_parameters
          output_options       = output_options
          user_settings        = ''
          nota_fiscal            = i_nota_fis
        EXCEPTIONS
          formatting_error   = 1
          internal_error       = 2
          send_error           = 3
          user_canceled     = 4
          OTHERS               = 5.
      IF sy-subrc <> 0.
      ENDIF.
    As you need to know form where the value of output_options-tddest is coming then you can debug the flow and try to find the value of output_options-tddest ...
    Pls tell me if you need to know anything else.
    Regs,
    Lokesh.

  • Corrupt print-pop up window

    Hi
    I have issues with corrupt pop- window for printing. See pictures below. Have tryed both reinstall, uninstall Adobe reader but without success. I'm using version 11.0.05.3 on Win 7 pro - 64bit
    how to solve?

    Hello
    Thanks for the tip but it didn't helped. I deleted Segoe UI fonts thru Registry edit but it didn't helped for acrobat reader. Runned as well repair of reader and restareded pc but there is same status
    any other ideas?

  • IW37N- Work Order View List- PR and PO fields are blank

    Hello,
    We are using IW37n to view workorders list. When we add the PO and PR fields to the view list  they are left blank but we know there are PR and PO related to workorders.
    Does anyone know how to make them display.
    Thanks.

    Hi Pete ,
    I am also facing the same issue .
    I have created a PM order with an external service operation with key ZPM3 .
    Now I have created a service PR from it and then service PO is created and then service entry sheet is done .
    I am using IW37N and I am able to see PR against the PM order but
    under the column" PO Number " there is no value .
    My requirement is to see the list of PM orders ,with PR from them,PO against those PR's , service entry sheet doc no against those PO's.
    which report could show me all these fields and why IW37N is not showing value under PO number.
    Plz help
    REgards
    AM

  • IW37N- Work Order list layout- PR and PO fields are blank.

    Hello,
    We are using IW37n to view workorders list. When we add the PO and PR fields to the view list  they are left blank but we know there are PR and PO related to workorders.
    Does anyone know how to make them display.
    Thanks.

    Hi Pete ,
    I am also facing the same issue .
    I have created a PM order with an external service operation with key ZPM3 .
    Now I have created a service PR from it and then service PO is created and then service entry sheet is done .
    I am using IW37N and I am able to see PR against the PM order but
    under the column" PO Number " there is no value .
    My requirement is to see the list of PM orders ,with PR from them,PO against those PR's , service entry sheet doc no against those PO's.
    which report could show me all these fields and why IW37N is not showing value under PO number.
    Plz help
    REgards
    AM

  • PM Work Order & Inspection Instructions simultaneous printing

    I'm trying to setup QM Inspection Instructions to print when PM Work Order prints. I tried 2 things so far:
    in SPRO:
    QM: Define Print Control, Forms, Print Programs - however, this section only deals with Order Category 50; a non-PM Order category. So I couldn't do anything here.
    PM: Define Shop Papers, Forms and Output programs - here I tried setting up INSP_INSTRUCTION Form with Output program RQEEAS20, and it gives the following message: "ABAP form routine PRINT_PAPER in ABAP RQEEAS20 not found".
    I was wondering if someone can point me in the correct direction of how to setup?

    kolla pushpa  resolved in the QM forum: Re: PM Work Order & Inspection Instructions simultaneous printing?
    Edited by: PMPSMM on Jun 16, 2010 9:25 AM

  • Printing Attachments along with Work Order

    Hi Friends,
    My client has a requirement that the attach a external document (DOC, PDF, XLS) to a work order and wants this document to print automatically along with work order printing.
    How to set this in SAP?

    Nilesh,
    Can you please tell how this issue was resolved for the benefit of others as well. We currently have a requirements where we need to print attachments along with a WO.
    Thanks in advance.
    Mahesh.

  • Need help big time with pop-up window!

    This is probably an easy answer, I'm not a programmer or a back end guy whatsoever, I'm a graphic designer trying to make his way through a project for a client.
    I'm working up a Flash template, and I need to make a simple pop up window that will view a more detailed version of an image.  The template has a pop up window system where you add your photo to a certain frame of a movie clip.  The problem is, the pop ups have scroll bars built in, and for the life of me I couldn't figure out how to get rid of them, so I duplicated one of the movie clips that looked like it housed the framework of the pop up and deleted the scroll bar (I didn't delete any of the scroll bar code because I had no idea what I was doing).  It actually kind of worked, but the pop up window is a bit too wide and doesn't look right.
    You can view my hack job here...
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    Stay on the "Print" page and click the first "01" button and an ad for Ford will come up.  Click the "Detailed View" button in the description to see the pop up window.
    My question is, there MUST be an easier way to make a pop up window than the workaround I'm using with the template.  What I'm trying to do is have a pop up for each sample of the work (all images would be the same size) for the first four buttons, and then for the "Online Banners" page, have the pop up open up to the dimensions of the particular banner ad and play the swf.  The pop ups shouldn't have scroll bars, only a title and the button to close the window.
    To view the template files, you can download them at:
    http://truetilldeathhq.com/main8_v7/main8_v7.fla
    The "descripton" movie clips have the descriptions and the "Detailed View" links in the frames, and the movie clips I not so gracefully butchered to get the pop up to work were TM_page_content_scroll (where you're supposed to put an image in a certain frame and then put the # of that frame in the Actionscript of the "Detailed View" button), and the TM_main_cont_page2 and TM_pop_up_main3, which were the ones I duplicated.
    If ANYONE can offer even the slightest bit of help, I gratefully appreciate it.  I've been working on this thing for like 15 hours a day and I can't even think straight at this point, thanks!

    I admit to not having read everything you wrote... there's just too much of it. But...
    Hashtable (and HashMap, which you should really be using unless you have some external constraint requiring the use of Hashtable) map each key to a single value object.
    That is, you can map from the key string "4996" to one single other object. And then you can also map from a different key to a different object.
    In you put() method, you add a mapping from "4996" to "good", and then you replace that mapping with one from "4996" to "home". There is only ever one value associated with a given key.
    To map multiple values to a single key, you need the value object to be a collection of some kind (or an array). So, you could map your string "4996" to a List, and that list could contain the strings "good", "home", etc.

  • Printer Pop-up Dialog box

    Hi
    I encounter the printer Pop-up Dialog Box appear upon a
    PrintJob is sent.
    Is there a way to ignore or escape this pop up box?
    Regards

    We have currently upgraded 3 instances and it is happening in all 3 on all PC's. Appears that Oracle has it's own pop-up printer window it uses when printing from the PC instead of using the standard one. I imagine it is slow because of it being java. I'd open an SR but they will just say to update to today's version of java. We can't test in other browsers since IE8 is our standard company wide. I haven't got any hits searching MOS or Google on this so was just wondering if others are seeing the same thing. BTW - Our 11i instances work fine and load quick even on the first print but then 11i is using the PC's standard print pop-up window and not a java based one from the applications.
    FYI - Fuound Bug 9202075 which seems to be the same issue except that we are on java 1.6.07. I have opened an SR.
    Edited by: user649511 on May 20, 2011 7:18 AM

  • How to Change Maintenance Work Order Report in EAM Maintenance Super User

    Hi,
    We like to change or create new costom report in place of Standrd EAM Maintenance work order details report in Maintenance super User Responsibility.
    When we go Maintenance Super User > Work Order > Print work order >Layout , In Template layout we find only one LOV called Maintenance report.
    We like to where this this Template LOV storing and Run button code where it's storing
    THANKS,
    Gana

    Hi,
    You could temporarly adjust the CUNI definition for TST so that it can be converted to seconds. Adjust the notifications to set a valid unit of measure.
    The alternative would be to update the field MAUEH in table QMIH with a valid breakdown unit of measure.
    -Paul

  • I have a pop up window that says "Sorry the operation could not be completed because an unexpected error occured (Error code -61). What does that mean?

    I am using a portable USB storage drive connected to my laptop.  I am trying to delete a file from the USB drive but it is not working. A pop up window appears that says "Sorry the operation could not be completed because an unexpected error occured (Error code -61)". What does that mean and how do I fix it?  Thank you.

    All I can tell you is that is a write permissions error. How is this drive formatted? Check the file's permissions. You can try:
    Open the Terminal application in the Utilities folder. At the prompt enter:
    sudo rm -rf
    Leave a space after "-rf" and drag the file into the Terminal window. Press RETURN. You will be prompted to enter your admin password which will not be echoed.

  • Pop Up windows in Reader XI

    I am running Reader XI and there is a problem with pop-up windows within the programme. The printer pop-up window comes up with all the buttons but no text and any other pop-ups are at such a large resolution that they are impossible to manage and read.

    That's in your DPI/PPI settings
    Edit>Preferences

Maybe you are looking for

  • Using Sap Batch Program - RFBIBL00

    Hi, I have gone through the forum in trying to understand the standard sap batch program, but still unable to do so. I have a requirement where I need to use standard sap batch program RFBIBL00 I need to use T.code: F-22 for processing I have a posti

  • How to call pl/sql stored procedure in JDBC query dialogbox

    Hi, how to call pl/sql stored procedure in JDBC query dialogbox(reports 9i) . Cheers, Raghu

  • ASDM not opening in browser!!!!!!!!!

    My ASDM with ASA not working (GNS3) ASDM is 603 and 649 and I am using 8.0.2 and 8.4.2 ASAs, but from browser https://192.168.1.200/ it is not opening. I guess problem of java I installed 1.6.0.07. and other 6 update 34 and 7 update 45 but not workin

  • Itunes library files

    I have moved all my music files to an E drive but I must have deleted the i tune library files from my my documents. How do I reinstate them.? From reading the support from Apple I need them to sync my Ipod. When I open my Itunes I have my entire lib

  • System preferences freezing in Mavericks

    I updated my os to Mavericks, and it somehow changed my timestamp to the year 2000. Now all my applications won't work, and system preferences stops responding every time I try to change the time! HALP, my laptop is now an over glorified solitaire ma