Exportpdf changing email attachment format

Why does my email atttachements now come through in pdf formatt only since i have subscribed to exportpdf. I subscribed as my scanner will only scann documents in pdf formatt and I am unable to edit them.

Hi Terry,
Is there a chance that the senders chose to attach PDF's lately? As the ExportPDF subscription would not have an effect on your email file types.
Did you do a test email to yourself as well?
Let me know so we can work together to figure out this inconvenient issue!
Looking forward to hearing back from you.
Kind regards, Stacy

Similar Messages

  • Email Attachment Format Error

    hi frn's ,
       i  am sending an email with text attachment ....but not getting in desired format  in text attachment....
    please help
    Itab value:
    abcdefdfldjfñlkdsjfñldsjfdsñljñla
    fdsljfñldskjfldsñkjfñldsjfñldsajñld
    vcxusfcxusfcusafcxusafcusafcdsauc
    Actual result currently coming in text file:
    abcdefdfldjfñlkdsjfñldsjfdsñljñlafdsljfñldskjfldsñkjfñldsjfñldsajñldvcxusfcxusfcusafcxusafcusafcdsauc
    Desired format should  be
    abcdefdfldjfñlkdsjfñldsjfdsñljñla
    fdsljfñldskjfldsñkjfñldsjfñldsajñld
    vcxusfcxusfcusafcxusafcusafcdsauc
    Thanks and Regards
    Priyank

    i give some coding below
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                      WITH HEADER LINE.
    data :con_tab  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab ,
           con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    LOOP AT i_mail_sent.
        CONCATENATE
             i_mail_sent-prueflos
             i_mail_sent-lifnr
             i_mail_sent-werk
             i_mail_sent-lagortchrg
             i_mail_sent-matnr
             i_mail_sent-ebeln
             i_mail_sent-ebelp
             i_mail_sent-mblnr
             i_mail_sent-losmenge
             i_mail_sent-mengeneinh
             i_mail_sent-vname
             i_mail_sent-vdatum
             i_mail_sent-dec INTO  it_attach   SEPARATED BY  con_tab
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND it_attach.
        CLEAR : it_attach.
      ENDLOOP.
    FORM sendmail  TABLES   p_it_message
                            p_it_attach
                   USING    p_mtitle
                            p_format
                            p_filename
                            p_attdescription
                            p_sender_address
                            p_sender_addres_type.
      REFRESH : docdata,docdata[].
      docdata-doc_size = 1.
      docdata-obj_langu = sy-langu.
      docdata-obj_name  = 'SAPRPT'.
      docdata-obj_descr = p_mtitle.
      docdata-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR docdata.
      READ TABLE it_attach INDEX tab_lines.
      docdata-doc_size =
         ( tab_lines - 1 ) * 255 + STRLEN( it_attach ).
      docdata-obj_langu  = sy-langu.
      docdata-obj_name   = 'SAPRPT'.
      docdata-obj_descr  =  p_mtitle.
    'Pending Call List.xls Format'.
      docdata-sensitivty = 'F'.
      t_attachment[] = p_it_attach[].
      REFRESH  : objpack,objpack[].
      CLEAR objpack.
      REFRESH objpack.
      objpack-transf_bin = space.
      objpack-head_start = 1.
      objpack-head_num = 0.
      objpack-body_start = 1.
      DESCRIBE TABLE it_message LINES objpack-body_num.
      objpack-doc_type = 'RAW'.
      APPEND objpack.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num   = 1.
      objpack-body_start = 1.
      DESCRIBE TABLE t_attachment LINES objpack-body_num.
      objpack-doc_type   =  p_format." 'XLS'. "ld_format.
      objpack-obj_descr  =  'Lot Details.'.
    objpack-obj_descr  =  p_attdescription. "'Pending Call List.'.
      "ld_attdescription.
      objpack-obj_name   =  'Lot Details' ."  p_filename.
      "'filename'."ld_attfilename.
      objpack-doc_size   =  objpack-body_num * 255.
      APPEND objpack.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = objpack
      OBJECT_HEADER                    =
         contents_bin                     = t_attachment
         contents_txt                     =  it_message
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          receivers                        = 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 <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        MESSAGE ' Records Successfully Send' TYPE 'I'.
      ENDIF.

  • Oracle Reports - Change Email Attachment Name

    Hello,
    I'm sending salary receipts in PDF via email using Report Server 10g. It's working but i want to change the PDF name, in order to appear the number of employee in the name (something like Receipt_00001.PDF)
    I used to accomplished that in other versions using the DESNAME parameter, but now since its Web and via Reports Server that doesnt work :(
    PROCEDURE EXEC_REPORT_SRV_FILE (WK_REPORT VARCHAR2 /* report name */,
    WK_PROC VARCHAR2 /* process name */,
    wk_file VARCHAR2 /*a parameter value that i use in the command below*/)
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,wk_file);
    Where i call the EXEC_REPORT_SRV_FILE i tested like this below but just for doing this, the emails are no longer sent and it gives me the error in (**)
    I done this because i think it would be in the 3rd parameter, but i was in doubt it could be in the 2nd one but i dont think so..
    exec_report_srv_file (name_in ('PARAMETER.PR_DRIVE_APLIC')
    || name_in ('PARAMETER.PR_DIRECT_APLIC')
    || retorna_barra
    || lower (giaf6i_var_lib.cp_filename),
    'Receipt1'||lower (pname),
    'Receipt2'||wk_dest_file
    Executed successfully but there were some errors when distribute the output REP-50159: Executed successfully but there were some errors when distribute the output
    I'm using Oracle Reports 10g.
    This is so urgent that i joined this forum just for this (For now.. :) )
    Thank you so much in advance for your time.
    Best regards,
    Nuno Neves.

    - What is the difference between the reports that work and the ones that do not work?
    - I would suggest to apply latest patchset 10.1.2.3
    https://updates.oracle.com/download/5983622.html
    Thanks, Roberto

  • Changing email attachment default viewer/editor on iPad.

    When i receive emails with attachments and then click on the attachments goes to safari but then asks to open in Dropbox. I'm not given any other options. How do I get my iPad to stop this behavior? It didn't always do this.

    You can delete an email account from the Mail app by tapping on the account id in Settings > Mail, Contacts, Calendars and then tapping 'Delete Account'- if that is where your contacts are coming from then when you delete the account you should get the option as to whether or not to remove the account's contacts. If multiple email accounts are still on the iPad after that then you can set the default account for new emails via Settings > Mail, Contact, Calendars > Default Account.
    For Messages if the iPad is using your account then Settings > Send & Receive, tap on the id at the top of that screen and sign out of it. She can then sign in with her own account.

  • E-recruiting: change attachment format in requisition maintenance

    Hi everyone,
    i need to change the attachment format in requisition maintenance.
    i add a text field and i need to allowed the user to add a virtual file(file that not really excist)
    and when the user click on add attachment i need to create the file and save it and restore the file where sap restore all the files that he attach.
    is anyone know how can i restore the file so it can be the same place that sap restore the file?
    thanks in advanced,
    dana.

    Hi Dana,
    In E-Recruiting we are using a concept of storing the documents in Knowledge Warehouse by calling the following standard class.
      CALL METHOD cl_hrrcf_hrkwf_storage=>update_attachment
    by having the parameters: Content of the attachment, Description, Dpcument ID, Language, Object ID, Sub Type, Etc. I think you can also the same.
    Have an overview on the std class, and based on the class you can create your own Z class.
    Regards,
    Gokul.N

  • Change the attachment name in email via webservice

    Hey,
    is there any chance to change die filename of attacheted files (reports) using email scheduling? There is no option in the webinterface. We are using the webservice for scheduling - call the scheduleReport method.
    There is a tag reportDataFileName for the webservice, but shows no reaction. The file ist every time named attachment.XYZ, where XYZ is the template format. We are using an XML Template for creating XLS reports, but reaching an attachment.xml makes it impossible for direct opening out of the email.
    A second problem is the message for the email, attached as message.txt and not directly written in the email.
    thx for any ideas, Sebastian

    Hi Sebastian
    This article might help you, http://blogs.oracle.com/xmlpublisher/2009/12/dynamic_delivery_file_naming.html
    Tim

  • Is there any way to control or change the email notification format deliver

    Hi,
    Is there any way to control or change the email notification format delivered by iBots? I have created an iBot to deliver the scorecard report to the team with type chosen as 'Attachment (HTML)' option. With this definition of iBot - notification being sent in MIME HTML (.mht) format. Due to some security settings at my email client - the attachement gets quratined because of .mht format. So, I am looking for an option to send the notification only in HTML (.htm) format with which I don't have any issues with my email client?
    Any help is really appreciated.
    Thanks,
    Vency

    Hi,
    You try this
    change format of to whichever you required in this file.. I havn't tested it yet..
    I hope it will help you..
    thank you
    E:\OracleBI\web\app\res\b_mozilla\delivers\deliverycontenteditor

  • My apple id is not working on icloud because it is not in email address format.   how can i change my apple id to email format so icloud can work?

    Hello - I just purchased an iPhone 4s and would like to use iCloud but my apple id is not in email address format so when i try to sign into iCloud it won't let me use my apple id.  i tried to change my apple id through my account settings but could not find a way to do that.  i found ways to change everything else in my settings but when i pushed on the edit button to change my apple id the page didn't change.  Not sure how i can get to use iCloud?  Please help.

    You change the name of your ID at https://appleid.apple.com.  See http://support.apple.com/kb/HE40.

  • I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask apple id confirmation from me. I never confirm anything because I don't know,the link's attached, it's legal or illegal.

    Dear Apple support team,
    I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask my apple id confirmation from me about 6-8 emails. I never confirm anything because I don't know,the link's attached, it's legal or illegal.
    The latest link (just be sent to my email 1 hr. ago) : http://www.smartpixeladv.com/proma/Login/index.html 
    Text is:
    Dear Customer,
    We recently noticed an unusual activity in your iTunes account. Please complete the process to confirm your
    informations.
    Confirm Now>
    This link will expire three days after this email was sent.
    If you don’t make this request, your account will be blocked for security reasons.
    Apple Support​
    In my opinion, i think      "http://"   should be   "https://"  right?  Or Apple should show the link on your website  that we can find, re- check and click by ourselve. Or  Apple should do "How to confirm apple id" on your main page. ( in fact  i'm not sure you already done "How to" on your website yes or not, because I cannot find it)
    The apple id is sensitive security, it's concerned personal security and any credit card payment so please understand me that's why i must to interrupt your team to help me to solve this problem. I'm scared my account will be blocked. Please advice me.
    Wassa. (BKK)

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • HT5275 When I download an attachment, it doesn't open in a new window.  It goes to my finder, but I must click on an email attachment at least 3 times in order to find it there.  Is there a way to change the preferences to simply open attachment in a new

    When I download an attachment, it doesn't open in a new window.  It goes to my finder, but I must click on an email attachment at least 3 times in order to find it there.  Is there a way to change the preferences to simply open attachment in a new window?

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

  • Custom file name format for EMAIL Attachment

    Hi,
    We are seding attachment to Supplier by using Email Transport protocol over Custom Document Generic Exchange.
    It delivers mail successfully with an attachment as EMAIL 1.0. but we want to customize the filename( ex: c111.txt) . how can we change the attachement filename ? and coud u tell us what are the properties are required(tip.properties) for email tranport.
    Regards,
    Jawah

    Hi,
    Have you checked -
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_009_Transport_SMTP.pdf
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_021_TIP_Properties.pdf
    Also refer -
    override default send from email id and attachment name in email delivery
    I am not very sure whether name of attachment can be customized. I think anybody from Oracle IDC team can confirm the same.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, Infosys on Oct 13, 2009 2:09 PM

  • Name/type of downloaded email attachments is changed to attachment.ashx or something similar

    I access an email account at the site below which provides Microsoft Outlook Web access. Since the last Firefox update to version 8.0, the true name/type of email attachments that I download is changed to attachment.ashx (or attachment1.ashx etc if there are several downloaded files. This is very inconvenient. Note that the problem does not exist when downloading attachments from aol.com. There is also no problem when I use IE as browser. Version/system details below are correct.

    Outlook Web Access sends an illegal Content-Dispositon header to Firefox. This is no longer allowed in Firefox 8. Firefox 9 will have a workaround for this so that Microsoft has time to fix their software.<br>
    See http://support.mozilla.com/nl/questions/895024<br>
    https://support.mozilla.com/en-US/search?q=attachement.ashx<br>

  • Changing email format to UTF8

    Is that possible to change the email format to utf8 before going out. Thank you

    Hi,
    It is definately possible, but the process depends a bit on how your Office 365 identity setup looks like, and also what you actually want to do?
    Do you want to change the logon username as well?
    Are you using DirSync for provisioning accounts? If that is the case, it's in your on-premise Active directory you need to do the changes.
    Here's a very quick example that sets primary email address for all users to
    [email protected] (note that I'm not changing the logon address). I am also assuming that you have Displayname formatted as "Firstname Lastname". It will not remove any old
    addresses, just set them as aliases.
    Get-Mailbox -RecipientTypeDetails UserMailbox| Foreach-Object {
    $DisplayName = $_.DisplayName.split(" ").tolower()
    $NewEmailAddress = "$($DisplayName[0]).$($DisplayName[1])@365lab.dk"
    Write-Host "Old primary email address is $($_.WindowsEmailAddress), will change to $NewEmailAddress"
    Set-Mailbox -Identity $_.Alias -WindowsEmailAddress $NewEmailAddress -WhatIf
    You need to remove WhatIf  from the set-mailbox cmdlet in order to do actual Changes...
    Below you'll find acouple of links that may be useful as well:
    http://technet.microsoft.com/en-us/library/jj984289(v=exchg.150).aspx - Connect to Exchange Online with PowerShell
    http://www.o365info.com/2013/03/manage-email-address-using-powershell.html - Good information about changing email addresses with powershell.
    Hope this helps you out!
    /Johan
    Microsoft Certified Trainer
    MCSE: Desktop, Server, Private Cloud, Messaging
    Blog: http://365lab.net

  • I can not open email attachment which is sent from a swann dvr using apple mail since i upgraded to Yosemite ,has anyone got a fix ? the file format is _mnt_tmp_

    i can not open email attachment which is sent from a swann dvr using apple mail since i upgraded to Yosemite ,has anyone got a fix ? the file format is _mnt_tmp_

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • When i choose a file to attach it, it will only create a complete image?e on a new email. It wont do an attachment format.

    I am having problems with attaching a scanned document. When i choose it from my desktop, where I have saved it, it will not go on to a new email in attachement format , but only as a complete image. I use mac mail.

    All one page attachments are displayed fully. More than one page they will appear as an attachement. However, the recipient will only see an attachment regardless. Stop worrrying.

Maybe you are looking for

  • Directory structure on Win/MSS

    Hello, It is a conceptual doubt, not an error. We have several Dialog instances (on separate boxes) for our Production system running R/3 4.7 on Win server 2003 + MS SQL 8.00.2040 I noticed that directory structure of Dialog hosts don't have SYS dire

  • What is the Struts version in JDev 10.1.3.2?

    Hi all, What is the default Struts version that comes with JDeveloper 10.1.3.2.4066 ? I did not find this info anywhere. Thanks Daniel

  • Formatted search as such G/L Account name to be shown

    Dear All, I have added in Udf in the row level of marketing document like U_Sales A/C Name, U_Cogs A/C Name, U_Inventory Account Name. Stock is maintained Warehouse Wise. Now I want that in the row level for any item e.g warehouse 001 I want a format

  • XPath and XQuery

    Hi all, What's the difference between the XPath and XQuery, can XPath has better performance than XQuery? Regards, Jane

  • Erro when exporting portal resources

    Error messages when exporting to export portal resources, someone already has that reason they?      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)      at java.awt.EventDispatchThread.run(EventDispatchThread.java:122) Cause