How to create screen shots

hello,
i am having one basic question. How to create screen shots.
i have forgot the path. can anybody help immediately.

Hii,
If u want take the screen shot there are different free software are there eg: Screen grabber: this is very useful for grabbing the desired the area from the required screen.
2. if u wanna take the comple screen shot then press hot key ALT + Print screen and save it in the word document. if u want add it as a saperate image paste that screen shot in the MS paint and save it as JPEG, so that the size wil in very less.
if it is helpful, reward points.
Regards,\
Muralidharan

Similar Messages

  • How to create screen resolution in bdc table control

    hi gurus
    can anyone suggest me
    how to create screen resolution in bdc table control
    thanks&regards
    mark.

    Hi ,
    Using CTU_PARAMS table for screen resolution .
    For this sample code.
    This is for Transation  FB60.
    report ZZFB60
           no standard page heading line-size 255.
    tables t100.
    PARAMETERS : p_file1  like  rlgrap-filename,
                 p_doctyp like  RF05A-BUSCS,
                 p_invdat like  INVFO-BLDAT,
                 p_posdat like  INVFO-BUDAT.
    CONSTANTS  :  C_TRANS_FB60(4) VALUE 'FB60'.
    *Parameter string for runtime of CALL TRANSACTION
    data : l_option type ctu_params,
           l_subrc type sysubrc.
    DATA :  l_mstring(150).
    data      accnt type char17.
    data       : day   type char2,
                 month type char2,
                 year  type char4,
                 date1 type char10,
                 date2 type char10.
    data      :  cnt(2) TYPE n,
                 cnt1 type i,
                 fld(25) TYPE c.
    data : begin of excel occurs 0,
            fieldname(255) type c,
           end of excel.
    DATA:BEGIN OF it_mess OCCURS 0,
             msgtyp(5),
             lms(200),
              msgv1(50),
         END OF it_mess.
    data: begin of t_record occurs 0,
             BUKRS(004),
            ACCNT(017),
            XBLNR(016),
            WRBTR1(016),
            WAERS(005),
            SECCO(004) ,
            SGTXT(050),
            HKONT(010),
            WRBTR2(017),
            MWSKZ(002),
            GSBER(004),
            KOSTL(010),
         end of t_record.
    *Internal Table for Header Data
    DATA :  BEGIN OF t_head OCCURS 0,
            BUKRS(004),      "Company Code
            ACCNT(017),      "Account or Vendor
            XBLNR(016),      "Reference
            WRBTR1(017),     "Amount in document currency
            WAERS(005),      "Currency
            SECCO(004),      "Section Code
            SGTXT(050),      "Text
            END OF t_head.
    *Internal table for Item Data
    DATA :  BEGIN OF t_item OCCURS 0,
            ACCNT(017),      "Account
            HKONT(010),     "GL Account
            WRBTR2(017),    "Line item Amount in document currency
            MWSKZ(002),     "Tax Code
            GSBER(004),     " Business Area
            KOSTL(010),     "Cost centre
            END OF t_item.
    DATA: IT_BDCDATA      LIKE  BDCDATA OCCURS 0 WITH HEADER LINE,
          IT_BDC_MESSAGES LIKE  BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    *include bdcrecx1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      PERFORM  file_selection.
      PERFORM  data_upload.
      PERFORM  table_control.
    start-of-selection.
    l_option-defsize = 'X'.
    l_option-dismode = 'A'.
    l_option-updmode = 'S'.
    day = p_invdat+6(2).
    month = p_invdat+4(2).
    year =  p_invdat+0(4).
    concatenate day month year into date1 SEPARATED BY '.'.
    day = p_posdat+6(2).
    month = p_posdat+4(2).
    year =  p_posdat+0(4).
    concatenate day month year into date2 SEPARATED BY '.'.
    *perform open_group.
    loop at t_head.
    CLEAR    IT_BDCDATA.
    REFRESH  IT_BDCDATA.
    perform bdc_dynpro      using   'SAPLACHD'         '1000'.
    perform bdc_field       using   'BDC_OKCODE'        '=ENTR'.
    perform bdc_field       using   'BKPF-BUKRS'        t_head-bukrs.
    perform bdc_dynpro      using   'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    perform bdc_field       using   'RF05A-BUSCS'       p_doctyp.
    perform bdc_field       using   'INVFO-ACCNT'       t_head-accnt.
    perform bdc_field       using   'INVFO-BLDAT'       date1.
    perform bdc_field       using   'INVFO-BUDAT'       date2.
    perform bdc_field       using   'INVFO-XBLNR'       t_head-xblnr.
    perform bdc_field       using   'INVFO-WRBTR'       t_head-wrbtr1.
    perform bdc_field       using   'INVFO-WAERS'       t_head-waers.
    perform bdc_field       using   'INVFO-SECCO'       t_head-secco.
    perform bdc_field       using   'INVFO-SGTXT'       t_head-sgtxt.
    cnt = 1.
    cnt1 = 1.
    loop at t_item where accnt = t_head-accnt.
    *if cnt > 4.
    *cnt = 4.
    *endif.
    if cnt1 gt 1.
    CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    perform bdc_field      using   fld                   'X'.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    endif.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    CONCATENATE 'ACGL_ITEM-HKONT(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-hkont.
    CONCATENATE 'ACGL_ITEM-WRBTR(' cnt ')' INTO fld.
    perform bdc_field  using       fld                t_item-wrbtr2.
    CONCATENATE 'ACGL_ITEM-MWSKZ(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-mwskz.
    CONCATENATE 'ACGL_ITEM-GSBER(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-gsber.
    CONCATENATE 'ACGL_ITEM-KOSTL(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-kostl.
    perform bdc_field      using  'BDC_CURSOR'  fld.
    *CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    *perform bdc_field      using   fld                   'X'.
    cnt1 = cnt1 + 1.
    *cnt = cnt + 1.
    *if cnt > 1.
    *perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    *perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    **perform bdc_field       using 'BDC_OKCODE'        '=0006'.
    *endif.
    endloop.
    perform bdc_dynpro      using 'SAPMF05A' '1100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BS'.
    perform bdc_dynpro      using 'SAPMSSY0' '0120'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    *perform bdc_transaction using 'FB60'.
    CALL TRANSACTION C_TRANS_FB60 USING IT_BDCDATA  options from l_option
                                 MESSAGES INTO IT_BDC_MESSAGES.
    perform error.
    perform errordownload.
    endloop.
    *perform close_group.
    *Form  data_upload
    FORM data_upload .
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
       FILENAME              =  p_file1
       FILETYPE              = 'DAT'
      TABLES
        DATA_TAB             =  t_record.
    ENDFORM.                    " data_upload
    *Form  file_selection
    FORM file_selection .
    CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  =  syst-cprog
          dynpro_number =  syst-dynnr
          field_name    = 'p_file1'
        IMPORTING
          file_name     =  p_file1.
    ENDFORM.                    " file_selection
    Form  BDC_DYNPRO
    FORM BDC_DYNPRO using program dynpro.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM = PROGRAM.
      IT_BDCDATA-DYNPRO = DYNPRO.
      IT_BDCDATA-DYNBEGIN = 'X'.
      APPEND  IT_BDCDATA.
    endform.
    *Form  BDC_FIELD
    FORM  bdc_field using fnam fval.
      CLEAR  IT_BDCDATA.
      IT_BDCDATA-FNAM = FNAM.
      IT_BDCDATA-FVAL = FVAL.
      APPEND  IT_BDCDATA.
    ENDFORM.
    Table Control
    FORM table_control .
      LOOP AT t_record.
        ON CHANGE OF t_record-accnt.
          MOVE-CORRESPONDING t_record TO t_head.
          APPEND t_head.
        ENDON.
      loop at t_head.
             t_item-accnt   =  t_head-accnt.
             t_item-hkont   =  t_record-hkont.
             t_item-wrbtr2  =  t_record-wrbtr2 .
             t_item-mwskz   =  t_record-mwskz .
             t_item-gsber   =  t_record-gsber .
             t_item-kostl   =  t_record-kostl.
        APPEND t_item.
    endloop.
         If t_record-level = 'H'.
             t_head-bukrs   =  t_record-text1.
             t_head-accnt   =  t_record-text2.
             t_head-xblnr   =  t_record-text3.
             t_head-wrbtr1  =  t_record-text4.
             t_head-waers   =  t_record-text5.
             t_head-secco   =  t_record-text6.
             t_head-sgtxt   =  t_record-text7.
          APPEND t_head.
         else.
            t_item-accnt   =  t_head-accnt.
            t_item-hkont   =  t_record-text1.
            t_item-wrbtr2  =  t_record-text2.
            t_item-mwskz   =  t_record-text3.
            t_item-gsber   =  t_record-text4.
            t_item-kostl   =  t_record-text5.
         APPEND t_item.
         endif.
      ENDLOOP.
    ENDFORM.
    FORM error .
      LOOP AT IT_BDC_MESSAGES.
        IF IT_BDC_MESSAGES-msgtyp = 'E'.
       SELECT single  * FROM t100  WHERE
                                    sprsl = it_BDC_MESSAGES-msgspra
                                    AND   arbgb = IT_BDC_MESSAGES-msgid
                                    AND   msgnr = IT_BDC_MESSAGES-msgnr.
          IF sy-subrc = 0.
            l_mstring = t100-text.
            IF l_mstring CS '&1'.
              REPLACE '&1' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&2' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&3' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&4' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ELSE.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ENDIF.
            CONDENSE l_mstring.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ELSE.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.
    form errordownload.
    *down the internal table to excel file.
    call function 'EXCEL_OLE_STANDARD_DAT'
               EXPORTING
                    file_name                 = 'c:/Error.xls'
               TABLES
                    data_tab                  = it_mess
                    fieldnames                = excel
               EXCEPTIONS
                    file_not_exist            = 1
                    filename_expected         = 2
                    communication_error       = 3
                    ole_object_method_error   = 4
                    ole_object_property_error = 5
                    invalid_filename          = 6
                    invalid_pivot_fields      = 7
                    download_problem          = 8
                    others                    = 9.
    endform.
    Reward if useful
    Regards,
    Narasimha
    Edited by: narasimha marella on May 13, 2008 12:12 PM

  • How to paste screen shot in the forum editor

    please help
    how to paste screen shot in the forum editor

    Do you see the "Attach Files" button in between the "Preview" and "Post Message" buttons when posting a question or reply? 
    This is how you would attach an image, you can't embed it into the text here.  Also,  I thought that the "Attach Files" functionality had been removed for performance reasons, but you can try it if you see the button.
    Regards,
    Rich Heilman

  • How to attach screen shot in OTN ?

    Dear Friend,
    How to attach screen shot in OTN.
    Thanks

    Upload the image somewhere else and link to it.

  • How to attach screen shot in sdn

    Hi
    how to attach screen shot in sdn
    how to attach attachments
    in sdn i am  unable to see
    screenshots could u give me  about that
    Regards
    sahithi

    hi,
    first take one image and put under
    yourworkspace\yourProjectFolder\src\mimes\Components\com.sap.tc.webdynpro.projectname.ProjectName
    Example:
    i took an Image : sample.jpg
    My Application Name is: Certificatoin
    so put under,
    myworkspace\certification\src\mimes\Components\com.sap.tc.webdynpro.certification.Certification
    Now you included your Image to Server Path, i.e during Deployment, image is automatically loaded into Server.
    From Webdynpro Application, we have one UI Element called Image, In that we have one property called src i.e Source
    give your Image name with file extension
    eg:
    src: sample.JPG or sample.jpg
    extension is very Important, then only you can able to see your Image, also extension is case sensitive so you should take care of that.
    In the place of Image you just consider your screen shot........
    reply your commands....... bye

  • HT5882 How to take screen shot on iphone 5s?

    How to take screen shot on iphone 5s?

    No offense poster, but come on. I'm not one to tell people to "google it" as a response to a question but if told the same correct answer 4 times, you're phone's either broken or you're not trying. This reminds me of my dad asking me to set up his iTunes for the 50th time because he doesn't get the learning is doing thing/me pointing him in the right direction then figuring it out.
    ANYWAY. Far more interesting question. An a-hole sold me a 32 gb iPhone 5 on craigslist and said the volume down button is the only thing that doesn't work. Of course, shoot me for using craigslist, but it's riddled with issues. One being I'm a huge screenshot take and the top bottom is dodgy and either works or doesn't. So. Whenever I need to screenshot, I actually do go to Siri because sometimes the top button isn't functioning. I turned assist ice touch on and can do it like that but then I got into looking at gestures and actions and  wondering if there's a cooler way to maybe peform a gesture that takes a screenshot.

  • How to take Screen shot on N97

    guys please help me out, how to take screen shot in N97?
    Thanks
    Akshara
    N97 Black India
    Attending Nokia Discussion has become new hobby, Thanks to Nokia... for having so many bugs
    Solved!
    Go to Solution.

    ak3_ltw wrote:
    guys please help me out, how to take screen shot in N97?
    Thanks
    Akshara
    Hi Akshara
    try Best ScreenSnap here:
    http://nokia-n97-software.smartphoneware.com/screen_snap.php
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • HT1386 How to take screen shot in 4s , help says hold the home+wake up key but Shen I press Siri comes up

    How to take screen shot in 4s , help says hold the home+wake up key but Shen I press Siri comes up

    Hold the on/off and home buttons for about 1 second, then release simultaneously.

  • Do you know How to Create Screen Layout Rules ?

    Hi,
    Do you know How to Create Screen Layout Rules ?
    Best regards,

    Hi,
    http://help.sap.com/saphelp_45b/helpdata/EN/ae/ea2c7dd435d1118b3f0060b03ca329/content.htm
    Please also read the "Rules of the Engagement" before posting a query on this forum.
    Regards,
    Gaurav

  • How To Save Screen Shot Photo From iPAD to JPEG FORMAT

    How To Save Screen Shot Photo From iPAD to JPEG FORMAT

    The "iPad format" is PNG (which is better quality than JPEG).
    There is no way to choose JPEG at the moment of taking the screen shot. You will need to convert the file using conversion software, probably on your computer. Google "convert PNG to JPEG".

  • How to take Screen shot in ABAP ?

    Dear all ,
    I have come across the situtaion as follows :
    a) Will want to open the file from the desktop
    b) Take the screen shot of that open file
    c) Close the file
    d) Then want to attach that screen shot in the PDF
    e) In the similar way i will do for 4 files and then finally incorpate all these into one PDF and want to send mail  .
    Is this possible in ABAP .
    I am stucked in this situation i open the file then the control is not there in my ABAP program after opening the file .
    Secondly there is no FCODE available for the Print screen key so not able to take screen shot .
    Could anyone suggest me how to proceed for this situation further .
    rgds
    Aryan

    >
    krupa jani wrote:
    > http://camstudio.org/
    Were you able to read----->>>>>>>
    I want through ABAP programming .

  • How to capture Screen Shot

    I was wondering how to capture a screen shot after upgrading to 3.1.3

    Hi all,
    I've just found this thread. I do not know how to capture a screen shot on my iPhone 3G. There are many times I wish I could click on my iPhone the equivilent of "alt-PrtScr" and paste the .jpg into an email or .doc. Am I missing something very simple built into my iPhone 3G 3.1.2? Is there an iPhone app for this function?
    Any help is appreciated.

  • How to take screen shots and post?

    how do i take a screen shot and post it? cant seem to figure this simple thing out?
    thanks lots

    Here is a neat program that is really neat and you can use it for some cool stuff. I made some tutorials with it to show my wife and kids some easy short cuts for programs and other things. It's like Grab on steroids.
    Snapz Pro

  • Could some one please tell me how to take screen shot?

    I was prompted once by the computer to take a screen shot. Now I can't figure out how to do it again.

    Read the os Help menu.

  • How to take screen shot iPad mini

    How do I take a screen shot with iPad mini?

    Simultaneously press the Sleep and Home button. You will notice an on-screen flash. If you have sound enabled, you will hear a camera click.
    The screen shot is stored in Camera Roll.

Maybe you are looking for

  • What's wrong my iPhone 4? (See picture)

    Here's a picture of it: It was used on T Mobile with a Gevey. The slider doesn't say slide to unlock, it says slide for emergency calls only. I have an activated AT&T SIM card since my wife has an activated 3GS with them and I have a microSIM cutter

  • Memory trouble on Mac Pro 2009

    Problem description: i have 24 GB of ram but the machine constantly loads up on inactive memory. leaving me with very little free memory. i was thinking of upgrading to latest OS but unsure since i noticed this issue. Below is the info I got from run

  • Convert iphoto slide show to mov format?

    hello, I just want to ask that, can I convert iphoto slide show into mov format??? I tried to select all pics, and export them as a mov, but the problem is, in the iphoto slide show, the pics can be moved and fit the screen size, but when I i export

  • Just installed Vista 64 bit

    This seems to be a problem for alot of people and I have looked all through the forums, but the replys do not seem to be helping me. I just bought a new computer system and am usuing Vista 64 bit OS. I have downloaded iTunes7.6 64 bit.. After I insta

  • Best Practice EJB 3.0 Question

    I have a web application consisting of 3 projects: - Model (EJB 3.0 Session Beans connected to two different databases) - TagLibrary (custom tag library) - ViewController (Web App / GUI) Currently I am connecting to the EJB Beans using code that Jdev