Printing the "Grab" screen selection

When I print a "Grab" screen selection I don't get the entire selection. I get about 2/3's of it starting from the left so I'm losing the right 1/3 of the selection. Anyone know how to solve this problem and get the entire selection to print?

Save it as an imag file on your desktop and print it via Preview. You can rescale the image to fit the page in the print dialog box.

Similar Messages

  • Is it possible to print the current screen in Module pool program(Dynpro)?

    Is it possible to print the current screen in Module pool program(Dynpro)?
    I create a Module pool program , and customer hope can print the screen when they click print button, Is it possible?

    Does the customer want a screen shot or what? Please elaborate on your requirement.
    Maybe you should create a smartform first, which is called when one clicks on print button. But in fact, we need a bit more info than this.

  • Print the custom screen

    hi
      I need some clarifications in the module pool programming. I need to print the custom screen. Is there any standard function module or a standard program which prints the screen

    HI
    fcode for print is fcode = 'UTPR'.
    call function 'SET_EDITOR_HANDLE'
    call function 'SWITCH_FRAMEWORK
    call method get_cursor
    call method source_instance->get_state
    if me->editormode-casemode = '0' or
    me->editormode-casemode = 'L'.
    case_mode = 'LOWER'.
    elseif me->editormode-casemode = '1'.
    case_mode = 'UPPER'.
    elseif me->editormode-casemode = '2'.
    case_mode = 'HIKEY'.
    elseif me->editormode-casemode = '3'.
    case_mode = 'LOKEY'.
    endif.
    cursor-new_index = cursor-index.
    cursor-new_offset = cursor-offset.
    me->edit-buf_scline = content_display..
    me->edit-buf_culine = cursor-index.
    me->edit-buf_cuoffs = cursor-offset.
    if source_instance->l_control_instance_identical = space.
    source_instance->l_backend_actual =
    call method source_instance->get_source_tab
    call method source_instance->get_compressed_source
    describe table content lines content_fill.
    call method source_instance->set_lineindex.
    call method source_instance->get_lineindex
    importing
    lineindex = lineindex[].
    call method source_instance->get_linenumbers
    importing
    linenum = linenum[].
    call method source_instance->get_modification_inf
    call method source_instance->get_state
    call method source_instance->get_change_information
    call method me->get_editor_mode
    CALL FUNCTION 'SET_EDITOR_HANDLE'
    Hope this is useful.....
    Regards,
    Pavan

  • How to print the dialog screen result

    Experts,
    Iam using dynpro and as a result a graph is printed on the screen container. This is my final screen and I want to take a print of that container with graph. so I have activated the print button in the functional keys by selecting the normal application function type.
    my screen output is graph as i said.
    My program code is like below
    PROGRAM  Z_GRP_PRT.
    TYPE-POOLS: GFW.
    DATA PARAMS LIKE PRI_PARAMS.
    DATA: OK_CODE TYPE SY-UCOMM,SAVE_OK LIKE  OK_CODE,
          VALUES TYPE TABLE OF GPRVAL WITH HEADER LINE,
          COLUMN_TEXTS TYPE TABLE OF GPRTXT WITH HEADER LINE.
    DATA: DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    MODULE STATUS_1000 OUTPUT
    MODULE STATUS_1000 OUTPUT.
      SET PF-STATUS 'YUSR1'.
      REFRESH VALUES.
      REFRESH COLUMN_TEXTS.
      VALUES-ROWTXT = 'Prod1 '.
      VALUES-VAL1 = 1.
      VALUES-VAL2 = 5.
      VALUES-VAL3 = 6.
      VALUES-VAL4 = 7.
      APPEND VALUES.
      VALUES-ROWTXT = 'Prod2 '.
      VALUES-VAL1 = 0.
      VALUES-VAL2 = 5.
      VALUES-VAL3 = 2.
      VALUES-VAL4 = 5.
      APPEND VALUES.
      COLUMN_TEXTS-COLTXT = 'time1'.
      APPEND COLUMN_TEXTS.
      COLUMN_TEXTS-COLTXT = 'time2'.
      APPEND COLUMN_TEXTS.
      COLUMN_TEXTS-COLTXT = 'time3'.
      APPEND COLUMN_TEXTS.
      COLUMN_TEXTS-COLTXT = 'time4'.
      APPEND COLUMN_TEXTS.
      CALL FUNCTION 'GFW_PRES_SHOW'
        EXPORTING
          CONTAINER         = 'CONTAINER'
          PRESENTATION_TYPE = GFW_PRESTYPE_LINES
        TABLES
          VALUES            = VALUES
          COLUMN_TEXTS      = COLUMN_TEXTS
        EXCEPTIONS
          ERROR_OCCURRED    = 1
          OTHERS            = 2.
      IF SY-SUBRC <> 0.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.                 " STATUS_1000  OUTPUT
    MODULE USER_COMMAND_1000 INPUT
    MODULE USER_COMMAND_1000 INPUT.
      OK_CODE = SY-UCOMM.
      SAVE_OK = OK_CODE.
      CASE SAVE_OK.
        WHEN 'EXIT' OR 'BACK'.
          LEAVE PROGRAM.
        WHEN 'PRINT'.
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            EXPORTING
              DESTINATION      = 'LOCA'
              COPIES               = COUNT
              LIST_NAME         = 'TEST'
              LIST_TEXT           = 'Test NEW-PAGE PRINT ON'
             IMMEDIATELY    = 'X'
              RELEASE            = 'X'
              NEW_LIST_ID       = 'X'
              EXPIRATION         = DAYS
              LINE_SIZE            = 79
              LINE_COUNT        = 23
              LAYOUT               = 'X_PAPER'
              SAP_COVER_PAGE = 'X'
              RECEIVER            = 'SAP*'
              DEPARTMENT      = 'System'
              NO_DIALOG          = ' '
            IMPORTING
              OUT_PARAMETERS = PARAMS
              VALID          = VALID.
          IF VALID = 'X'.
            NEW-PAGE PRINT ON PARAMETERS PARAMS NO DIALOG.
            WRITE / 'First line'.
          ENDIF.
    NOTE : Following code is tried and not printing anything so commented **********
       WHEN 'PRINT'.
         data : lv_program type sy-repid,
                lv_dynnr   type sy-dynnr.
                lv_program =  sy-repid.
                lv_dynnr   = sy-dynnr.
         CALL FUNCTION 'RS_SCRP_PRINT_IN_LIST'
             EXPORTING
               dynnr = lv_dynnr
               Progname = lv_program
               fullscr = 'X'
               EXCEPTIONS
                 cancelled = 1
                 not_found = 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1000  INPUT
    Now, Iam getting a print out like
    SAP logo printed with stars and with all the parameters I have passed to the function module
    Iam not getting the graph as my output. I have tried another code calling 'RS_SCRP_PRINT_IN_LIST'. It is not even giving me any reply. The screen just blinks one time when I press the print button on the screen when I use the commented code function module.
    I just want to print a graph in the screen container. Should I have to convert the screen graph as a list ?
    Then how to do it. Post the complete code of any possible help. Please help me with this and keep my thanks in advance.I don't want to use hard copy.

    please  go through the link   here it was  give the step  .. first you have to create the short cut of the  sap desktop  ......  
    <a href="http://">http://www.sapdevelopment.co.uk/tips/debug/debug_popup.htm</a>
    reward  points  if  it is  usefull ...
    Girish

  • How to print the output of the screen in Dialog Programming

    Hi,
    Could anybody help how to print the output of a screen in the dialog programming. i can select 'Hard Copy' option in the 'Custumizing of Local Layout' Icon in the standard tool bar. but that prints the whole screen with the toolbar. i want to print only the output which is displayed on the screen. Please help..
    Regards,
    Swathi

    Hi Swathi,
        Ok. Do One thing. Go to menu bar and select Systems -> Own pool Request -> here you get the spool number. Select it and select the option "Print Directly" in tool bar.
    Thanks.

  • Help: how to add a button to print the screen

    Hi,
    I am working on a set of forms. One of the feature user ask is to place a "Print Screen" button on the form so that user will be about to simply print the form screen.
    Any help will be greatly appreciated.
    Thank you in advance.
    Jimmy

    Thanks Rosario. I did that but it seems not working. In fact, I added a form level trigger key-PRINT and put "print;"
    Anyway, what does it really do? I think that it should not be identical to Print-Scrn on the key board.
    Jimmy
    Message was edited by:
    WJH

  • Printer keeps defaulting from a selection on another website & won't print the page. H E L P !

    days ago i was in a govt site & unable to print a page. now i'm in a different govt site & instead of printing the page i selected, it continually prints the page from days ago! it's like i can't clear the queue!! H E L P !

    Try to reset your printer settings
    *https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox#w_reset-all-firefox-printer-settings

  • The GRAB option in all application

    Out of curiosity I went to Safari tried the option of Safari > Services >Grab but the options -screen-selection-timed screen are grayed out...I couldn't use those options if I wanted. Why are they grayed out in all the aplications?

    Refer to Grab Service Commands Dimmed in Finder where the key part about Grab via the Services menu is Grab services are available in applications that support services and can accept the result of the service
    So the receiving application has to have services support encoded into the progran and has to know what to do with the PNG picture created by Grab. Safari is a HTML viewer, not a dedicated graphics viewer (on the other hand, open a new window in Graphic Converter and the Services> Grab options are active).
    You can always launch Grab manually through Applications> Utilities. Most people memorize (or write down on a Post-It™ note!) the keyboard shortcuts as noted in Mac Help:To take a picture of the whole screen, press Command-Shift-3.
    To take a picture of part of the screen, press Command-Shift-4, then drag to select the area you want in the picture.
    To take a picture of a window, the menu bar, the Dock, or other area, press Command-Shift-4, then press the Space bar. Move the pointer over the area you want so that it's highlighted, then click. If you decide you want to drag to select the area, press the Space bar again.
    If you press Command-Shift-4 and decide you don't want to take the screen shot, press the Escape key.
    Screen shots are saved as files on the desktop. If you want to put the screen shot in the Clipboard, rather than create a file, hold down the Control key when you press the other keys. You can then paste the picture into a document.Note that for legal copyright protection reasons, you can't use Grab or the keyboard shortcuts to capture iDVD or DVD Player windows.

  • Print option:-  to print the entire JFrame and its components

    I have created a screen using JFrame.
    The screen contains components such as a graph, combobox, tabbedpane and JTable.
    Now we have given 2 options to the end user, either to print the entire screen(JFrame) or
    the contents available in the table.
    My query is , how can i print the entire screen(all the components must be printed),
    is there any api available for this purpose.
    If possible provide me some sample codes.

    <h3>{color:#ff0000}Cross posted{color}</h3>
    [http://forum.java.sun.com/thread.jspa?threadID=5286030]
    Cross posting is rude.
    db

  • How to put print option in diolog programming to print the output

    my requirement is to put  one print button in the out put of a dialog program  .
    but i tried a lot  but not able to solve.
    so anyone could help me.
    to sole the issue

    Check the below link
    {[code}Re: printing the dialog screen|Re: printing the dialog screen]
    This may help you.

  • How to print the selection screen variant as a report header

    I want to print the variant selected on the selection screen as a report header in the report painter.....Kindly help....The variant selected prior to generating the report painter output must be displayed on the final output screen as the header on the screen...

    Hi
    Here you've to use 'Z_HEADER_FOOTER' function module at TOP-OF-PAGE
    Just pass parameters for report_name                 as repid
                                              show_select_options  as 'Y'
                                              show_parameters       as 'Y'
                                              line_size                       as you wish
                                              action                           as 'X'
    Hope this fulfills your requirement
    Thanks
    Suren

  • Simple question - How do you print the Purchase History screen?

    I don't see an option in the file menu and there is no print button.

    There isn't any print button, and I know of no easy way to do it.
    You can use command + shift + 3 to take a screen shot, or command + shift + 4 to take a shot of a portion of your screen.
    Or take a picture of your screen with Grab:
    Open Grab (located in the Utilities folder in the Applications folder) and choose a command from the Capture menu.
    Selection: Takes a picture of a part of the screen that you select.
    Window: Takes a picture of a window you select.
    Screen: Takes a picture of the entire screen.

  • How can i print an Excel file when in the full screen mode (no print options on toolbar or right clk

    using Vista, sometimes after creating and saving an excel file, the document is not visible when the file is reopened.
    selecting full screen mode makes the document visible, but the toolbars disappear and the print option does not show up on a right click.  How can i print the document and see the document in some other mode than full screen?

    In order to print, you can click the CTRL+P keys to launch the print dialog,
    Regarding the missing toolbar, try clicking the ALT key to shouw the software menu, then look around under the view option for any available toolbar settings,
    If you cannot find it, i would recommend you to try the Microsoft support forums, as they have some more knowledge with their software features
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How do I print only the text on the monitor screen?

    I would like to be able to print only that portion of a text that is on the monitor screen. How do I do that?
    I have an Epson Workforce 325 printer, and an HP desktop computer PC

    Please see the following to print only the text portion of the web page. I am assuming you wish to print just the text & not the ads or additional irrelevant items to avoid wasting ink.
    See:
    [[Printing a web page]]
    '''If this solved your issue, please select ''solved ''& chose the appropriate ''solution'' to close this ticket/question posting'''.

  • Is there any way to print a Pages document that includes the on screen highlights?

    Hello,
    For my studies I have to read and then highlight a number of online documents. By mistake I opened one in pages instead of PDF form and highlighted it that way.
    Is there any way in which I can print out the document with the on screen highlights included?
    I have tried converting the document to a PDF form but once that happens it loses the highlights - I don't really have enough time to go through and re-highlight this in PDF form.
    Thanks!

    Pages (v5.2.2/v5.5) true highlight capability is not Insert > Highlight — which is actually the Author color that won't export or print. To actually select words and place a true highlight behind them, use the Advanced Options menu, and Character Fill Color. The Advanced Options menu is the gear icon adjacent to the underline button on the Text Font panel.

Maybe you are looking for

  • REPORT : Sales orders against letter of credit

    Do we have standard T code from where we can filter sales order against letter of credit

  • How to use wsit with jeveloper for developing and testing web servises

    hi, all. Just want to ask one realy simple quastion. I'm new with web servises, so my question may be doesn't fall well into this section , but this community looks friendly for me and i hope to get some usefull links and advises. First of all could

  • Clock-in/out runtime error in Netweaver UI5 portal

    Dear Experts Following error is runtime error for the service clock-in/out in the portal when i click on the service,i m getting the runtime error(in ST22) Category                        ABAP Programming Error Runtime Errors              MESSAGE_TYP

  • I can't properly sync PDF files onto my iPad!

    You see I have numerous PDF files on my iPad. But whenever I try to sync a new one I'm forced to also resync all of my old files too along with my apps that have already been synced! This is obviously frustrating because it takes 10 minutes for every

  • Apps spread out over several screens - only 4 or 5 to a page

    Guys, Apologies if this is something that comes up regularly but I've noticed my apps are strangely spaced out. After the first screen I scroll across to find 4 apps, then scroll across to another screen where there are 5 apps. Why are these not all