How to attach pdf to  view

Hi
  How to attach a PDF to my view using file upload UI element and how to save.iam using ECC 6.0 as backend.
Thanks
Rahul
Edited by: rahul raao on Feb 24, 2009 7:12 AM
Edited by: rahul raao on Feb 24, 2009 8:06 AM

Hi,
You can use Adobe Forms in Web Dynpro Java for pdfs. You will need to do some server configurations also.
In NWDS Web Dynpro perspective, when you create a project, you will be able to create an InteractiveForm UI Element in any view. You need to set the 'datasource' property to some context node with attributes. You open the Adobe Designer for this InteractiveForm UI Element by choosing the context menu option 'Edit'. You can create some form elemnts for it by dragging the attributes of the binded datasource node from 'Data View' to the form preview area. When you build, deploy & run your application after this, you get this form in the browser. You can now save this form as pdf.
You can refer to https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/7.0/adobe/how%20to%20handle%20table%20input%20and%20output.pdf (Using Table in Adobe Form)
Hope this helps you.
Kind Regards,
Nitin

Similar Messages

  • How to attach pdf in e-mail?

    How can I attach pdf-files saved on my phone in an e-mail? Can attach pictures only.

    Hi,
    Although you cannot include other files than pictures in the standard email app, there is another way that does not require OneDrive and is very flexible. It uses the Files app (Microsofts own version) and has the "Share" operation as its central approach. After installation of this app (which is very handy anyway) take the following steps:
     With the files app, create a folder (and call it for example "Email Attachments") and put any combination of documents in there that you want to include in a new mail (you cannot add to an existing mail). You can use the Files app to copy/move folders in any way you like (contrary to IOS and Android, WP has a complete file structure)
    Select this folder (or alternatively: select all files in this folder)
    Then press the "Share" button at the bottom of the screen in the options menu: now your own regisrered email adresses show up (among all other sharing options)
    Select one of your registered email adresses: a new email with this adress as the sender is created and all documents are already attached
    Write/copy the email text, the header and add the address of the recipient (can be done quickly with the +button if the recipient is in your People list), then you are ready to send it.
    Although I agree that the email app should include the option to attach any kind of document, the above approach works very well and is very flexible too and centers around the well-implemented sharing process. Do not forget to collect the documents as described above before writing the email text ...
    BR, Nexhmije

  • How to attach PDF file to product catalog in Internet Sales R/3

    Hi Experts,
    We are implementing SAP E-Commerce (Internet Sales) for mySAP ERP or SAP R/3, release 5.0.
    I need to attach a PDF file to the product in the product catalog of the Web Shop. Some where in the documentation I have read that itu2019s possible.
    I have created a document with following parameter:
    Document  2001 \ Document Type L01 \ Document Part  000 \ Document version  00
    In that document, I have created one original with the following parameters:
    Applic.     PDF \ Data Carrier    isar3 \ Original      <WebServer folder>/SAP.pdf
    I have assigned this document objects to the product as u2018Documentsu2019 in the product catalog. (through Tcode WWM2).
    I have uploaded the PDF file to the correct Web Server folder.
    But I CAN NOT see my PDF file anywhere in Web Catalog.
    By the way, following the same steps I have also created another Document containing 2 original images:
    Document  2002 \ Document Type L01 \ Document Part  000 \ Document version  00
    In that document, I have created 2 originals with the following parameters:
    Applic.     LIM \ Data Carrier    isar3 \ Original      <WebServer folder>/ Test_big.jpg
    Applic.     SIM \ Data Carrier    isar3 \ Original      <WebServer folder>/ Test_small.jpg
    I have assigned this document objects to the product as u2018Documentsu2019 in the product catalog. (through Tcode WWM2).
    I have uploaded the image files to the correct Web Server folder.
    I CAN see the small and large image in my product catalog with out any problem.
    Is it possible to attach PDF in this way? Am I making any mistake? Am I selecting the correct document type (L01) for the document?
    Please guide me.
    Thanks in Advance.
    Regards,
    Abir Kundu.

    Hi Abir,
               SAP standard for R/3 E-commerce allows only SIM and LIM applications.
    Any further requirements like PDF needs to be an enhancement on the product details JSP.
    Also make sure you are storing the PDFs in the right location to retreive it on the product details.
    Thanks,
    Kiran Kanth.C

  • How to attach PDF file along with mail from SAP to external

    Hi Experts,
          Whenever I am creating PO I should get that creation information ( PO is created & PO no is ‘XXX’….) in the form of PDF file & I have to send this PDF file through mail to external. I have to do all this in one development…How can I proceed …Help me..
    Thanks

    Check this Code>>>>>>>>>>>
          FORM MAIL_OBJECT                                              *
    Compiled: Thomas, Satyam Computers Services Ltd.
          This routine receives OTF data. OTF data is converted to PDF
          format and send to the Partner's email address
    FORM mail_object TABLES otf_data STRUCTURE itcoo .
      DATA: pdf_size TYPE i,                             " PDF Size
            pdf_itab_size TYPE i,                        " Attachment size
            mailtxt_size TYPE i,                         " Text in mail size
            l_vbeln LIKE vbdka-vbeln.                    " Order Doc
      DATA:
      it_mailtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,    " Mail Text
      it_pdf TYPE TABLE OF tline WITH HEADER LINE,           " OTF output
      it_mailpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE, " Dist details
      it_mailhead LIKE solisti1   OCCURS  1 WITH HEADER LINE," Header data
      it_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,   " Rec List
      it_pdfdata LIKE solix OCCURS 0 WITH HEADER LINE.  " Attachment data
      DATA: it_doc_att LIKE sodocchgi1.                 " Attri of new doc
      DATA: BEGIN OF it_pdfout OCCURS 0,                " PDF in 255 length
               tline TYPE char255,
            END OF it_pdfout.
    Sales doc and Customer
      DATA: BEGIN OF i_vbeln OCCURS 0,
              vbeln LIKE vbpa-vbeln,       " Sales Document
              adrnr LIKE vbpa-adrnr,       " Customer
            END   OF i_vbeln.
    Sender Address no and SMTP address
      DATA: BEGIN OF i_addrs OCCURS 0,
              addrnumber LIKE adr6-smtp_addr,
              smtp_addr  LIKE adr6-smtp_addr,
            END   OF i_addrs.
    Convert OTF to PDF
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format       = 'PDF'
        IMPORTING
          bin_filesize = pdf_size
        TABLES
          otf          = otf_data
          lines        = it_pdf.
    Make each line 255 characters
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
        TABLES
          content_in  = it_pdf
          content_out = it_pdfout.
    Create the PDF File
      CLEAR it_pdfdata.
      REFRESH it_pdfdata.
    it_pdfdata[] = it_pdfout[].
      LOOP AT it_pdfout.
        MOVE it_pdfout-tline TO it_pdfdata-line.
        APPEND it_pdfdata.
        CLEAR it_pdfdata.
      ENDLOOP.
      DESCRIBE TABLE it_pdfdata LINES pdf_itab_size.
    Text in the mail.
      it_mailtxt-line  = 'ORDER ACKNOWLEDGEMENT'.
      APPEND it_mailtxt.
      it_mailtxt-line  = ' This is a test mail-Thomas, Line Number--1'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail-Thomas, Line Number--2' &
                        ' This is a test mail-Thomas, Line Number--2'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail-Thomas, Line Number--3' &
                        ' This is a test mail-Thomas, Line Number--3' &
                        ' This is a test mail-Thomas, Line Number--3'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4' &
                        ' This is a test mail,  Line Number--4'.
      APPEND it_mailtxt.
      it_mailtxt-line = ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5' &
                        ' This is a test mail,  Line Number--5'.
      APPEND it_mailtxt.
      DESCRIBE TABLE it_mailtxt LINES mailtxt_size.
    Document Number for Output
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = vbdka-vbeln
        IMPORTING
          output = l_vbeln.
    Attributes of new doc
      CONCATENATE 'Order' space 'Acknowledgement' space l_vbeln
                  INTO it_doc_att-obj_descr SEPARATED BY space.
      it_doc_att-sensitivty = 'F'.
      it_doc_att-doc_size   = mailtxt_size * 255.
    Create Pack to text in mail body.
      CLEAR it_mailpack-transf_bin.
      it_mailpack-head_start   = 1.
      it_mailpack-head_num     = 0.
      it_mailpack-body_start   = 1.
      it_mailpack-body_num     = mailtxt_size.
      it_mailpack-doc_type     = 'RAW'.
      APPEND it_mailpack.
    Create Pack to PDF Attach.
      it_mailpack-transf_bin   = 'X'.
      it_mailpack-head_start   = 1.
      it_mailpack-head_num     = 1.
      it_mailpack-body_start   = 1.
      it_mailpack-body_num     = pdf_itab_size.
      it_mailpack-doc_type     = 'PDF'.
      CONCATENATE l_vbeln '.pdf' INTO it_mailpack-obj_name.
      CONCATENATE 'Order Ack' space l_vbeln INTO it_mailpack-obj_descr.
      it_mailpack-doc_size     = pdf_itab_size * 255.
      APPEND it_mailpack.
    *Get email addresses based on Sales document.
      SELECT vbeln adrnr INTO TABLE i_vbeln
             FROM vbpa
             WHERE vbeln = vbdka-vbeln AND
                   parvw = nast-parvw.
      IF NOT i_vbeln[] IS INITIAL.
        SELECT addrnumber smtp_addr INTO TABLE i_addrs
               FROM adr6 FOR ALL ENTRIES IN i_vbeln
               WHERE addrnumber =  i_vbeln-adrnr AND
                     smtp_addr NE space.
      ENDIF.
      IF i_addrs[] IS NOT INITIAL.
        LOOP AT i_addrs.
          it_reclist-receiver   = i_addrs-smtp_addr.
          it_reclist-express    = 'X'.
          it_reclist-rec_type   = 'U'.
          it_reclist-notif_del  = 'X'. " request delivery notification
          it_reclist-notif_ndel = 'X'. " request not delivered notification
          APPEND it_reclist.
          CLEAR: i_addrs.
        ENDLOOP.
      ENDIF.
    Call FM to send email
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = it_doc_att
          put_in_outbox              = 'X'
        TABLES
          packing_list               = it_mailpack
          object_header              = it_mailhead
          contents_txt               = it_mailtxt
          contents_hex               = it_pdfdata
          receivers                  = it_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorizationfiltered= 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      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.                    " MAIL_OBJECT
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    -Mohan.
    *Reward if helpful**

  • How to attach PDF file to product catalog in e-Commerce ERP

    Hello Experts,
    We are implementing SAP E-Commerce for ERP (ECC 6.0 version)
    On the product catalog, I need to attach a PDF file to the products.
    I have created a document as
    Document Type: DMO
    In this I have created 1 original as:
    Applic: PDF
    Original:  "abc.pdf" (the PDF file has been uploaded to the correct Web Server folder)
    This document has been assigned to the product as u2018Documentsu2019 in the product catalog.
    I replicated the catalog on TREX. However now I am not sure how to acess this document on the e-Commerce Products JSP.
    When I access the product index on TREX, I do  not see any attribute that contains this document Type containing the PDF.
    (The standard LIM / SIM documents are getting attached correctly to the products, I see the relevant images on the JSP)
    I am not sure if I am missing something in attaching  the document?. Please let me know what else is required to be done for this?
    Thanks in Advance.
    Regards,
    Roopali

    Hey Roopali,
    Following is the procedure to Attach a multimedia object .
    Hope you are following this especially point number 16.
    1.     Access the activity using one of the following navigation options:
    Transaction code     COMM_PCAT_ADM
    SAP CRM menu     Master Data à Product Catalog à Maintain Product Catalog
    You will have Material Master rather than Product catalog as it is ECC version.
    2.     In the Product Catalog field, enter PRODUCT CATALOG
    3.     In the Catalog Type field, enter Manual and automatic assignment.
    4.     Choose Change.
    5.     Expand Header Data by choosing the Expand data area Button labeled Header Data
    6.     Check that the status is Inactive.
    A yellow light bulb indicates that the status is Active. To set the status to Inactive, click the light bulb and a gray light bulb appears.
    To add new products to your product catalog, you must first deactivate the status on all levels.
    7.     In the Object Name screen area, select your product catalog.
    8.     Choose Expand all.
    9.     Double-click the catalog area to which you want to manually assign your objects.
    10.     Check that all products are set to inactive.
    11.     In the Item list, double-click the product.
    12.     The selected product is shown below in the screen area Item Details.
    13.     Choose the Item Documents tab.
    The tab page Product Documents provides information about which objects are already assigned to a product in the product master. This means that these objects cannot be changed in the product catalog. They can only be changed in the product master.
    14.     Choose the folder YCRM_IMAGE  or YCRM_THUMB and choose Import document. Browse for the multimedia object that you want to assign to the product. 
    15.     Select the object (picture) and choose Save.
    16.     Choose the tab page Properties to set this multimedia object as language-independent, set the field Language-Independent(Prod) = Yes.
    This field controls the publication of documents in catalog variants depending on the language. This means that the document is valid for all languages in which the catalog is published.
    17.     Choose Save.
    Regards,
    Sumit

  • How to attach PDF files to invoice document from ECM.

    Hi Gurus,
    We have one requirement in that around three million  invoice pdf files are there in ECM system. we need to attach those pdf files(GOS) to  existing invoice document in SAP.as we searched in SCN we found one function module ARCHIVE_CONNECTION_INSERT. for this  function module we need pass mandatory import parameters as SAP object ID ,Document ID and some other variables(object type, doc.type , repository ID).
    My problem is how can I find the value of  respective SAP object ID and Document ID  form ECM system. and how can I match the SAP object ID and Document ID.
    please  help on this.
    Thanks in advance!!
    Regards,
    Vigneshwar.D

    Hello,
    Check with Global document type is maintained for the PDF you are looking for in OAC2. You will find the Document type, for the respective object type, check in OAC3. Content Repository is the archiving ID. Search by the archiving ID.
    Regards
    Rakesh

  • How to attach two maintenance views to one transaction codes

    Hi
    I have created two master Ztables and also created two maintenance views in SM30 for them.
    Now my req is i have to attach these two maintenace views to one TCODE only Not two transaction codes.
    How i can do that.
    Pls give me some inputs.
    Regs
    Manas Ranjan Panda.

    Hi,
      Goto SE54..Click on the edit cluster view..Enter a cluster view name...Then press the create button..IN the resulting screen you can add multiple maintenance views..
    Check this documentation for creating cluster views..
    http://help.sap.com/saphelp_46c/helpdata/EN/d0/999246b2aa11d1a5700000e82deaaa/frameset.htm
    Once you create the cluster view..
    Then you can a parameter transaction in SE93 with the transaction as SM34 and give the cluster view name ...
    THanks,
    Naren

  • How to attach a maintanance view to a TCODE

    Hi,
    I have created a maintanance view. Now i need to attach the same to a TCODE.
    How can i do this?
    Thanks,
    Sreekanth

    Hi
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    Reward points for useful Answers
    Regards
    Anji

  • How to attach pdf data into SRM ?

    we have a report which sends out a smartform purchaseorder as a pdf to a vendor by email.
    Now the requirement is to connect the sent pdf into srm in order to be visible for checking the billing.
    it is easy to attach an external file into srm but now I already have alle the data available in sap after sending the pdf as attachment in the mail.
    is it also possible to directly transfer this data directly into srm with for instance BAPI_DOCUMENT_CREATE ??
    or is another step in between necessary ?
    this is the coding for sending the email
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
           EXPORTING
                format_src      = 'OTF'
                format_dst      = 'PDF'
                devtype         = 'MAIL'
    *           FUNCPARA        =
           CHANGING
                transfer_bin    = xtransfer_bin
                content_txt     = t_cont_txt
                content_bin     = t_cont_bin
                objhead         = objhead_att
                len             = tabsize
           EXCEPTIONS
                err_conv_failed = 1.
      DESCRIBE TABLE t_cont_bin LINES tablines.
      MOVE i_attach_head TO t_objhead.
      APPEND t_objhead.
    * Objectpack opbouwen voor attachment
      t_objpack-transf_bin = 'X'.
      t_objpack-head_start = 1.
      t_objpack-head_num = 1.
      t_objpack-body_start = 1.
      t_objpack-body_num = tablines.
      t_objpack-obj_name = i_attach_name.
      t_objpack-obj_descr = i_attach_descr.
      t_objpack-doc_type = 'PDF'.
      t_objpack-doc_size = tablines * 255.
      APPEND t_objpack.
    * Ontvangerlijst opbouwen
      LOOP AT t_receiver.
        MOVE-CORRESPONDING t_receiver TO trcv.
        MOVE 'U' TO trcv-rec_type.    " Extern mailadres
        APPEND trcv.
      ENDLOOP.
      DESCRIBE TABLE trcv LINES h_lines.
      IF h_lines = 0.
        RAISE no_receiver.
        EXIT.
      ENDIF.
    * Zender
      IF i_sender IS INITIAL.
        so_sender = sy-uname.
        so_sendertype = 'B'.
      ELSE.
        so_sender = i_sender.
        so_sendertype = 'INT'.
      ENDIF.
    * Mail verzenden
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
              document_data              = s_docdata
              put_in_outbox              = 'X'
              sender_address             = so_sender
              sender_address_type        = so_sendertype
              commit_work                = i_commit_work
    *       IMPORTING
    *         SENT_TO_ALL                =
    *         NEW_OBJECT_ID              =
    *         SENDER_ID                  =
           TABLES
              packing_list             = t_objpack
              object_header            = t_objhead " Mailheader
    *          CONTENTS_BIN             = T_OBJBIN  " Binaire data (attach)
              contents_txt             = t_doctxt  " ASCII-data
              contents_hex             = t_cont_bin " Hex-data
    *         OBJECT_PARA              =
    *         OBJECT_PARB              =
              receivers                = trcv
           EXCEPTIONS
              too_many_receivers         = 1
              document_not_sent          = 2
              document_type_not_exist    = 3
              operation_no_authorization = 4
              parameter_error            = 5
              x_error                    = 6
              enqueue_error              = 7
              OTHERS                     = 8.
      IF sy-subrc NE 0.
        RAISE mail_not_sent.
      ENDIF.
    I have also found this thread but also no answer there to this as it seems simple requirement ??
    PDF Creation + connection to DMS
    kind regards
    Arthur de Smidt
    Edited by: A. de Smidt on May 17, 2011 2:43 PM

    ok solved it myself by using cl_gui_frontend_services=>gui_download with
    BAPI_DOCUMENT_CREATE2

  • How to attach selection view to transport request

    Hi Experts,
    I have created a selection view for the logica data base PSJ from the transaction SE36.The problem this process is not asking the transport request for this new selection view that we have created.Could you please somebody let us know how to attach this selection view to transport request?
    Is there any way to do this from SE09 transaction?
    Regards
    Mahesh

    Hi Santosh
    I am not getting the version management options.Also I am not getting where can I see this custom view CUS that has been created could you please advice something on this?This copy has been done by my functional consultant.
    Regards
    Mahesh

  • How to link PDF document in Report Layout??

    I need to display the contents of PDF document after the form letter report. I tried OLE object but at the runtime it does not display the content. Does any one knows how to attach PDF document in reports layout?
    Thanks
    Ravindra

    you will have to concatinate your report output with the static PDF document. in reprots 10g you can create a cusotm destination that could implement this functionality.
    out of the box, reports does not provide the ability to add static content in PDF to reports' generated PDF output.
    thanks,
    philipp

  • Attach .pdf and .doc files to Reply emails.

    I am desperately trying to figure out how to attach .pdf and .doc files to Reply emails in the Mail app. I have downloaded GoodReader, but when I go into "Manage Files" and choose "Open in...", Mail is not one of the apps listed for me to choose from (only Quickoffice and iBooks are listed, that's it). My Gmail account is pushed to the Mail app, if that's relevant at all.
    I'm hoping to be able to attach documents to Reply emails in the Mail app, but if I have to do it using my web-based email, that's better than nothing. I just really need to be able to attach them to Replies, and not compose a new email from scratch.
    I'd REALLY appreciate any help with this!
    Thanks.

    I thought I might be able to figure out a clever work-around by using cut and paste from a new message but this did not work as expected. I have been using the MobileMe iDisk app to store pdf files and then just mailing out the links.  I believe my cut and paste method would have worked with this, however I've got about a year now to figure out another way to do this if it is not included in Apple's new cloud service. This has actually been a better as I need to worry less about file size and don't need to have the files stored on the device.
    You may want to look into what on-line file storage solutions are out there and if they have the ability to send links to files to colleagues, possibly with password protection.

  • How to automatically view all attached pdfs in an Acrobat form?

    Hi!
    I use an Adobe form that collates many different PDFs attached to various links within the form. When final review is required, I can (within that single form) click on each individual link, launching the attached PDF in a separate window. However, this is cumbersome and error prone (for example, a user might not see one of the buttons to click). I would like to generate a view where all the attached PDFs are displayed in continuous fashion, preferably right after the page where they were attached.
    When this form is finally submitted, such a view is generated, so I know it is possible. However, it would be ideal to be able to review it in this format before it is submitted at all.
    Any ideas are greatly appreciated! Link to the form is attached.
    https://grants.nih.gov/grants/funding/424/SF424_RR_Guide_General_Adobe_VerC.pdf

    I tried another look but couldn't figure it out...but my javascript isn't fantastic. I looked at the example form that I think you got the code from and it works fine when Reader extended.
    Here's a couple of links to tutorials from WindJack Solutions on the Acrobat User Community site - the first one should help alot, it shows how to do what I was mentioning above about putting all your code in one spot and using one table.
    Programming List and Combo Fields in Acrobat and LiveCycle forms - Part 1
    http://www.acrobatusers.com/tutorials/2007/js_list_combo_livecycle
    Programming List and Combo Fields in Acrobat and LiveCycle forms - Part 2
    http://www.acrobatusers.com/tutorials/2007/10/list_and_combo_in_lc
    Hope those will help!

  • How do I email an attached pdf file to stationary templates in mail.

    How do I email an attach PDF file using the stationary templates in mail on lion.
    I attached the PDF but when try to send it I get back a dialog box that sez:
    "This message cannot be sent because it uses stationery and contains attachments that are not images. Messages with stationery cannot contain attachments that aren’t images. You can cancel and return to editing the message or remove the stationery in order to send." My choice is to cancel or remove stationary.
    Is there a third party solution? Any suggestion?

    No
    Envoyé depuis Molto pour iPad
    De: pwillener
    Envoyé: jeudi, février 12, 2015 07:14 AM
    À: René Allamelle
    Objet:  how do I compress a large pdf file to fit in an email?
    how do I compress a large pdf file to fit in an email?
    created by pwillener in Adobe Acrobat.com Services - View the full discussion
    But generally it is never a good idea to send e-documents as email attachments.  Better use a file sharing service (Acrobat.com, Dropbox, Google Drive, Microsoft OneDrive, ..), upload the document, then send the shared download link via email.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7187079#7187079 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7187079#7187079
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Acrobat.com Services by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How to download PDF attachment from gmail on iphone 5S

    Hi,
    How to download PDF attachment from gmail on iphone 5S
    Regards
    Ram

    Hello Ram2910
    You should be able to view them natively within iOS. If you can view them in safari and want to save them, then download iBooks or search for other apps that can view and save them.
    iBooks
    https://itunes.apple.com/us/app/ibooks/id364709193?mt=8
    iBooks: Viewing, syncing, saving, and printing PDFs on iPhone, iPad, and iPod touch
    http://support.apple.com/kb/ht4227
    Regards,
    -Norm G.

Maybe you are looking for

  • Changing thickness of border around fields

    Hi Is it possible to change the thickness of the border around a database field/ text box etc? I can only find an option to choose the type of border (Single, Dotted, Dashed etc), but not the thickness. The field that I use in the report has the Can

  • I cannot download Mountain Lion.

    There is a blank button in the app store and it says "an error has occured". I have tried everything. Please help.

  • Process p.waitFor() wait forever, need solutions

    Dear Members, I am trying to run a perl script from java code that generates a log file on file system and populates the date in to mysql table.In java code while calling method Process p .waitFor(), the java program will hangs up and i am also using

  • Auto Analyzer in Premier Elements 11

    I've never before owned or used any video software.   I just purchased and installed Premier Elements 11. I searched for "Updates", which the program found.  After starting to download, I received an error dialog to the effect of: -- cannot proceed;

  • Loss of sound on ring / text alert

    My iPhone 4 appears to be stuck on mute. I've re-set the phone and and can hear the ring in settings but there is no sound when i receive a call or text. Help much appreciated. Thanks, Peter