Email body in taiwanese language

Hi,
Whether email body can be in taiwanese language when SAP login language is in English.
Email contents are retrieved using read_text with language = 'M'. Standard text is maintained in
taiwanese language. When emailing the service estimate output as an attachment the contents
in attachment are in taiwanese language. I want the email body also in taiwanese language.
Whether this is possible ?.
With Regards,
Gandhi Subramani

Hi!
I think this is possible if you are using a Unicode system. In non-unicode systems (4.6C or below), you might have to login to the system in taiwanese and hard code the text.
Cheers!

Similar Messages

  • Email body in foreign language??

    I have 2 e-mail addresses directed to my Blackberry.  Some of the e-mails, not all, from one of the addresses (it's an att.net address) are coming through in a foreign language.  Not on my desktop, only on the Blackberry.  The Subjet Line is fine, the from address and to address are fine (english), but the body of the e-mail is either a foreign language or gobbledeygook (can't tell which, though they appear to be mostly possible German words???)
    Maddening.  Have deleted that address and set it up as new, annd the same things happens.

    Hi!
    I think this is possible if you are using a Unicode system. In non-unicode systems (4.6C or below), you might have to login to the system in taiwanese and hard code the text.
    Cheers!

  • Email subject in taiwanese language

    Hi,
    Login to SAP with English language where program sends an email with attachment.
    Whether email subject can have taiwanese character?. If yes please let me know the steps requied.
    Thanks.
    With Regards,
    Gandhi Subramani

    Hi,
    Please find the link Below
    [Help|http://help.sap.com/saphelp_nw04s/helpdata/en/8c/11984197eb2e7be10000000a1550b0/content.htm]
    Thanks
    kalyan

  • Junk characters in email body only for specific user IDs

    While sending mail from SAP I am using
            SENDER = CL_SAPUSER_BCS=>CREATE( LV_SENDER_ADD ).
            CALL METHOD SEND_REQUEST->SET_SENDER
              EXPORTING
                I_SENDER = SENDER.
    now while using 'User1' and 'User2'  in LV_SENDER_ADD give a perfect result.
    But while using 'User3' and 'User4' in LV_SENDER_ADD sends Junk chars in the email body
    ST05 Trace Results show below mention lines in red.
    hh:mm:ss:ms       Type        Lasts(us)       Object                 Text                                           
    19:05:07:451      CMOD          - - -         rstscb_call_back       Parameter:                                                                         
    19:05:07:451      CMOD         - - -        rstswsf_was_stor      Parameter:                                                                         
    19:05:07:451      CMOD              2       rstswsf_was_stor      Parameter:                          Comment:   Returncode: 0                       
    19:05:07:451      CMOD              9       rstscb_call_back      Parameter:                          Comment:   Returncode: 0                       
    19:05:07:451      CMOD         - - -        rscpi_init            Parameter:                                                                         
    (I am converting the XSF output of Smartform  and SCP_TRANSLATE_CHARS to translate smartform output into HTML)
    all the above four user have SAP_ALL authorization.
    'user4' is created as a copy of 'user1'
    Checking the Type CMOD says that they are call to 'C' routine 'kernal calls'
    the above code is executed withe the user id of user1 2 3 4  and all of them give the same results.
    when ever the sender is user1 or user2 the transmission is successful else. sends junk chars.

    Could you tell us why/how you use SCP_TRANSLATE_CHARS?
    Do theseusers have same language/country in their profile?

  • Email body text

    Hello,
    we need to add a mailbody text to a standard mail (e.g. sales order confirmation using program SAPMV45A).
    The output type was defined using transaction NACE with application V1 and medium 5 (external sending).
    Currently we have only the PDF attachment without any text.
    The mail text using transaction V/30 cannot be used for external sending (-> OSS 191470).
    Is it possible to fill the mailbody text (argument: contents_txt in SO_DUCUMENT_SEND_API1) with standard customizing?
    Or is a modification necessary?
    Thanks in advance for your help.
    Marian.

    Hello,
    I am working in a 4.7 environment using standard output configuration using transaction NACE and I also could not get standard SAP to add email disclaimer text into the body of the email.  Here is what I did:
    1)  In function module SO_OBJECT_SEND, I added an include statement (this IS a modification to SAP):
    tm = cl_os_system=>get_transaction_manager( ).
          if not tm is initial.
            t = tm->get_current_transaction( ).
            if not t is initial.
              t->set_mode_update( oscon_dmode_direct ).
            endif.
          endif.
        catch cx_os_error cx_os_system_error.
      endtry.
                                                                                    INCLUDE ZZMVxxxxxx.
    create send request
      CALL FUNCTION 'SBCOMS_SEND_REQUEST_CREATE'
        exporting
          originator               = originator
          originator_type          = originator_type
        IMPORTING
          SEND_REQUEST             = send_request
        TABLES
          OBJCONT                  = objcont
          OBJHEAD                  = objhead
          OBJPARA                  = objpara
          OBJPARB                  = objparb
    2)  In the INCLUDE, I added this code which retrieves standard text object and populates the table which becomes the email body:
    DATA: ZZ_lines LIKE tline OCCURS 0 WITH HEADER LINE.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT*
          ID                            = 'ST'
          LANGUAGE                      = 'E'
          NAME                          = 'Z_EMAIL_DISCLAIMER_GENERAL'
          OBJECT                        = 'TEXT'
        ARCHIVE_HANDLE                = 0*
        LOCAL_CAT                     = ' '*
      IMPORTING*
        HEADER                        =*
        TABLES
          LINES                         = ZZ_LINES
      EXCEPTIONS*
        ID                            = 1*
        LANGUAGE                      = 2*
        NAME                          = 3*
        NOT_FOUND                     = 4*
        OBJECT                        = 5*
        REFERENCE_CHECK               = 6*
        WRONG_ACCESS_TO_ARCHIVE       = 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.
         LOOP AT ZZ_LINES.
              MOVE ZZ_LINES-TDLINE TO NOTE_TEXT-LINE.
              APPEND NOTE_TEXT.
              ADD 1 TO SIZE-NOTE_TEXT.
              ENDLOOP.
      ENDIF.
    3)  Finally, I created the standard text object Z_EMAIL_DISCLAIMER_GENERAL and added the following text:
    PLEASE DO NOT REPLY TO THIS EMAIL.  IF YOU HAVE QUESTIONS, PLEASE        
    CONTACT YOUR <your company's name> REPRESENTATIVE.                                                                               
    This communication is intended for the use of the addressee only and may 
    contain information that is privileged or confidential. If you are not   
    the addressee, you are hereby notified that any dissemination,           
    distribution or use of this communication is prohibited. If you received 
    this communication in error, please destroy it, all copies and any       
    attachments and notify the sender as soon as possible. Any comments,     
    statements or opinions expressed in this communication do not            
    necessarily reflect those of <your company's name>, its subsidiaries and    
    affiliates.                                                              
    Hope this helps.
    Edited by: Bruce Risto on Jun 18, 2009 11:27 AM
    Edited by: Bruce Risto on Jun 18, 2009 11:54 AM

  • How to remove the bar above the email body in inbox

    How do I remove the Information / toolbar? (not sure what it is called) that appears above the email body under the list of incoming emails in the inbox. It is the bar the has info about the email and buttons like reply, delete, etc. It is redundant and just takes up space.

    You cannot remove it. It is part of the message pane and will display when the message pane turned on.
    You can make it smaller with this add on.
    https://addons.mozilla.org/en-US/thunderbird/addon/compactheader/?src=hp-dl-featured

  • How to embedded oracle report data in email body from forms?

    Hi,
    I am working on oracle forms and report 10g and i am new to this. I want to knw How to embedded oracle report data in email body ?
    Regards
    Shruti

    I have uploaded a sample . This might help
    http://www.alexyscorp.com/send_report_email.zip

  • XML Publisher Email Body Attached Bursting Control File 11i EBS HRMS

    Hi there
    I have a problem with the Brusting , when I received an email through the bursting, I get the Email Body as an Attached File.
    XML Publsiher
    5.6 Build 45
    EBS 11.5.10.2
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/XXPER/LIST_G_COMPANY_CODE">
    <xapi:delivery>
    <xapi:email id= "XXPER" server="is050.atco.com" port="25" from="${FROM_EMAIL_ADDRESS}" reply-to ="${FROM_EMAIL_ADDRESS}">
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" subject="XXPER Employees List Company: ${COMPANY_CODE}">
    Status: Normal, Successful Completion.
    Regards
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="XXPEREmployees List" output-type="pdf" delivery="XXPER">
    <xapi:template type="xsl-fo" location= "xdo://XX.XXPER.en.00/?getSource = true">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Regards
    ASIM

    I HAVE ADDED THE FOLLOWING statement BEFORE subject, and it resolved the issue.
    content-type="text/html"
    For Example:
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" content-type="text/html" subject="Employees List Company: ${COMPANY_CODE}">
    Regards
    ASIM

  • Background Job result output should be displayed in Email body

    Hi Friends,
    One of our user is scheduling background job, He need the output to his external Email ID.
    user required that Job result output should be displayed in Email body, Not in attachment.
    We have tried but job result received in email as HTML (or) PDF file attachment, But he wants output  in Email body itself.
    Please help.
    Regards,
    Karthickbabu G.G

    Hi,
    Displaying report output in email body is not available as a standard feature. Also doing a custom development would be very cumbersome .
    Regards,
    Deepak Kori

  • How can I attach an image without the image is in the email body? (using the new mail the Lion)

    How can I attach an image without the image is in the email body? (using the new mail the Lion)
    I want in attachment, not in the body mail.

    I think your only solution is to zip the image files first and then attach them.
    Read this from a site I found:
    Sending Graphical Attachments -- When you attach a graphical image to your message, the recipient of your message sees the image inline (that is, in the body of the message) if her email client supports inline display. ("Take Control of Email with Apple Mail" contains a table listing the capabilities of popular Mac and PC email clients.) If a client does not support inline display (or the recipient has turned off the inline display option), the file appears as an attachment that must be opened in a separate program.
    On the one hand, an inline image is easier for the recipient to see - all she has to do is look at it. On the other hand, inline images can be frustrating to scroll through. If you do not wish to send a graphical image inline, you must compress the file before attaching it - Mail, sadly, lacks a built-in compression option, though fortunately for Panther users, the Finder offers Zip compression without requiring a separate application.
    Note that when you compose a new message, Mail always shows attachments in the body of your message. You can manually drag them somewhere else, but many email clients display all attachments in a separate list, regardless of where you place them in the message body.
    If you paste an image into a message or drag & drop an image from another window (say, a Web browser), Mail converts the raw image data to an attachment in TIFF format. On the other hand, if you drag & drop the icon of an image file (or use the Attach button to locate the file using the file browser), Mail leaves the attached image in its original format. This difference is significant, because although most email clients can display JPEG images just fine, support for TIFF - especially in non-Mac email clients - is less common. If possible, I suggest attaching image files as opposed to pasting or dragging in raw image data.

  • How do I add an email body text for remittance advices / payment advices?

    Hello,
    I am trying to send an email body text with the pdf remittance advice to my vendors.
    Background:
    We are running automatic payments to vendors via transaction F110. We have configured the pay run to produce remittance advices for vendor payments. Finally we activated the BTE 00002040, through transaction FIBF, to use a custom copy of the function module SAMPLE_PROCESS_00002040.
    Our payment run sends emails with pdf-file attachments to our vendors correctly.
    <b>The Issue:</b>
    I can not find a way to add text to the body of the email with the attached remittance advice.
    Has anyone advise on how to populate the email body with text?
    Thank you and best regards
    Karsten Arold

    Hello Subhashree,
    I have not implemented the functionality, but I found rerference to SAP Note 1033893 in another forum post.
    Email text to Payment Advice in BTE2040
    Allan

  • How to send email notification in different languages in Workflow ?? Urgent Help Needed

    Gurus,
    How to send email notification in different languages in Workflow? Can anyone send me some useful guidelines or link where it is mentioned.

    There is no profile option available to specify whether send or not send email notification.
    But after login, in preferences youcan set the notification preference value by which you can configure whether to send or not
    to send email notifications.
    If you select ''Do not send me mail' or 'Disabled' it will not send.
    For other values it sends the notfication in different formats like text, html, attachments etc...
    Edited by: sarojak on Jun 27, 2011 7:18 AM

  • Not able to see the output in sost when sending the image in email body

    I am sending the image in email body and when m trying to see the output in SOST then it showing a page 'you are not connected to the internet'
    I am able to see the output when m saving local objects but when m saving it in some package its showing me this page
    Kindly help it
    Regards
    Pratham Kapoor

    Hello Prakash,
    Thanks for the reply
    I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
    My Program is to put the logo in my email body
    I am sending you the attached image

  • BI Publisher 11g - not able to get TEXT output in the email body

    I am trying to send TEXT report output generated by ETEXT templates in the email body by setting up the Bursting defintion in the Data Model using the following query. It is always sending it as an attachment though PARAMETER6 is set as false. Please advise on how to make it work?
    It seems PARAMETER6 does not have any effect on how it works.
    select
    customer_id KEY,
    'Etext_Template' TEMPLATE
    'ETEXT' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'TEXT' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    null TIMEZONE,
    null CLAENDAR,
    customer_name || '_status' OUTPUT_NAME,
    'true' SAVE_OUTPUT,
    '[email protected]' PARAMETER1,
    null PARAMETER2,
    '[email protected]' PARAMETER3,
    'Status Report for ' || customer_name PARAMETER4,
    null PARAMETER5,
    'false' PARAMETER6,
    null PARAMETER7,
    null PARAMETER8
    from dpmi_customers_v
    The Oracle BI Publisher version is 11.1.1.5.0.
    Thanks,
    Suja

    Control click or Right Click on the attachment in the body of the email and select 'View as icon'.
    There is a (paid for) mail plugin called Attachment Tamer which helps Mail do a much better of handling attachments - giving much more control over how they are viewed/arranged/received. It's available from http://lokiware.info/Attachment-Tamer
    (Usual caveat, I've no connection with Lokiware, just happy with their product).

  • Is it possible to burst PDF file on the email body itself?

    Hi,
    Is it possible to show the contents of a PDF file (or any file) on the email body itself and not as an attachment thru bursting control file? We want the message to look exactly as how it looks like in the PDF file, with all the formatting and stuff and not just plain text. So basically instead of the recipient having to open the attached document, we already want the contents of the document shown exactly on the email.
    Thanks,
    Ronaldo

    Actually, I am using onunload() but the result is in-consistent. Sometimes file write to the folder, sometimes don't. I don't know why it behave like this.
    Before onunload(), I tried this cep.util.registerExtensionUnloadCallback, and found out it's not working as expected.
    Now thanks to you and David, I came to know aboutcom.adobe.csxs.events.ExtensionUnloaded but unfortunately this is also not working.
    And then there is an event applicationBeforeQuit which only works when extension (html panel) get closed with host application (Photoshop etc.). If it is closed before the host then we don't get any call. Please let me know if I missed anything here.
    So It looks like we don't have any option here rather than using onunload() which is giving in-consistent result. Can you please take a look into this, may be I am missing something?
    Or may be another work around to store the preferences on closing of extension.
    Thanks for all your help..

Maybe you are looking for

  • Error when Launching Office 365 Pro Plus in Remote Desktop Services

     Hello, I have Windows Server 2008 R2 and I have installed Office 365 pro plus volume license but I keep receive the error when I launch the product  I receive this error "This Copy of Microsoft Office 2013 cannot be used on a computer running Termin

  • Adobe Reader 8.0 and PDF

    Hello everybody ! I have a big problem with Adobe Reader 8.0 ! I created a form with Live Cycle Designer 8.0. I saved it on my computer. I opened it with Adobe Reader 7.0.9, I filled it and sent with the E-mail button. It worked fine, I had to choose

  • Exchange 2003 to 2010 OWA redirection

    Hello, We are currently migrating from current exchange 2003 environment to exchange2010. For today we installed new ex2010 server with CAS/HUB/MBX roles.  Before we start moving mailboxes to new server we have to setup both OWA's on both servers. Du

  • Track pad pointer erratic

    Having issues with ne mac mini, thunderbolt display and magic trackpad...........pointer is "sometimes" erratic ie skips around or jumps a line or two? First tackpad died in about 4 hours , returned for replacement. New trackpad has symtoms described

  • International - Date

    Date fields in the reports are not displaying as System Date Format. Pulled the date fields and set the format as System Default Shrt format. Ran the report and display the date in System Date format BUT TIME is getting displayed. How to suppress the