Send the auto mail Attachment using client machine outlook application

Hi all,
we are using the following EBS & Database
Database Server
RDBMS : 11.2.0.3.0
Oracle Applications : 12.1.2
i would like to send the file as a attachment using client machine outlook application.
the(.TXT) file has generated by the concurrent program and stored in the oracle server in specific oracle DB directory path. now my requirement is after generating the file then same file has to send mail to specific mail id using client machine outlook application.can anybody suggest me how to do this
(i tried to send mail using UTL_SMTP.DATA but this standard procedure is allowing the file attachment size up to KB only.)
Thanks in advance.

kknr wrote:
Hi all,
we are using the following EBS & Database
Database Server
RDBMS : 11.2.0.3.0
Oracle Applications : 12.1.2
i would like to send the file as a attachment using client machine outlook application.
the(.TXT) file has generated by the concurrent program and stored in the oracle server in specific oracle DB directory path. now my requirement is after generating the file then same file has to send mail to specific mail id using client machine outlook application.can anybody suggest me how to do this
(i tried to send mail using UTL_SMTP.DATA but this standard procedure is allowing the file attachment size up to KB only.)
Thanks in advance.Please see old threads for the same topic/discussion.
https://forums.oracle.com/forums/search.jspa?threadID=&q=Send+AND+Email+AND+Attachment+AND+Concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
https://forums.oracle.com/forums/search.jspa?threadID=&q=Send+AND+Email+AND+Output+AND+Concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • I tried to send too large an attachment using mail,and now mail is hung up trying to send any message.  How do I reset mail?

    I tried to send too large an attachment using mail,and now mail is hung up trying to send any message.  How do I reset mail?

    It will time out, if it hasn't already. Delete the message from the Outbox.

  • The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin, how can I eliminate this problem without dropping m. firefox?

    A few days ago I tried to e-mail a friend, when I started A box came up and it required me to add a plugin..Java. I contacted my e-mail courier and microsoft, they told me that is was a plugin from Mozilla Firefox. Since then I must go through Java to send or open an e-mail... this is NOT to my satisfaction, it takes too long for all of this to open and if it is not cleared , I am dropping Mozilla and going elsewhere. Why has this occurred? Is this a result of the last update? If so can I delete the last update and continue on the other version?
    == This happened ==
    Every time Firefox opened
    == last week

    Sorry, I have no idea what you mean by '''"The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin,"'''.
    If you think your problem is caused by the Java plugin, you should visit the Java support forum for assistance.
    http://forum.java.sun.com/index.jspa
    If you could explain what you mean by '''"time unfriendly''' issue with my e-mail account", maybe we'll be able to help you solve that issue.
    It might be helpful for us if we knew exactly which web-mail provider you are using. It seems strange to me that viewing or sending web-mail would actually "need" Java for operation, its more likely that some other item on the web page needs Java to run some advertising or other garbage that isn't a necessary part of the web-mail functionality you want to use.

  • Issue in sending the file as attachment

    I am using functional module 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send the email with attachment.
    If the file type is 'RAW', the records are getting displayed as that of the source file. For the other file types, all the records are getting displayed in a single line in the output. Please let me know the solution for this.

    Hi Saranya,
    Chk this example:
      DATA :  DS_OBJPACK TYPE SOPCKLSTI1,
              DS_OBJHEAD TYPE SOLISTI1,
              DS_OBJBIN TYPE SOLISTI1,
              DS_OBJTXT TYPE SOLISTI1,
              DS_RECLIST TYPE SOMLRECI1.
    *--MAIL related Internal tables
      DATA: DS_XDOCCHNG TYPE SODOCCHGI1,                     " document
                                                             " attributes
            DT_OBJPACK TYPE STANDARD TABLE OF SOPCKLSTI1,    " attachment
                                                             " table
            DT_OBJHEAD TYPE STANDARD TABLE OF SOLISTI1,      " objectheader
                                                             " table
            DT_OBJBIN TYPE STANDARD TABLE OF SOLISTI1,       " binary table
            DT_OBJTXT TYPE STANDARD TABLE OF SOLISTI1,       " object text
            DT_RECLIST TYPE STANDARD TABLE OF SOMLRECI1.     " mail
      " recipients
      DATA: DL_TEXT       TYPE CHAR50,
            DL_TABLELINES TYPE SY-TABIX,
            DL_STARTDATE(10)  TYPE C,
            DL_ENDDATE(10)    TYPE C,
            DL_SUBJECT(100)    TYPE C, "sin_obj_de,  Subject for Mail
            DL_SDATE      TYPE CHAR10,
            DL_DDATE      TYPE CHAR10,
            DL_CDATE     TYPE CHAR10,
            DL_DATE     TYPE CHAR10,
            DL_FDATE     TYPE CHAR10,
            DL_SYDATE     TYPE CHAR10.
    *subject of the mail
    *if delivery date in entered
    IF NOT S_CONDAT[] IS INITIAL.
       WRITE S_CONDAT-LOW TO DL_STARTDATE MM/DD/YYYY.
       WRITE S_CONDAT-HIGH TO DL_ENDDATE MM/DD/YYYY.
       IF S_CONDAT-HIGH IS INITIAL.
         CONCATENATE 'Capital FutIssue- Dtd Btn'(007)
                     DL_STARTDATE
                     DL_STARTDATE
                     INTO DL_SUBJECT SEPARATED BY SPACE.
       ELSE.
         CONCATENATE 'Capital FutIssue- Dtd Btn'(007)
                     DL_STARTDATE
                     'and'
                     DL_ENDDATE
                     INTO DL_SUBJECT SEPARATED BY SPACE.
       ENDIF.
    ELSE.
      WRITE SY-DATUM TO DL_SYDATE MMDDYY.
      CONCATENATE 'Capital FutIssue- Exectd on'(008)
                 DL_SYDATE
                 INTO DL_SUBJECT SEPARATED BY SPACE.
    ENDIF.
    *-- Populate mail id
      CHECK S_USERID[] IS NOT INITIAL." OR P_DLIST IS NOT INITIAL.
      IF NOT S_USERID[] IS INITIAL.
        LOOP AT S_USERID.
          CONCATENATE S_USERID-LOW '@ntmcon02.emn.com'(009) INTO
                                    DS_RECLIST-RECEIVER.
          DS_RECLIST-REC_TYPE = 'U'.
          APPEND DS_RECLIST TO DT_RECLIST.
        ENDLOOP.
      ENDIF.
    *-- Mail subject line
      CLEAR: DS_XDOCCHNG.
      DS_XDOCCHNG-OBJ_NAME = 'HEADING'.
      DS_XDOCCHNG-OBJ_DESCR = DL_SUBJECT.
    *-- Mail body
    CONCATENATE TEXT-010  SPACE INTO DS_OBJTXT SEPARATED BY SPACE.
      DS_OBJTXT = TEXT-010.
      APPEND DS_OBJTXT TO DT_OBJTXT.
    *-- Populate the attachment text.
    *-- Header
      CONCATENATE TEXT-036
                  TEXT-026
                  TEXT-053
                  TEXT-052
                  TEXT-037
                  TEXT-018
                  TEXT-019
                  TEXT-022
                  TEXT-021
                  TEXT-017
                  TEXT-023
                  TEXT-024
                  TEXT-025
                  TEXT-027
                  TEXT-028
                  TEXT-020
                  TEXT-029
                  TEXT-030
                  TEXT-038
                  TEXT-046
                  TEXT-047
                  TEXT-048
                  TEXT-049
                  TEXT-031
                  TEXT-032
                  TEXT-034
                  TEXT-035
                  INTO DS_OBJBIN
                  SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
      APPEND DS_OBJBIN TO DT_OBJBIN.
      CLEAR  DS_OBJBIN.
    *--Body
      CLEAR: DS_FINAL.
      LOOP AT DT_FINAL INTO DS_FINAL.
        DG_MENGE   = DS_FINAL-MENGE.
        DG_CMOQTY  = DS_FINAL-CMOQTY.
        DG_WEMNG   = DS_FINAL-RECV_QTY.
        DG_BALANCE = DS_FINAL-BALANCE.
        DG_DAYS    = DS_FINAL-DAYDIFF.
        WRITE DS_FINAL-CONSDT TO DL_DATE MM/DD/YYYY NO-ZERO.
        WRITE DS_FINAL-SLFDT TO DL_SDATE MM/DD/YYYY NO-ZERO .
        WRITE DS_FINAL-EINDT TO DL_DDATE MM/DD/YYYY NO-ZERO.
        WRITE DS_FINAL-AEDAT TO DL_CDATE MM/DD/YYYY NO-ZERO.
    Calling conversion exit to display WBS in external format
        PERFORM CONV_EXIT_ABPSN_OUT CHANGING DS_FINAL-WBS.
        CONCATENATE    DL_DATE
                       DL_DDATE
                       DS_FINAL-DAYDIFF
                       DS_FINAL-EXPEDITE
                       DS_FINAL-FLTDT
                       DS_FINAL-AUFNR
                       DS_FINAL-CMOITEM
                       DG_CMOQTY
                       DG_BALANCE
                       DG_MENGE
                       DG_WEMNG
                       DS_FINAL-EBELN
                       DL_CDATE
                       DL_SDATE
                       DS_FINAL-EBELP
                       DS_FINAL-TXZ01
                       DS_FINAL-MATNR
                       DS_FINAL-MAKTX
                       DS_FINAL-WBS
                       DS_FINAL-INDOOR
                       DS_FINAL-FOOTPRINT
                       DS_FINAL-WEIGHT
                       DS_FINAL-STORAGE
                       DS_FINAL-LIFNR
                       DS_FINAL-NAME1
                       DS_FINAL-EKGRP
                       DS_FINAL-AFNAM
             INTO DS_OBJBIN
          SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
        TRANSLATE DS_OBJBIN USING ', '.
       CONCATENATE CL_ABAP_CHAR_UTILITIES=>NEWLINE DS_OBJBIN INTO DS_OBJBIN
        APPEND DS_OBJBIN TO DT_OBJBIN.
        CLEAR  DS_OBJBIN.
      ENDLOOP.
    **-- Populate packing list for body text
      DS_OBJPACK-TRANSF_BIN = ''.
      DS_OBJPACK-HEAD_START = 1.
      DS_OBJPACK-HEAD_NUM   = 0.
      DS_OBJPACK-BODY_START = 1.
      DS_OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND DS_OBJPACK TO DT_OBJPACK.
      CLEAR DS_OBJPACK.
    *-- Get total no.of lines of Object table(attachment)
      CLEAR : DL_TABLELINES.
      DESCRIBE TABLE DT_OBJBIN LINES DL_TABLELINES.
      DL_TEXT = DL_SUBJECT.
    *-- Packing list for attachment
      DS_OBJPACK-TRANSF_BIN = 'X'.
      DS_OBJPACK-HEAD_START = 1.
      DS_OBJPACK-HEAD_NUM = 1.
      DS_OBJPACK-BODY_START = 1.
      DS_OBJPACK-BODY_NUM = DL_TABLELINES .
      DS_OBJPACK-DOC_TYPE = 'XLS'.
      DS_OBJPACK-OBJ_NAME = ' '.
      DS_OBJPACK-OBJ_DESCR = DL_TEXT.
      DS_OBJPACK-DOC_SIZE = DL_TABLELINES * 255.
      APPEND DS_OBJPACK TO DT_OBJPACK.
      CLEAR  DS_OBJPACK.
    *-- Sending the EMail document in given format
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DS_XDOCCHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = DT_OBJPACK
         OBJECT_HEADER              = IT_OBJHEAD
          CONTENTS_BIN               = DT_OBJBIN
          CONTENTS_TXT               = DT_OBJTXT
          RECEIVERS                  = DT_RECLIST
        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 .
        WRITE:/ SY-SUBRC , 'Mail document not sent'(004).
      ELSE.
        MESSAGE S000 WITH 'Mail sent successfully'(012).
      ENDIF.
    Thanks,
    Keerthi.

  • The user or users have been added successfully, but there was an error in sending the e-mail message. The server may not be set up correctly to send e-mail. To verify that e-mail is configured correctly, contact your server administrator

    I got this problem when I tried to configure out-going email and add an account to farm administrator group.
    I configure out-going email according to this website http://technet.microsoft.com/en-us/library/cc288949.aspx
    Here are the screen shots.
    The SMTP server and email accounts work out OK when I use Outlook 2010 to test.
    Anyone can help me about it? Thanks.
    Here is the log.
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         E-Mail                        
    8gsf
    High    
    #160008: The e-mail address 'admin3.sharepoint@domain' contains illegal
    characters. df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         General                      
    8kh7 High    
    Cannot complete this action.  Please try again.
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         E-Mail                        
    7946 Critical
    Cannot complete this action.  Please try again.
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         Runtime                      
    tkau Unexpected
    Microsoft.SharePoint.SPException: The user or users have been added successfully, but there was an error in sending the e-mail message. The server may not be set up correctly to send e-mail. To verify that e-mail is configured correctly, contact your
    server administrator.    at Microsoft.SharePoint.ApplicationPages.AclInv.SendEmailInvitation(EntityEditor picker, String subject, String message)     at Microsoft.SharePoint.ApplicationPages.AclInv.BtnOK_Click(Object sender, EventArgs e)
        at System.Web.UI.WebControls.Button.OnClick(EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String
    eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStage...
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    The e-mail address I have tested it for several times and there is no problem.
    Anyone has any clue about this error?

    Hi.
    This I have seen before...
    It can be that the SMTP relay server is configured to only allow certain IP ranges or addresses.
    It can be that the firewall on the SP server does not allow for SMTP traffic (normally 25, for example for Exchange).
    It can be that there is an Antivirus on the SP server(Client AV) that prohobits the Timer service to send email from this server. I have seen MacAfee do this. Needed an policy change.
    If, its the builtin SMTP service you are using, check this link:
    http://blog.sharepointrx.com/2010/11/18/setting-up-the-iis-smtp-server-for-sending-email-from-sharepoint-2010-on-server-2008-r2/
    Check that and try again.
    Regards
    Thomas Balkeståhl - Technical Specialist - SharePoint -
    http://blog.blksthl.com
    Download the SharePoint Branding Project here
    Download the SharePoint 2010 Site Settings Explained here

  • Sending PO in mail attachment with pdf format

    Hello,
    We are sending PO to vendor in a pdf attachment. The configuration is in place and as soon as the PO(ME22N) is saved the pdf mail is sent to vendor external mail address.
    The requirement however is to add some text to this mail body ( in addition to the existing PDF attachment ).
    The NACE config is using SAPFM06P program with entry_neu form and a custom sap script.
    can somebody help as where is this mail functionality added in this standard program so that I may try to customize the same for the above requirement.
    All I can see is 2 FM used in this ENTRY_NEU Form. Of which I guess ME_PRINT_PO is sending the mail ( I may be wrong here ) but where ?
    I will be thankful for any kind of hint to help solve this issue.

    In general you will have to do the following:
    1) Set NAST-NACHA = 8 (Special function)
    2) Before OPEN_FORM (maybe in In enhancement spot) if NAST-NACHA = 8, then set itcpo-tdgetotf = 'X' (to get OTF back from CLOSE_FORM!)
    3) During CLOSE_FORM, if NAST-NACHA = '8', get OTF output from TABLES parameter OTFDATA
    4) Convert this OTF output to PDF using following sample code:
    data: I_PDF STRUCTURE  TLINE occurs 0,
            I_OTF i_otf LIKE itcoo OCCURS 0.
        CALL FUNCTION 'CONVERT_OTF'
             EXPORTING
                  format                = 'PDF'
                  max_linewidth         = 134
             IMPORTING
                  bin_filesize          = w_bytes
             TABLES
                  otf                   = i_otf
                  lines                 = i_pdf
             EXCEPTIONS
                  err_max_linewidth     = 1
                  err_format            = 2
                  err_conv_not_possible = 3
                  OTHERS                = 4.
    5) Send email with PDF attachment using the method(s) mentioned in one of these excellent blogs:
    /people/thomas.jung3/blog/2004/09/07/sending-e-mail-from-abap--version-46d-and-lower--api-interface
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    or you can follow below procedure as well:
    I suggest you make yourself very familiar with the SAP code that does this automatically. Once you understand the processing sequence SAP uses, it is much easier to add your customization and insert your enhancements. To debug it and step through the code, but a breakpoint in ENTRY_NEU, and process a PO. If you're sending your messages using a scheduled job, you'll hit the breakpoint when you process the message using RSNAST00. That's how I did it. I can tell you what I did to meet my requirements. You can change to meet your needs. It required a custom program, to use instead if ENTRY_NEU, and 3 enhancements to SAP code using the Enhancement Framework. You need to know how to use the framework. 1. configure your output type ZNE2 to to run a new program ZMRP_OUTCTRL, to run form routine ENTRY_ZNE2, to create form Z_PURCHASE_ORDER. 2. In ZMRP_OUTCTRL, call standard function modules, ME_READ_PO_FOR_PRINT and ME_PRINT_PO. 3. Drill down into ME_PRINT_PO to PREPARE_FORMULAR function module. Create new enhancement, and if NAST-KSCHL = ZNE2, then lookup the recipient's email address. Pass it as parameter to ADDR_GET_NEXT_COMM_TYPE. 4. Still in ME_PRINT_PO, PREPARE_FORMULAR, add another enhancement to set the value of itcpo-getotf to u2018Xu2019, to enable CLOSE_FORM to capture OTF data for PDF. Only set this OTF flag when the output is being run by RSNAST00, not when a user is simply previewing the printout. Sy-ucomm will be blank when RSNAST00 is running. 5. In ME_PRINT_PO, drill down to ENDE, and add an enhancement to check for NAST-KSCHL = ZNE2, and if so, call standard SAP function modules to END_FORM, START_FORM, WRITE_FORM, and END_FORM. Next call the function CLOSE_FORM, and set table parameter to capture the OTF_DATA as a table parameter OTF_DATA. 6. If OTF_DATA is found, then: If nast-kschl = 'ZNE2'. if NOT otf_data[] is initial. gs_OTF[] = otf_data[]. CALL FUNCTION 'CONVERT_OTF' EXPORTING format = 'PDF' IMPORTING bin_filesize = v_len_in TABLES otf = gs_otf lines = gt_pdf EXCEPTIONS err_max_linewidth = 1 err_format = 2 err_conv_not_possible = 3 OTHERS = 4. IF SY-SUBRC 0. p_retco = '1'. PERFORM protocol_update USING '303' 'OTF Conversion failed.' 'Output Message Cancelled.' space space. IF 1 = 2. MESSAGE S303(me) with 'OTF Conversion failed.'. ENDIF. EXIT. ENDIF. CALL FUNCTION 'QCE1_CONVERT' TABLES T_SOURCE_TAB = gt_pdf T_TARGET_TAB = outbin. IF SY-SUBRC 0. p_retco = '1'. PERFORM protocol_update USING '303' 'PDF Conversion failed.' 'Output Message Cancelled.' space space. IF 1 = 2. MESSAGE S303(me) with 'PDF Conversion failed.'. ENDIF. EXIT. ENDIF. *get email recipients (this is specific to my requirements) select single banfn ernam zuname1 into (lv_banfn, lv_ernam, lv_zuname ) from eban where ebeln = nast-objky. IF SY-SUBRC 0. p_retco = '1'. PERFORM protocol_update USING '303' 'Requisition Data not found.' 'Output Message Cancelled.' space space. IF 1 = 2. MESSAGE S303(me) with 'Requisition Data not found.'. ENDIF. EXIT. ENDIF. 8. Build your OBJPACK and OBJBIN parameters: describe table mail_content lines lin. read table mail_content index lin. mail_data-doc_size = ( lin - 1 ) * 255 + STRLEN( mail_content ). clear objpack-transf_bin. objpack-head_start = 1. objpack-head_num = 0. objpack-body_start = 1. objpack-body_num = lin. objpack-doc_type = 'TXT'. APPEND objpack. describe table outbin lines lin. read table outbin index lin. objpack-doc_size = ( lin - 1 ) * 255 + strlen( outbin ). objpack-transf_bin = 'X'. objpack-head_start = 1. objpack-head_num = 0. objpack-body_start = 1. objpack-body_num = lin. objpack-doc_type = 'PDF'. objpack-obj_name = 'ATTACHMENT'. objpack-obj_descr = l_descr. APPEND objpack. CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' EXPORTING DOCUMENT_DATA = mail_data PUT_IN_OUTBOX = 'X' TABLES PACKING_LIST = objpack CONTENTS_BIN = outbin CONTENTS_TXT = mail_content RECEIVERS = receivers 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 0. p_retco = '1'. PERFORM protocol_update USING '303' 'Send Email function failed.' 'Output Message Cancelled.' space space. IF 1 = 2. MESSAGE S303(me) with 'Send Email function failed.'. ENDIF. EXIT. ENDIF. 9. Call function CLOSE_FORM, and end enhancement
    Edited by: Devireddy omkar on Aug 2, 2011 11:15 AM
    Edited by: Devireddy omkar on Aug 2, 2011 11:17 AM

  • Can anyone help me verify my account, i have tried sending the e-mail but i am not getting it in my inbox, i have tried a few times.

    Can anyone help me to verify my account, i have tried sending the e-mail a few times but it wont send.?

    Did you also enter your username/email address and password for the SMTP server? most SMTP servers (used for sending mails) want you to log in or else won't send.
    For testing purposes, you can send a message to yourself; as receiving messages is not a problem...

  • How to send the quotation as attachment in notification

    Hi folks,
    I have a small clarification regarding workflows. I am creating a Quotation and Iam trigering the workflow . The Workflow gets trigerred and a notification is sent to the Manager . The Manager can either Approve or reject . If Approved the status of the Quotation gets changed to Approved. if Rejected the status of the Quotation gets changed to rejected. I am also sending the sales order number.  I have achieved upto this step.
    But I am not able to send the Quotation as attachment in the notification to the Manager. The Business Object for the quotation is  BUS20001.
    Please guide me how to send attachments in notifications.
    Regards,
    Palani.

    Hi Palani,
        You can acheive this by using the step type FORM.
    Regards,
    A.Fahrudeen

  • How do I record a sound file and send it as an attachment using my 4s?

    How do I record a sound file and send it as an attachment using my 4s?

    Hi,
    The following is the program[Click Here| http://saptechnical .com/Tips/ABAP/email/EmailProgram.txt] which will send any format file. Actual Creator of the program is Amit Bisht.
    Thanks & Regards,
    Rock.

  • MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is

    MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is not an external device connected.

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • I signed into icloud to find my iphone. icloud tried to upload my calendar, froze my desktop calendar and then erased it when I unchecked the box. I use time machine. Can I restore my desktop calendar and how to I keep everything but my phone locator off.

    I signed into icloud to find my iphone. icloud tried to upload my calendar, froze my desktop calendar and then erased it when I unchecked the box. I use time machine. Can I restore my desktop calendar and how do I keep everything but my phone locator and mail off? I do not want to sync my desktop with icloud except for mail.

    This the Activation Lock. Read here: http://support.apple.com/kb/HT5818
    The only way is to login to iCloud with your computer browser and wipe the iPhone.
    If you can't then you have a brick, Apple won't help and AL cannot be bypass.
    https://www.icloud.com

  • I am sending a mass e-mail out to my mailing list and the mail program gets locked up and stops responding before sending the e-mail?

    I am sending a mass e-mail out to my mailing list and the mail program gets locked up and stops responding before sending the e-mail.  How can I fix this issue?  I have done it in the past successfully.

    Holly, how many are you sending to?
    Are you using the To; or BCC: field?
    Individual names or Groups?
    I suspect one malformed address at the moment without much else to go on.

  • I can able to see odbc entries in virtual regisrty of the sequence. But on client machine I am unable to find them

    Hi,
    I have created a sequence I can able to see odbc entries in virtual regisrty of the sequence. But on client machine I was
    unable to find the ODBC entries. Actually the same application is worked in Windows 2003. Now I am creating the same for WIndows 7.
    Application: LOB
    Sequence on Windwos 7
    Sequencer App-V 4.6 
    Thanks in Advance.

    Have you tested the ODBCs aren't there (and/or the app doesn't work), or are you only looking at regedit?
    http://blog.gridmetric.com/2011/09/26/possible-caveats-in-mixing-32-bit-and-64-bit-app-v-packages-and-environments/
    We have seen sometimes where the registry keys aren't visible under wow6432 node, but are really there.  I would suggest opening up the ODBC (odbcad32.exe) in the bubble, and see how things look.

  • How to send 1st e-mail attachment

    When trying to send 1st e-mail attachment I am given a form to put e-mail address.  I put my own e-mail and get message that code is not correct

    I have never done this but you can try
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_mail.htm#i1001532
    Send emails with pdf
    Send emails with pdf
    UTL_SMTP to send attachment
    Re: UTL_SMTP Mail Attachment
    how to send mail with attachment

  • Checking on the correct way to use Time Machine

    Checking on the correct way to use Time Machine.
    Open Time Machine in Preferance, Click on options,
    The only item showing on list is my HD.
    Is that correct for every thing to be backed up or should I have other items showing.
    Also should my HD be deleated from this list.
    Await any help.
    Richard

    Richard. B Mann wrote:
    Checking on the correct way to use Time Machine.
    Open Time Machine in Preferance, Click on options,
    The only item showing on list is my HD.
    Is that correct for every thing to be backed up or should I have other items showing.
    no that's wrong. this is TM exclusion list. you add items there that you DO NOT want to be backed up. so currently your whole hard drive is excluded. remove it from there if you want it to be backed up. the only thing that should be present on that list by default is the TM backup drive itself.
    btw, see pondini's TM FAQs for more info on using TM
    http://discussions.apple.com/thread.jspa?threadID=1964018
    Also should my HD be deleated from this list.
    Await any help.
    Richard

Maybe you are looking for

  • Question: CR2 file conversion

    I originally had ordered the CS4 Extended version, however I was in a hurry to get it installed, and did not realize for over a month that I did not have the extended version that had arrived shipped to me. Upon noticing the difference eventually, I

  • MOTION Trouble: Gravity Behavior

    Hello, I've been trying to search this forum but I just didn't have any luck finding information about this dilemma I am currently having. Essentially, I am trying to make several photos seem to be thrown onto a desk. However, my attempts are looking

  • How to make default writes permanent

    Hi, whenever I change my MBPs Bluetooth audio defaults via write defaults, the MBP changes everything back once I send it to sleep. How can I prevent it from resting my write defaults so it keeps them permanently?

  • Strings as hashmap keys

    If I use a string (a file name, for example) as the key for a hashmap put call, and then later try to retrieve the stored object using the same string, but this time hard-coded, will my object be retrieved? That is, will the dynamically loaded key an

  • How can I export or save custom tuning scales (project settings)

    Dealing with arab scales (maqamat) in Logic I started using the tuning scales in project prefs. I found some ("lucy-...") tuning scale presets on the internet an sucessfully imported them to my presets list. Now I would really appreciate being able t