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

Similar Messages

  • 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**

  • Attached PDF file in mail through PL/SQL, unable to open

    Hi All,
    Database : Oracle Database 10g Release 10.2.0.1.0 - Production
    I have database procedure which attach a pdf in mail and send to specified user.
    Its working fine, but my problem here, if inside the PDF file have any logo or images, user unable to open the attachment file.
    It give error "It was sens as an email attachment and was not correctly decoded".
    For Encoding I have used : utl_encode.base64_encode
    If normal PDF file they can open.(I mean without any locg or images).
    Please give me your solution for handle this situation.
    Thanks in advance.

    Sun wrote:
    Thanks for your advice,
    Please let me know, how can i do this. plz..What do you not understand in my suggestion?
    Use your own mail reader. Create an e-mail. Attach the PDF. Send the e-mail to your address.
    In your inbox, the mail will arrive.
    Now select the "+view raw format+" option of your mail reader (most mail readers have this, including MS Outlook).
    Look at the contents of the mail body. This will show you how the attachment was inserted into the mail itself. Look at the Mime types. Look at the mail header. This is a working example of what your code needs to create as an e-mail body in PL/SQL (or any other language).
    This is not rocket science....

  • How to attach more files in Mail?

    Can anyone please tell me how to attach more than one file to an email message in the iPhone Mail app? I've read the whole manual, so I'm not sure if I missed the part or if this feature actually lacks...??

    I agree with you on this one.. It is very inconventient to send attachments one e-mail at a time. I don't think Apple was really paying attention to what the customers needs were regarding e-mail. Also Apple need to fix the problem with Text messaging signatures. Currently you cannot add a signature to text messages. Every other phone in the world offers this feature!

  • 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

  • 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 picture to a mail when writing it?

    I keep getting stunned by lacking basic functions on my newly purchased Iphone 3G. Today I was writing a mail on my phone and decided that I wanted to attach a picture wich I had taken only to discover that there was no "attachment +" line in the adress bar. I could not believe that there were no attachment option, I mean, WHAT??. Instead I had to go into the library, choose the picture that I wanted and press "send picture in mail" and because of this my "fully written and ready for sending mail" was vanished and I had to start all over again.
    Is it just me not finding a secret "attachment" button in the "Mail" application, or has Apple only implemented a one way solution for attaching pictures to the mail?
    Can anyone verify this?
    Thanks

    OMG I can almost not believe this. The first question that comes to mind is if this is just sloppy programming, or once again an intentionally lame solution. Really hope this gets fixed in an update, but it seems that hoping is where everything stops.
    Well, what can I say?
    I will probably have to switch back to my 10 year old Sony Ericcson to perform the miracle art of forwarding SMSès and sending an e-mail with attachments. So much for a high tech "SmartIphone"
    Thanks alot guys for clearing this up for me.

  • 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 Excel file in Mail Receiver Adapter?

    Hello Experts,
    In R/3 coding I have Internal Table data available for which i have to generate an Alert mail with Excel file attachment.
    This is the scenario of Proxy sender to Mail Receiver. but I don't know how to convert the Internal Table data into Alert mail excel File attachment.
    Please suggest me.
    Regards,
    Jagesh

    Hi Santhosh,
    Thanks for your suggestion.
    But without using XSLT mapping also, I have generated the Excel File attachment.
    Throgh R/3 coding I am passing following.
    G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-FROM = From Mail Address.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-TO = TO Mail Address.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-SUBJECT = 'Test Alert mail'.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-DATE = SY-DATUM.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-CONTENT_TYPE =   'text/plain;name="CSV_data.csv"'.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-CONTENT = 'Testing1,Testing2,Testing3'.
          G_ALERT_INPUT-MT_R3REQUEST_MAIL_SEND-MAIL-CONTENT_DISPOSITION = 'attachment'.
    And in the Mail Receiver Adapter i have configured as following.
    Use Mail package and Keep Attachment both options are selectd.
    So I am getting the data in different columns in the excel file But How to set the Next ROW in Excel file?
    I thnk i am missing something in CONTENT value.
    Regards
    Jagesh

  • How to attach files in a mail from user4s PC in a Portal aplication

    Hello,
    I am trying to send a mail with attachments from PL/SQL but I don4t know what must I do to attach files from the user's PC. Our aplication is developed with Portal.
    Does anybody knows any java program than can be used like portlet who opens the Outlook??
    Thank you.

    You can use methods listed inside Fuego.IO, but they don't work if you run your process in a client, I mean not the server.
    You can use JSP or methods developed in java in order to upload your files and Fuego.IO methods to access them after you upload them.
    Another thing you should consider is that if you upload files using Fuego library, there's a size limit for files.
    Take a look on How to Use FileChooser on for Client files
    Hope this help.
    Pablo

  • Please instruct me on how to send pdf's in "MAIL" application

    Hi all
    After a 4 year abscence from Apples Mail program, I am back. I really like all of the apps, but I am having the same problems from 4 years ago and I really dont want to go back to Entourage.
    After 2 days of researching this PDF topic, I still dont have a definitive answer.
    This is the problem/question.
    All of my clients who are on PC's (some AOL accounts) cannot open my pdfs I am sending. No problems with anything else jpegs, docs etc. ONLY PDF's. They say they are recieving them as just "file". FYI these people arent tech savy.
    I have tried everything in the Mail app...windows friendly attachment, rich text, plain text, downloaded iconizer, actual size, view as icon, with and without a signature, etc. No clue what could be wrong.
    The pdfs are created through InDesign (High Quality Setting) and open fine on a Mac through Acrobat Reader.
    Please let me know if I need to provide you with anymore info to resolve this problem. I really dont want to go back to Microsoft. Help Please.
    Chris
    MacBook Pro 17   Mac OS X (10.4.8)  

    You should not use the Image Size adjustment for a PDF attachment that appears inline or viewed in place within the body of the message which applies to single page PDF files only.
    AOL has always been problematic with attachments but since all clients are not AOL recipients, have you tried zipping the file or files before being attached?
    This can be done via the Finder.

  • 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 documents in fresh mails

    Hi,
    When i am composing a new mail, I dont see an option to attach a word or a pdf or image.
    Even if I am having a mail in my inbox with an attachment, I am unable to find an option to copy that attachment & paste it in another mail.
    I am using the default mailing application.
    Please help
    Sathyan

    You can not attach a document from inside an e-mail you are composing. You will need to send the document from within whatever app owns it.

  • 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 save pdf files from mail to i pad2

    How can i save a pdf file from e mail to the i pad2 ???

    From Google what?  There are so many Googe services (mail, docs, drive, ...) that you really need to provide more details.  Also what exact problems you experience.

Maybe you are looking for

  • Power supply fan dead - help? (400mhz AGP G4)

    Hello! Unfortunately, my PowerMac G4, a 400mhz, AGP Sawtooth model, has a dead fan. Over the last few weeks, I've noticed that my G4 has been running quite hot. I figured it was due to the hot dorm room that it's being used in. Then, I noticed that w

  • Mac Mini no longer reads or writes DVD-R DL discs

    My mac mini stopped reading and writing dual layer DVD-R disks about a year ago for no reason, even ones that IT created in the first place. Is my drive faulty or is there some setting that got changed when I upgraded to Lion and then Mountain Lion?

  • JDBC Sender Adapter Error

    HI Friends, I have configured the JDBC Sender Adapter with parameters as Driver : oracle.jdbc.driver.OracleDriver Connection : jdbc:oracle:thin:system:netweaver:@172.25.4.221:1521 But Iam getting an error in Componenet Monitoring: <b>History: - 2006-

  • 10.5.3.dmg download stops at 275 MB

    I have made several attempts (4) to download the 10.5.3 update. In all cases the download stops at 275 MB. This happens using both Software Update and the 10.5.3 standalone download. I also tried emptying Library / Updates folder of all except the in

  • Can't load more than 2gig on 40 gig iPod.  Inexplicably skips too.

    I have a 40 gig click wheel iPod that I purchased new 1 1/2 years ago. I've been having 2 problems lately. One, I can't put more than 2 gigs of music on it. When in iTunes, at about the 2.1 gig point, when I try to load anymore music the iPod will lo