Need to avoid pop-up screen while printing shop paper

hi all ,
we have develop a z program to print shop paper for selected orders based on selection criteria. Once the output displayed (out put contain shop paper , printer,order no and operation no )for selection criteria user will select one or many records from output and click on print button. Once user select the print button the spool request has to be created,
problem :- when we select the print button in output display we are getting print pop-up screen
OutputDevice      
Frontend printer HP
Copies           1
Page selection                     
Name           
Title          
Authorization    
Spool retention pe
Archiving mode   
   Thanks in advance
jayasankar

hi all ,
we have develop a z program to print shop paper for selected orders based on selection criteria. Once the output displayed (out put contain shop paper , printer,order no and operation no )for selection criteria user will select one or many records from output and click on print button. Once user select the print button the spool request has to be created,
problem :- when we select the print button in output display we are getting print pop-up screen
OutputDevice      
Frontend printer HP
Copies           1
Page selection                     
Name           
Title          
Authorization    
Spool retention pe
Archiving mode   
   Thanks in advance
jayasankar

Similar Messages

  • Printing Selection-Screen while printing ALV Grid output display

    Hi,
    I have a requirement wherein I want to print the Selection Screen also while printing the output in simple ALV grid Display.
    Currently when I print the ALV output report, only the header and the Body of the ALV is getting printed. But the requirement is that I also want to print Selection screen along with this.
    If anyone has faced a similar situation, plz let me know what needs to be done in order to print the selection screen also while printing the ALV report output.
    Rgds,
    Nitin

    Hi,
    You can use given function module to print your
    selection screen
    RS_REFRESH_FROM_SELECTOPTIONS
    >This will get Current contents of selection screen
    RS_LIST_SELECTION_TABLE
    >This will Generates list according to values in selection table(RSPARAMS)
    Sample
    CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
           EXPORTING
                curr_report     = p_repid
           TABLES
                selection_table = it_int_tab
           EXCEPTIONS
                not_found       = 1
                no_report       = 2
                OTHERS          = 3.
      IF sy-subrc EQ 0.
        WRITE:1  'Selection Criteria'(i19),
             /1  sy-uline(18),
             /1  'Variant Name'(i21),
             23  sy-slset.
    *--  This function module lists the Selection Screen contents
        CALL FUNCTION 'RS_LIST_SELECTION_TABLE'
             EXPORTING
                  report        = p_repid
                  seltext       = 'X'
                  newpage       = space
             TABLES
                  sel_tab       = it_int_tab
             EXCEPTIONS
                  sel_tab_empty = 1
                  OTHERS        = 2.
    Mark all helpful answers

  • Printing shop paper for Service Order

    Hi,
    I can see for service orders (IW31) shop papers are used to print documents. And shop papers are basically written in sapscript. They are configured in SPRO for each order type along with their program name and subroutine name and form name.
    But my requirement is I want to show a document currently stored in Business Document Service(OAER) when order print button is clicked. I have a program which currently shows a document stored in BDS in a screen upon executing it. But if I configure that program name in SPRO I get a runtime dump.
    Could anybody please help me on that.
    Regards,
    Mainak

    OK...try this:
    in OIDB (notification) remove the selection check for all generic entries - this determines what is shown when you try to print.  For example, if you have a setting for doc.type = * and it is checked for selection, each of those will appear when you print.  By removing this selection check for doc type = *, it won't appear for yours.  You should put a line there for your doc type with the selection checked.  If you put a second line there for your doc type without the 'selection' checked - it will show, but be optional when you do a print.
    In OIDG (work order), follow the same logic.  Once you print the order, it will propose to print the notification as well (either selected or just available).  Also, i think you should link the notification and order types in work order config.  
    This works when you are printing a work order, but i'm not sure if you can print the work order from the notification.  I just tried this in my system and did get the notifications to print while printing the work order using the settings i've mentioned.

  • Blue screen while printing to PDF with Adobe

    Hi,
    I'm using Adobe Acrobat to produce PDF files. A few days ago, all of the sudden, each time I try to create a PDF with the virtual printer, I get a "Blue Screen Of Death" reporting some problem on the win32k.sys file.
    I'm using Windows Vista Professional 32 bits and Adobe Acrobat 9.
    Best regards.

    Which version of AA9. There have been 7 updates or so. You might try a repair and then do any uninstalled updates (in order, they are not cummulative). The repair may resolve the issue or you may have run into some other bug that the updates might fix.

  • Set Controlling Area pop up window - while creating Shopping Cart

    Hi SRM Experts,
    I am getting Popup Window to Set Controlling Area when I click on Add to Shopping Cart in Shopping Cart Creation Process.
    Problem Explanation: I went to Shopping Cart Creation from SRM (4.0) Web Browser -> Describe Requirement -> entered the details description, quantiy, unit-> clicked on Add to Shopping -> here I am getting Popup Window - Set Controlling Area.
    This is strange issue for me.
    Could you please guide me or provide solution.
    Thanks a lot in advance for your help.
    Thanks,
    Sudarsan

    Hi Deepti,
    Thanks a lot for your response.
    I have gone thru the note 883578. Still I have the same issue in my system.
    I am working on SRM 4.0 with Support Pack 7 (SAPKIBKS07) and extended classic scenario.
    Please let me know any one has an idea to get solution to my issue.
    Thanks,
    Sudarsan

  • Print preview screen always appears in IW38 while printing order.

    Hi Experts,
    I have a user who always gets a print preview screen while printing orders from orders list page in IW38 T-Code.
    Now we have tried to set his printer as default in SU3 T-Code,
    Also we have  selected the Print Immediately Option,
    In addition to this, we have unchecked the Print Dialog Box in the IW32 for thisuser.
    Now while testing we ourselves are not getting any print preview screen,
    However the user is getting the same.
    Can anyone please explain why he is always getting the print preview prompt.
    This might be a little out of PP/PM domain, but please help if possible.
    Thanks
    Adarsh

    Hi,
    You can use given function module to print your
    selection screen
    RS_REFRESH_FROM_SELECTOPTIONS
    >This will get Current contents of selection screen
    RS_LIST_SELECTION_TABLE
    >This will Generates list according to values in selection table(RSPARAMS)
    Sample
    CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
           EXPORTING
                curr_report     = p_repid
           TABLES
                selection_table = it_int_tab
           EXCEPTIONS
                not_found       = 1
                no_report       = 2
                OTHERS          = 3.
      IF sy-subrc EQ 0.
        WRITE:1  'Selection Criteria'(i19),
             /1  sy-uline(18),
             /1  'Variant Name'(i21),
             23  sy-slset.
    *--  This function module lists the Selection Screen contents
        CALL FUNCTION 'RS_LIST_SELECTION_TABLE'
             EXPORTING
                  report        = p_repid
                  seltext       = 'X'
                  newpage       = space
             TABLES
                  sel_tab       = it_int_tab
             EXCEPTIONS
                  sel_tab_empty = 1
                  OTHERS        = 2.
    Mark all helpful answers

  • To get a pop up screen in Module pool

    Hi,
    Can any one tell me how to get a pop up screen while clicking a button in selection screen in module pool program.
    regards,
    Ruchika saini

    Hi Ruchika,
    This is the function module used in the program .
    CALL FUNCTION 'POPUP_TO_CONFIRM'
               EXPORTING
                    titlebar              = 'Question'
                    text_question         = 'Want delete records old table'
                    text_button_1         = 'YES'
                    text_button_2         = 'NO'
                    display_cancel_button = ' '
                    start_column          = 25
                    start_row             = 6
               IMPORTING
                    answer                = answer.
    Regards,
    Nihar Swain.

  • Print Shop Papers in Smartforms

    I've got a task to print Shop Paper in Smartform. The SAP standard form was PM_JOB_TICKET and print driver was RIPRJT01. The transaction to print (in Sapscript format) Shop Paper is IW3D. I'm an ABAPer so I know how to convert form from Sapscript into Smartform. But I don't know how to make transaction IW3D to print my Smartform. I tried to change Output program, Form routine & Form name under transaction OIDF but it seems I cann't link a Smartform name with this transaction. Can you please help urgently?

    Rohit,
    I have just read your response. Thanks for that, can l just get some clarification on a couple of things.
    1. Are you saying that you did get SMARTFORMS working for PM ?
    2. If so, did you do this by getting the SAP Script to call the SMARTFORMS ??
    Thanks in advance
    Julie Tonkin

  • Printer Information from the pop-up screen

    Hi,
    On the SAP screen I work, we have an option to print (button called)  "print form".
    When clicking on this button, a pop-up screen is displayed to select the print devices and then
    option print the list of documents displayed on that screen.
    How do I get the information as which printer is selected on this pop-up screen ?
    Also,
    It would be helpful, if some one would tell me how to get the status of the printing job.
    If there was an error while printing or is it successfull ?
    Regards,
    Vijaya

    Go to SYSTEM --> SPOOL REQUESTS and you will find all the print jobs and also their status.
    The printer that gets selected in the pop-up screen can be because of the default printer for that user or because of some condition record.
    Default Printer :
    Go to SYSTEM --> USER PROFILE --> OWN DATA , in the screen that appears click on ATTRIBUTES tab. There is a Output device field. The printer appearing here is the default printer.
    hope it was useful.

  • Avoiding Dropped Frames While Printing to Tape

    Hi everyone. Quick question. I'm trying to avoid dropped frames during playback while printing to Mini DV, and I just read the article everyone links to about ways to do it.
    Some solutions are to reduce playback quality, lower framerate, change RT to unlimited, turn on Play Base Layer Only, etc. I was just wondering if any or all of these solutions will affect the quality of my sequence on Mini DV. I see that the lower framerate does, but the others, I can't really tell on my small camera screen.
    Thanks.

    ... reduce playback quality, lower framerate, change RT to unlimited, turn on Play Base Layer Only, etc...
    Most of these settings are for playback only and are ignored for printing to video/edit to tape.
    Did you read this thread?:
    http://discussions.apple.com/thread.jspa?threadID=1403093&tstart=0
    Jerry's tip to export a Selfcontained movie first is a very good workaround.
    Andy's tips are very important too.
    And finally, if your footage is on an external firewire drive, I want to tell you the importance of having an extra firewire card to make sure that your camera is on another firewire bus than your disk(s). (On your G5 all firewire ports are on the same bus and the camera slows down the bitrate of the whole chain. And so can cause dropframe problems)
    Rienk

  • This is about iPhoto:  I need to print the FULL IMAGE as shown on the screen:  the image is SQUARE (equal on four sides).  iPhoto keeps cropping it into a rectangle - THIS IS NOT ACCEPTABLE!  How do I get what I see on the screen in print form???

    I need to print the FULL image as shown on the screen - the image is SQUARE (equal on all four sides).  iPhoto keeps cropping it into a rectangle - this is not acceptable!  How do I get what I see on the screen into print form?

    Like Terence explained:
    OT

  • Aperture 3 shuts down every time I try to use it after only using it for one minute. Aperture closes then a pop up screen asks if I want to reopen Aperture. If somrone at Aperture didn't keep pushing a stop button for it to close,it wouldn't need to ask t

    Aperture 3 shuts down every time I try to use it after only using it for one minute. Aperture closes then a pop up screen asks if I want to reopen Aperture. If somrone at Aperture didn't keep pushing a stop button for it to close,Apple wouldn't need to ask the stupid question"Do you want to reopen Aperture?" to begin with. Anyone out there having the same annoying problem?? I like Aperture or used to anyway,but if this nonsense continues, I will be forced to buy some other editor besides "No hanging fruit - Adobe photoshop CS5" or "I don't like you so I'm shutting down - Aperture".

    Hello,
    sorry to hear about your troubles, but we will need to have more technical information about your problem to be able to help you:
    There may be several reasons that can cause Aperture to crash on start up:
    You may have imported an image (or video) in an encoding that Aperture does not support, or that is larger than 2 GB, or that is corrupted and Aperture cannot process it
    Your Aperture Library or Preferences may have been corrupted
    Or you are having a system wide problem with your machine.
    Or you may simple be running out of disk space.
    It would help, if you could post the crash log from your last crash. Also, more details on your Aperture Library: Is it managed or references? how large is it? Is it on your system drive or on an external drive?
    What have you done, shortly before the trouble started? Have you imported new images or videos? Did you install any plug-ins or any new software, lile Final Cut?
    Try, if you can get Aperture to launch, if you defer the generation of Previews: Hold down the SHIFT-key immediately after you start Aperture to prevent preview generation for that session. If a damaged image in your library is preventing normal opening, this may allow you to start Aperture. If this succeeds, try to identify the broken image or video among the images you recently imported and remove it from the library.
    Regards
    Léonie
    Don't you think your user name is a little bit tactless in an Apple provided forum?

  • Pop up screen needs to be added to standard tcode

    Hi all ,
    "How to add a pop - up screen to standard Tcode. "
    I want to add a pop up - screen to the tcode : CO15.
    In this Tcode i will enter the Production order and press enter.
    In the next screen I will give the quantity (for eg. 5) for that production order and also date fields .
    When I click on the save button, I want to display a pop-up screen giving all the 5 items and also checkbox for each item. The user will then check whatever number of items he wants for eg he will check 3 items and press enter button which(enter button) also needs to be put in that pop up screen. 
    Next time he want to check the other 2 items also.Initially he has checked the 3 items.
    So this time the POP-UP screen should display the rest 2 items which were not checked .
    Edited by: peter k on Oct 27, 2008 5:24 AM

    Was it a pop-under?
    Because far as I know they couldn't fix that. Only stop pop-ups.
    If you want to stop them for real, then install Firefox web browser and the NoScript add-on.
    Head to Firefox toolbar > customize and drag the Temp Allow All Button to the toolbar area.
    When you surf, your Javascript will be turned off by default, and if you need it, then you click the Temp Allow All Button and it loads, therefore reducing the pop-unders and pop-ups drastically.
    Also add Ad Block Plus too for more less hassle free surfing.

  • Need a character which can nullify a tab while printing a variable

    My variable has data as  vinod,,reddy,,g
    When, I am passing to script it should print as it is, but it is printing as vinod                     reddy                           g
    This is causing error to read the text as lot of space is coming inbetween...
    I know ,, will act as tab in Script. But need some character which can be placed inbetween the data of ,, so that it gets nullified in sap script while printing and data prints as vinod,,reddy,,g

    declare variable like data: lv_space type char10 value '          '
    pass vinod &lv_space& reddy &lv_space& g.

  • I can't get my project to share. A pop up screen comes up saying, "This item can't be shared while it is still referencing media on the camera". Does anyone know what this means.

    I can't get my project to share. A pop up screen comes up saying, "This item can't be shared while it is still referencing media on the camera". Does anyone know what this means. I'm confused because I don't have a camera hooked up to my computer.

    may you have directly imported clip to timeline without copying it to local drive..
    update project for links and check if missing clips are there..
    reconnect it if you have it on local drive..

Maybe you are looking for