How to attach documents in Iphone mail services

Hi,
Is there anyway to attach documents(even multiple docs at once) and send them from my iphone mail??

hi ,
GO to SU3 own parameters then add SD_SWU_ACTIVE and X.
Then in VA02,VL02 (edit mode) You can attach the document to respective orders.
If the intermediate Coupling required then 2nd method for this is
CV01N Create the document and attach document to Document no and line NO.
Regards,
Sam

Similar Messages

  • How to attach document using Generic Object Service

    Hi all,
    How can i create attachment to the parked invoice using Generic Object services? i want function modules which are used to do it.
    Actually I want to do this from the business object method. I am having word document as one of the workitem step. once i get this document I need to attach this document to the parked invoice so that users can see that document by view object list.
    Its urgent.
    thanks.

    Hello,
    Check your configuration of document type assignement to required business document - object type, Archivelink table, content repository in OAC3 transaction.
    Goto respective business document > Click on GOS > Create > Store business document - Here you can see defined document type with desctiption. Double click on this the assign your document to this business document. Save it.
    This will help in attaching the document to your required business document.
    To verify you can check the archivelink table or by transaction OAAD.
    Hope this will help you.
    -Thanks,
    Ajay

  • How to Attach Document in SAP Mail

    hi
       I want to attach a document in the SAP mail, but it should open in the SAP itself.like ALV grid FOrmat.
    Thanks in advance.

    Hi,
    Try this m not very sure this is wht u reqd or not???
    DATA method1 LIKE sy-ucomm.
    DATA g_user LIKE soudnamei1.
    DATA g_user_data LIKE soudatai1.
    DATA g_owner LIKE soud-usrnam.
    DATA g_receipients LIKE soos1 OCCURS 0 WITH HEADER LINE.
    DATA g_document LIKE sood4 .
    DATA g_header LIKE sood2.
    DATA g_folmam LIKE sofm2.
    DATA g_objcnt LIKE soli OCCURS 0 WITH HEADER LINE.
    DATA g_objhead LIKE soli OCCURS 0 WITH HEADER LINE.
    DATA g_objpara LIKE selc OCCURS 0 WITH HEADER LINE.
    DATA g_objparb LIKE soop1 OCCURS 0 WITH HEADER LINE.
    DATA g_attachments LIKE sood5 OCCURS 0 WITH HEADER LINE.
    DATA g_references LIKE soxrl OCCURS 0 WITH HEADER LINE.
    DATA g_authority LIKE sofa-usracc.
    DATA g_ref_document LIKE sood4.
    DATA g_new_parent LIKE soodk.
    DATA: BEGIN OF g_files OCCURS 10 ,
            text(4096) TYPE c,
          END OF g_files.
    DATA: fold_number(12) TYPE c,
          fold_yr(2) TYPE c,
          fold_type(3) TYPE c.
    PARAMETERS ws_file(4096) TYPE c DEFAULT 'c:\ Vikalp Solutions'.
    Can be any file from your pc....either xls or word or ppt etc...
    g_user-sapname = sy-uname.
    CALL FUNCTION 'SO_USER_READ_API1'
    EXPORTING
       user                            = g_user
       PREPARE_FOR_FOLDER_ACCESS       = ' '
    IMPORTING
       user_data                       = g_user_data
    EXCEPTIONS
       USER_NOT_EXIST                  = 1
       PARAMETER_ERROR                 = 2
       X_ERROR                         = 3
       OTHERS                          = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    fold_type = g_user_data-outboxfol+0(3).
    fold_yr = g_user_data-outboxfol+3(2).
    fold_number = g_user_data-outboxfol+5(12).
    CLEAR g_files.
    REFRESH : g_objcnt,
              g_objhead,
              g_objpara,
              g_objparb,
              g_receipients,
              g_attachments,
              g_references,
              g_files.
    method1 = 'SAVE'.
    g_document-foltp  = fold_type.
    g_document-folyr   = fold_yr.
    g_document-folno   = fold_number.
    g_document-objtp   = g_user_data-object_typ.
    *g_document-OBJYR   = '27'.
    *g_document-OBJNO   = '000000002365'.
    *g_document-OBJNAM = 'MESSAGE'.
    g_document-objdes   = 'testing by program'.
    g_document-folrg   = 'O'.
    *g_document-okcode   = 'CHNG'.
    g_document-objlen = '0'.
    g_document-file_ext = 'TXT'.
    g_header-objdes =  'testing by program'.
    g_header-file_ext = 'TXT'.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
      EXPORTING
        method            = method1
       office_user        = sy-uname
       ref_document       = g_ref_document
       new_parent         = g_new_parent
    IMPORTING
       authority          =  g_authority
    TABLES
       objcont            = g_objcnt
       objhead            = g_objhead
       objpara            = g_objpara
       objparb            = g_objparb
       recipients         = g_receipients
       attachments        = g_attachments
       references         = g_references
       files              = g_files
      CHANGING
        document          = g_document
       header_data        = g_header
      FOLMEM_DATA        =
      RECEIVE_DATA       =
    File from the pc to send...
    method1 = 'ATTCREATEFROMPC'.
    g_files-text = ws_file.
    APPEND g_files.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
         EXPORTING
              method       = method1
              office_user  = g_owner
              ref_document = g_ref_document
              new_parent   = g_new_parent
         IMPORTING
              authority    = g_authority
         TABLES
              objcont      = g_objcnt
              objhead      = g_objhead
              objpara      = g_objpara
              objparb      = g_objparb
              recipients   = g_receipients
              attachments  = g_attachments
              references   = g_references
              files        = g_files
         CHANGING
              document     = g_document
              header_data  = g_header.
    method1 = 'SEND'.
    g_receipients-recnam = 'MK085'.
    g_receipients-recesc = 'B'.
    g_receipients-sndex = 'X'.
    APPEND g_receipients.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
         EXPORTING
              method       = method1
              office_user  = g_owner
              ref_document = g_ref_document
              new_parent   = g_new_parent
         IMPORTING
              authority    = g_authority
         TABLES
              objcont      = g_objcnt
              objhead      = g_objhead
              objpara      = g_objpara
              objparb      = g_objparb
              recipients   = g_receipients
              attachments  = g_attachments
              references   = g_references
              files        = g_files
         CHANGING
              document     = g_document
              header_data  = g_header.
    Hope this helps u.
    Thanks.
    Seema.

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

  • Attach Documents using Generic Object Services

    With reference to Manual Bassani's SDN Contribution of code examples on how to attach documents using Generic Object Services - we have found that since implementing ECC 6 the following code no longer works (at the end of page 9):
    CALL CREATE ATTACHMENT SERVICE FROM TOOLBAR
    WHEN 'ATTACH'.
    CALL METHOD MANAGER->START_SERVICE_DIRECT
    EXPORTING
    IP_SERVICE = 'CREATE_ATTA'
    IS_OBJECT = OBJ
    EXCEPTIONS
    NO_OBJECT = 1
    OBJECT_INVALID = 2
    EXECUTION_FAILED = 3
    OTHERS = 4.
    It is necessary to use IP_SERVICE = 'PCATTA_CREA' to get this to function correctly.
    The original document can be found at [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3]

    Check the Naimesh Patel Blog he explain very well
    http://help-abap.blogspot.com/2009/02/generic-object-services-gos-toolbar.html

  • How to attach Documents in a Reply E-mail?

    As everyone know that We can upload or attach everything in the camera roll, We can attach other documents like .pdf , .doc etc.. with the help of some external application, but it support only attachment in the form of a new E-mail,
    But i want to attach documents for reply mail,, is there any way for it ?
    also how to attach multiple documents for a reply mail?

    After running the query, right click -> GoTo -> Documents for Navigation Status.  There you can create, edit and view documents.
    Regards,
    Kerry

  • How to attach documents in Delivery & in Invoice document of SD processing?

    Dear Sirs,
    Hi,
    Can you please suggest me how to attach documents in Delivery & in Invoice document of SD processing?
    I could do so in inquiry, quotation, sales order but not able to locate the path in Delivery and in Invoice.
    Pl suggest.
    regards,
    rajni,

    hi ,
    GO to SU3 own parameters then add SD_SWU_ACTIVE and X.
    Then in VA02,VL02 (edit mode) You can attach the document to respective orders.
    If the intermediate Coupling required then 2nd method for this is
    CV01N Create the document and attach document to Document no and line NO.
    Regards,
    Sam

  • How to attach documents to crmd_order

    can any one tell me how to attach document in crmd_order through fm

    Use cl_crm_documents=>create_with_file method.
    Regards.

  • How to attach document from webdynpro TO workflow

    Dear friend,
    For one requirement i want to attach documents(.doc or .pdf)
    from webdynpro form.
    I want to display it with user decision step along with description.
    I am confused that which container element would contain it?
    and how can i display it along with description?
    How can i attach document to the workflow?
    Please guide me stepwise.
    Thanx in advance!
    Regards,
    Purvesh.

    hi,
    Please Refer to the thread.
    How to Attach a pdf file which is created in EP while sending the mail
    Regards
    Sumit Agarwal

  • 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 documents in PR/PO, is there any standard settings

    Hi Experts,
    How do we attach a document into a PR/PO. The requirement is to attach supporting documents into a PR/PO, so that when it goes for approval, the release approver can view the supporting document in the PO/PR.
    We have a Attach Icon in the PO but i am unable to attach any document by clicking it, is there any settings to be maintained to attach documents in PO/PR or do we need to implement any new submodules like DMS
    Kindly let me know at the earliest.
    Regards,
    Hemant

    Hi,
    Thanks for your suggestion..
    I tried using the "Services for Object"  option and i was able to upload a document. But when i try to view the document in PO display ME23N, by clicking the Icon as you mentioned the attached document is not displayed.
    Only when i go in Change mode ME22N and select "Service for Object" i get the documents displayed. What is the way to get the document displayed ?
    Regards,
    Hemant

  • How to attach document to invoice and archive

    From trans VF03 I can manually attach document via
    System -> Service Object -> Create attachment.
    Does anyone know how can I attach the real invoice image (PDF file) to the invoice in back ground mode because I want to attach document to every single invoice.
    My final goal is to attach the document to billing document and archive them to an external storage system.  Can some one point me to the right direction.   Thanks.

    Hi
    That tools create only an hit in some tables where the path of attach document is stored (not file).
    So you should check which are those tables.
    Try to see <a href="http://172.24.40.56/saphelp/helpdata/EN/c8/96c998142f11d389940000e8216438/frameset.htm">here</a>
    Max

  • How to attach document in email by using ipad 2?

    I would like to attach document in my email. How to do it? Do I need any app to support it?
    Thank you.

    Select the document that you want to attach, photo, note or other and tap on the arrow icon.
    You can add to your message once the attachment is sent to "Mail".

  • How to attach documents in Forms 6i

    Dear All,
    Could you please help me in how to attach the documents to forms 6i.
    Documents like .. pdf,excel,word, etc..
    Thanks,
    Ahmed

    <p>Here is part of the answer.</p>
    It is about sound but it would not be difficult to attach other types of documents.
    Francois

  • How to Attach Documents to QM02 Transaction

    Hi,
    We have a requirement to implement a RFC(Portal to R/3) which is used to attach the documents at the Header level of the Quality Notification(QM02). The input paremeters are the file content and file format. File content will be in the form of Byte Array which is coming from the portal and file format can be Word, Excel or PDF.
    Please help me on this regard.
    Thanks,
    Sathi

    Hi Raja,
    Thanks for your reply, I excecuted this RFC by providing the input values as
    CLASSNAME 'BUS2078'
    CLASSTYPE 'BO'
    OBJECT_KEY '0000000306' ( Quality Notification Number )
    SIGNATURE:
      DOC_COUNT 00000001
      DOC_VER_NO 00000001
      COMP_COUNT 00000001
    COMPONENTS:
      DOC_COUNT 00000001
      COMP_COUNT 00000001 
    CONTENT:
      LINE 10101010111010111010101010111101011110011010101011100101110101011101011010101
    But there was no attachment added to that particular Notification.
    If this process is not correct. Please let me know how i should use this RFC to attach documents.
    Thanks in advance,
    Sathi

Maybe you are looking for