How can I add attachment files – or photos – to my created Adobe reader XI files?

How can I add attachment files – or photos – to my created Adobe reader XI files?

Hi adel ghonim,
You can add images following the instructions in this Help article: Adobe Acrobat X Standard * Paste images as comments.
You can also add attachments by clicking the paperclip icon in the left column of the Acrobat window...
Please let me know if you need further assistance.
Best,
Sara

Similar Messages

  • How can we add attachment in the PO using BAPI

    How can we add attachment in the PO? I am using the BAPI_PO_CREATE1 function module to create the PO. I am getting a file from legacy system, this I need to add as an attachment into the particular PO through programming.
    Note: After creation of PO the attachment should be available in ME23n transaction.

    REPORT  ZBAPI_PO_CRATE.
    data : PO_HEADER like BAPIEKKOC.
    data : PO_HEADER_ADD_DATA like BAPIEKKOA.
    data : PO_ITEMS like BAPIEKPOC occurs 0 with header
    line.
    data : PO_ITEM_SCHEDULES like BAPIEKET occurs 0 with
    header line.
    data : RETURN like BAPIRETURN occurs 0 with header
    line.
    DATA : BEGIN OF TAB OCCURS 0,
           PO_NUMBER like BAPIEKKOC-PO_NUMBER,
           DOC_DATE(10),
           DOC_TYPE like BAPIEKKOC-DOC_TYPE,
           CO_CODE like BAPIEKKOC-CO_CODE,
           PURCH_ORG like BAPIEKKOC-PURCH_ORG,
           PUR_GROUP like BAPIEKKOC-PUR_GROUP,
           VENDOR like BAPIEKKOC-VENDOR,
           PMNTTRMS like BAPIEKKOA-PMNTTRMS,
           INCOTERMS1 like BAPIEKKOA-INCOTERMS1,
           INCOTERMS2 like BAPIEKKOA-INCOTERMS2,
           PO_ITEM like  BAPIEKPOC-PO_ITEM,
           MATERIAL like BAPIEKPOC-MATERIAL,
           PUR_MAT like BAPIEKPOC-PUR_MAT,
           ITEM_CAT like BAPIEKPOC-ITEM_CAT,
           PLANT like BAPIEKPOC-PLANT,
           NET_PRICE like BAPIEKPOC-NET_PRICE,
           TAX_CODE like BAPIEKPOC-TAX_CODE,
           DELIV_DATE(10),
           QUANTITY like BAPIEKET-QUANTITY,
         end of tab.
    data: itab1 like alsmex_tabline occurs 0 with header
    line.
    DATA: gd_currentrow type i.
    data : PURCHASEORDER like ekko-ebeln.
    Data: tot_rec type i,     "Total Records
         gd_update type i,   "Main Table Increement
    Counter
         gd_lines type i,    "Success Table increement
    Counter
         w_textout like t100-text. "VARIABLE TO GET ERROR
    LOG
    data : begin of it_success occurs 0,
            PURCHASEORDER LIKE ekko-ebeln,  "PROJECT
          end of it_success.
    data : begin of it_error occurs 0,
            pono like  ekko-ebeln,
            err_msg(73) TYPE c,    "TO RETREIVE ERROR
    MESSAGES
         end of it_error.
    data : pono like  ekko-ebeln.
    selection-screen begin of block b1 with frame.
    skip 3.
    parameter:p_infile like rlgrap-filename obligatory.
    skip 3.
    selection-screen end  of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_infile.
      PERFORM value_help.
    start-of-selection.
      call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_infile
          i_begin_col             = '1'
          i_begin_row             = '2' "Do not require
    headings
          i_end_col               = '22'
          i_end_row               = '10000'
        TABLES
          intern                  = itab1
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          others                  = 3.
      if sy-subrc <> 0.
        message e010(zz) with text-001. "Problem uploading
    Excel Spreadsheet
      endif.
    *perform open_group.
      sort itab1 by row col.
    * Get first row retrieved
      read table itab1 index 1.
    * Set first row retrieved to current row
      gd_currentrow = itab1-row.
      loop at itab1.
    * Reset values for next row
        if itab1-row ne gd_currentrow.
          append tab .
          clear tab.
          gd_currentrow = itab1-row.
        endif.
        case itab1-col.
          when '0001'. "PGNAM
            TAB-PO_NUMBER = itab1-value.
          when '0002'. "RONAM
            TAB-DOC_DATE = itab1-value.
          when '0003'. "JVLEVEL
            TAB-DOC_TYPE = itab1-value.
          when '0004'. "FTTYPE
            TAB-CO_CODE = itab1-value.
          when '0005'. "LANG
            TAB-PURCH_ORG =  itab1-value.
          when '0006'. "LTEXT
            TAB-PUR_GROUP = itab1-value.
          when '0007'. "LTEXT
            TAB-VENDOR = itab1-value.
          when '0008'. "LTEXT
            TAB-PMNTTRMS = itab1-value.
          when '0009'. "LTEXT
            TAB-INCOTERMS1 = itab1-value.
          when '0010'. "FTTYPE
            TAB-INCOTERMS2 = itab1-value.
          when '0011'. "FTTYPE
            TAB-PO_ITEM = itab1-value.
          when '0012'. "FTTYPE
            TAB-MATERIAL = itab1-value.
          when '0013'. "FTTYPE
            TAB-PUR_MAT = itab1-value.
          when '0014'. "FTTYPE
            TAB-ITEM_CAT = itab1-value.
          when '0015'. "FTTYPE
            shift itab1-value left deleting leading space.
            TAB-PLANT = itab1-value.
          when '0016'. "FTTYPE
            TAB-NET_PRICE = itab1-value.
          when '0017'. "FTTYPE
            TAB-TAX_CODE = itab1-value.
          when '0018'. "FTTYPE
            TAB-DELIV_DATE = itab1-value.
          when '0019'. "FTTYPE
            TAB-QUANTITY = itab1-value.
        endcase.
      endloop.
      append tab.
      clear tab.
      sort tab by PO_NUMBER.
      DELETE TAB WHERE PO_NUMBER = SPACE.
      loop at tab.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-material
          IMPORTING
            OUTPUT = tab-material.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-PUR_MAT
          IMPORTING
            OUTPUT = tab-PUR_MAT.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-vendor
          IMPORTING
            OUTPUT = tab-vendor.
        concatenate tab-doc_DATE+4(4) tab-doc_DATE+2(2)
    tab-doc_DATE+0(2)
    into tab-doc_DATE.
        concatenate tab-DELIV_DATE+4(4)
    tab-DELIV_DATE+2(2)
    tab-DELIV_DATE+0(2) into tab-DELIV_DATE.
        pono = tab-PO_NUMBER.
        if tab-po_number = pono.
          PO_HEADER-DOC_DATE = tab-DOC_DATE.
          PO_HEADER-DOC_TYPE = tab-DOC_TYPE.
          PO_HEADER-CO_CODE  = tab-CO_CODE.
          PO_HEADER-PURCH_ORG = tab-PURCH_ORG.
          PO_HEADER-PUR_GROUP = tab-PUR_GROUP.
          PO_HEADER-VENDOR = tab-VENDOR.
          PO_HEADER-PO_NUMBER = tab-PO_NUMBER.
          PO_HEADER_ADD_DATA-PMNTTRMS = tab-PMNTTRMS.
          PO_HEADER_ADD_DATA-INCOTERMS1 = tab-INCOTERMS1.
          PO_HEADER_ADD_DATA-INCOTERMS2 = tab-INCOTERMS2.
          PO_ITEMS-PO_ITEM = tab-PO_ITEM.
          PO_ITEMS-MATERIAL = tab-MATERIAL.
          PO_ITEMS-PUR_MAT = tab-PUR_MAT.
          PO_ITEMS-ITEM_CAT = tab-ITEM_CAT.
          PO_ITEMS-PLANT = tab-PLANT.
          PO_ITEMS-NET_PRICE = tab-NET_PRICE.
          PO_ITEMS-TAX_CODE = tab-TAX_CODE.
          append po_items.
          PO_ITEM_SCHEDULES-PO_ITEM = tab-PO_ITEM.
          PO_ITEM_SCHEDULES-DELIV_DATE = tab-DELIV_DATE.
          PO_ITEM_SCHEDULES-QUANTITY =  tab-QUANTITY.
          append PO_ITEM_SCHEDULES.
        endif.
        at end of PO_NUMBER.
          CALL FUNCTION 'BAPI_PO_CREATE'
            EXPORTING
              PO_HEADER                        = PO_HEADER
             PO_HEADER_ADD_DATA               =
    PO_HEADER_ADD_DATA
    *           HEADER_ADD_DATA_RELEVANT         =
    *           PO_ADDRESS                       =
    *           SKIP_ITEMS_WITH_ERROR            = 'X'
    *           ITEM_ADD_DATA_RELEVANT           =
    *           HEADER_TECH_FIELDS               =
           IMPORTING
             PURCHASEORDER                    =
    PURCHASEORDER
            TABLES
              PO_ITEMS                         = PO_ITEMS
    *           PO_ITEM_ADD_DATA                 =
              PO_ITEM_SCHEDULES                =
    PO_ITEM_SCHEDULES
    *           PO_ITEM_ACCOUNT_ASSIGNMENT       =
    *           PO_ITEM_TEXT                     =
             RETURN                            = RETURN
    *           PO_LIMITS                        =
    *           PO_CONTRACT_LIMITS               =
    *           PO_SERVICES                      =
    *           PO_SRV_ACCASS_VALUES             =
    *           PO_SERVICES_TEXT                 =
    *           PO_BUSINESS_PARTNER              =
    *           EXTENSIONIN                      =
    *           POADDRDELIVERY                   =
          if PURCHASEORDER <> space.
            commit work.
            ADD 1 TO gd_update.
            it_success-PURCHASEORDER = PURCHASEORDER.
            append it_success.
    clear:PO_HEADER,PO_HEADER_ADD_DATA,PURCHASEORDER.
            refresh : PO_ITEMS,PO_ITEM_SCHEDULES,RETURN.
          ELSE.
            loop at return.
              it_error-pono = tab-PO_NUMBER.
              it_error-err_msg = return-MESSAGE .
              Append it_error.
            ENDLOOP.
    clear:PO_HEADER,PO_HEADER_ADD_DATA,PURCHASEORDER.
            refresh : PO_ITEMS,PO_ITEM_SCHEDULES,RETURN.
          endif.
        endat.
      endloop.
      DESCRIBE TABLE it_success LINES gd_lines.
      IF gd_lines GT 0.
    *     Display result report column headings
        PERFORM display_column_headings.
    *     Display result report
        PERFORM DISPLAY_SUCESS.
      ENDIF.
    * IF SUCESS FAILS Display Error Report
      DESCRIBE TABLE it_error LINES gd_lines.
      IF gd_lines GT 0.
        PERFORM errorheadings.
        PERFORM errorreport.
      ENDIF.
    *&      Form  display_column_headings
    *       text
    FORM display_column_headings.
      WRITE:2 ' Success Report '(014) COLOR COL_POSITIVE.
      SKIP.
      WRITE:2 'The following records inserted
    successfully:'(013).
      WRITE:/ sy-uline(15).
      FORMAT COLOR COL_HEADING.
      WRITE:/      sy-vline,
               (10) 'Purchase order'(004), sy-vline.
      WRITE:/ sy-uline(15).
    ENDFORM.                    "display_column_headings
    *Subroutine to display SUCESS REPORT
    FORM DISPLAY_SUCESS.
      FORMAT COLOR COL_NORMAL.
      LOOP AT it_success.
        WRITE:/      sy-vline,
            (10)  it_success-PURCHASEORDER, sy-vline.
        CLEAR it_success.
      ENDLOOP.
      WRITE:/ sy-uline(15).
      REFRESH: it_success.
      FORMAT COLOR COL_BACKGROUND.
    ENDFORM.                               "
    DISPLAY_REPORT
    *&      Form  errorreport
    *       text
    FORM errorreport.
      LOOP AT it_error.
        WRITE:/      sy-vline,
                (10) it_error-pono, sy-vline,
                 (40) it_error-err_msg, sy-vline.
      ENDLOOP.
      WRITE:/ sy-uline(104).
      REFRESH: it_error.
    endform.                    "errorreport
    *&      Form  ERRORHEADINGS
    *       text
    FORM ERRORHEADINGS.
      SKIP.
      WRITE:2 ' Error Report '(007) COLOR COL_NEGATIVE.
      SKIP.
      WRITE:2 'The following records failed during
    update:'(008).
      WRITE:/ sy-uline(104).
      FORMAT COLOR COL_HEADING.
      WRITE:/      sy-vline,
              (10) 'ERROR.'(009), sy-vline.
      WRITE:/ sy-uline(104).
      FORMAT COLOR COL_NORMAL.
    ENDFORM.                    "ERRORHEADINGS
    **&      Form  value_help
    **       text
    **  -->  p1        text
    **  <--  p2        text
    FORM value_help .
      CALL FUNCTION 'DSVAS_DOC_WS_FILENAME_GET_50'
        EXPORTING
          DEF_FILENAME     = ' '
          DEF_PATH         = ' '
          MASK             = ',*.*,*.*.'
          MODE             = 'O'
          TITLE            = ' '
        IMPORTING
          FILENAME         = p_infile
        EXCEPTIONS
          INV_WINSYS       = 1
          NO_BATCH         = 2
          SELECTION_CANCEL = 3
          SELECTION_ERROR  = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endform.                    "value_help

  • How can I add contacts in my iphone that are backuped in a pim file in my pc

    how can I add contacts in my iphone that are backuped in a pim file in my pc

    You have to get them from the file you have into iCloud, google, yahoo, outlook.com, AOL, an Exchange server, or some other service the phone can sync with, or into MS Outlook on your PC. Then you can sync them to the phone.

  • How can I insert a number of photos in a numbers doc without the file becoming too large?

    How can I insert a number of photos into a numbers doc without the file becoming too large?

    Use smaller photos.
    Seriously, reduce the file size of the photos in Preview, PhotoShop, iPhoto or other application before inserting tehem into the Numbers document.
    Regards,
    Barry

  • How can I add location to a photo that does not have a gps location? On iPhoto it was easy.

    how can I add location to a photo that does not have a gps location? On iPhoto it was easy.

    You can use the Settings in the slideshow to Show Captions,  either the Description filed be display, the Title field or both.
    If you create the slideshow in iDVD from still photos from iPhoto you can add the Description and/or Title via the settings in iDVD.
    Since iDVD adds both automatically the user must go thru the slideshow and remove those items not wanted.

  • How can i add text to a photo in iphoto

    How can i add text to a photo in iphoto?

    Have a look at this discussions page.   ...
    how to add a text to a photo in iphoto?: Apple Support Communities
    Depends to some degree on what iPhoto version you are running but on the  whole this covers most.

  • How can I add music to my photo slideshow

    How can I add music to my photo slideshow

    You can only select one track via the slideshow button in the Photos app. If you have a long slideshow then you can start music playing in the iPod app and then switch into Photos and start a (no-music) slideshow.

  • How can i download a free version (NOT MALWARE PLEASE) of adobe reader X?

    how can i download a free version (NOT MALWARE PLEASE) of adobe reader X?

    One way to get an older version is to go to the download page at Adobe Reader Install for all versions, Choose "Do you have a different language or operating system?", Select Windows Vista and English. That will give you the option to download X.

  • I am moving all my iphoto pictures to seperate folders outside of iphoto.  I have found iphoto slighlty cumbersome.  After I move all pictures from iphoto to a separate file how can I delete all the iphoto photos without deleting the ones in the file?

    I am moving all of my iphoto pictures into seperate folders becuase iphoto is great, but a bit cumbersome when I need to transfer all the pictures to a external drive.
    1) After I move all pictures, how can I delete the iphoto pictures without destroying the ones I have in files
    2) how can I ensure that I have sucessfully captures all the iphoto files so when I delelte from iphoto I have not forgotten any
    3) is there a way to determine what duplicate pictures I have?
    Thanks!

    If you Control click on the iPhoto Library, you'll see a list of folders - one named "Masters". Inside of this folder are all of your original, high-res photos. You can copy them to other folders if you like.
    You can't delete iPhoto pics without deleting the ones in the iPhoto Library.
    You can copy all of your Masters pics out of the Library, ensuring that you won't forget any.
    I don't know of anyway to determine if there are duplicate photos - most (if not all) have a unique name assigned.
    Good luck,
    Clinton

  • HOW CAN I ADD BORDERS TO MY PHOTOS

    Once my photos are in iphoto how can I add borders or frames to them?  Is there an application for this?

    http://www.iborderfx.com/iborderfx/
    Note that it has not been tested with iPhoto 11, so if you're using that version of iPhoto, use with caution.
    Other than that use an external editor:
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How can i add a caption on photo or video in DW ?

    I have some photos and i like add some text on photo as description (No as part of photo). i like google search, can read this text and clients can highlight text and copy it.
    in my site(above it) : iranmct.com i make with Joomla plugin but like make it in separate css file.

    I have used inline styles to show you
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body style="width: 1000px; margin: auto;">
    <div style="width: 150px; padding: 10px;">
        <div> <img src="http://www.iranmct.com/images/BSC-KPI-PI-12steps-model-de.jpg" alt="" style="display: block; width: 100%;" />
            <div style="text-align: center;">
                This is the caption
            </div>
        </div>
    </div>
    </body>
    </html>
    In a normal situation, give the divisions a class and use the class name for your style sheet.

  • How can I add Text to my photos?

    I would like to add Text to my photos, save the image and upload to be printed at my local Camera and Print Shop.  How do I do this?  I have bought the lightroom 5 book (which is the version I have) but I only find how to add text prior to printing and not how to save the image and print elsewhere.

    OK - so will a Watermark appear on the photo itself?  Or - will it appear on the bottom (within the margins)?  Example - I took some photos of a client's son.  It was his 6 month photo shoot.  I would like to put something like "6 Months Old" in the template of the photo.  Not necessarily on the photo itself - is that possible.  What am I doing wrong?

  • How can i save a selected printer (no default printer) in adobe Reader 10x

    Hi!
    In such cases (large files, ) users will print on a netprinter (copier) and not on windows deafult printer (local).
    Is there a possibility to save the last selected printer (which is different to windows default) in acrobat reader?
    When i start adobereader at next time the Windows default printer is set again !?
    Short:
    Where can i set a own printer for adobereader?
    thx for help

    Where can i set a own printer for adobereader?
    Not possible.

  • How can I edit a form that has "Extend Features in Adobe Reader"?

    I created a form in Adobe Acrobat Pro 9 and added Extend Features in Adobe Reader. I need to edit the form, but "Save a Copy" isn't removing the "Extend Features...". I get an error message that I can't edit the form & to "save a copy" in order to edit. What can I do?

    When I saw the responses, I pulled out an old version and started over. I already deleted the one that wouldn't revert from extended functions and the copy I created to edit it based on removing extended functions with "save a copy". Thanks anyway. I'd love to know why it wouldn't remove extended functions.
    Karen

  • How can I add 100s of old photos to albums on my N...

    Hi - I've just switched to an N80. I've got hundreds of photos from previous phones stored in folders. As you'll know, to get this category effect on the N80 I'll need to add them to albums. Any ideas of how I can do this easily for such a large number of photos and videos? Is there a PC-based application? Incidentally, how does the N80 "know" which photo or video goes in which album, does it add a "tag" to the file or something? Thanks in advance...

    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    (or equivalent Store for your country)
    You will get by email a code which you use in the Mac App Store (in your Applications folder) to download the installer. You will have to have Snow Leopard 10.6.8 installed to be able to do this. If you have an earlier version of !0.6 than this you can download an update in Software update. If you are on an earlier system such as Leopard you will have to purchase Snow Leopard - http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard

Maybe you are looking for

  • Is there a way to extract ALL my music from my ipod touch 1st gen?

    My ipod touch has been really gritty and slow the past few months and im planning in getting a new touch. But ive manually installed music onto it from random computers but i want keep my recent music. I have around 2,000 songs. So is there a way to

  • Issues with groups, users and shares.

    I have created new users and groups and assigned them to specific shares, however when the new users, that belong to the respective groups login, they are not seeing the shares. Can anyone give me some settings to trouble shoot. I had exisiting share

  • Enable Pagination In powerview reports

    Hi  I have created a few powerview reports in Sharepoint 2013 based on SSAS cubes as the datasource. These reports have huge amount of data and I think it woud it be better if we could have some sort of pagination in the reports( Like in SSRS reports

  • May be selling S750 Gigaworks system

    There is a possibility I may be selling my S750 Gigaworks system along with spare parts of the system. It has worked flawlessly for a number of years (after I returned an initial unit that failed after 6 months!). I have not used the unit much and al

  • Hello all..how do XI get installed

    Hi,        this is sateesh.i had installed sap R/3 4.7 and now i want to install sap XI in other system..is it possible that with out ECC can we install sap XI...        i want to keep one system for R/3 4.7 and one system for sap XI..        is ther