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

Similar Messages

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

  • Last opened email subject is shown when opening email with many destination addresses

    Platform IPAD2 64Gb, OS version 4.3.5 (8L1), English default language.
    Issue: email subject field contents not showing correctly.
    Today I received on my gmail account an email that was targeted explicitely to a group of over 60 addresses, all of them together in the "to:" field.
    on the left part of the screen I can properly see a part of the right subject of the email.
    If I access another email, then open that one, the wrong subject of the last opened email is shown in the right part of the screen, just under the long recipient list, and before the correctly shown date time and content.
    This happens consistently, and whatever other email I decide to open, its subject is shown in place of the right one.
    While having that email opened, if I kill the email application (doubleclicking home and then killing the mail icon), and then relaunch email, the email opens immediately, and the subject is correctly shown.
    I also had cases in which an attachment was not shown in the email, despite being there, and being visible as a clip icon on the left part of the screen (but this is a different issue).
    Marco Guardigli  ( @mgua )

    Unfortunately there isn't official commercial support for Mozilla Thunderbird from Mozilla Corp.. I believe some contributors here ([http://mozilla.magicfab.ca myself included]) do offer such support, though.
    ''Before doing anything else, please do exit Thunderbird completely and [https://support.mozilla.org/en-US/kb/profiles-tb#w_backing-up-a-profile backup the profile folder] - it contains all your email, settings, filters, etc.''
    Regarding your issue, it looks like the mail folder information may be corrupt. In the left pane, in the folder list, right-click on the Sent folder and select '''Properties'''. Choose "'''Rebuild Index'''" or "'''Repair Folder'''" - do you even have that option? Once done, exit TB completely and restart it.
    Updating to a newer version will help anyone help you, if only because some of the documentation for older Thunderbird versions is a bit harder to find and testing to try & reproduce your problem will be harder. Don't do this just yet, though :)
    After this issue has been addressed I would suggest considering using IMAP if your provider allows you to, and of course archiving your email to Local Folders and doing regular backups of your profile.
    If you want to arrange commercial support, contact me via the link I provided above and we can discuss rapidly. Otherwise I am fine continuing here, however I can only reply as time permits. I am in Montreal (so, EST time zone).

  • Email Functionality:How to create Email Subject w/ more than 50 CHAR Length

    Hi All,
    I have a requirement that will send email, currently using FM SO_DOCUMENT_SEND_API1
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = w_doc_data  "Email Subj
          put_in_outbox              = 'X'
          sender_address             = w_username  "FROM EMAIL
          sender_address_type        = 'SMTP'
          commit_work                = 'X'
        TABLES
          packing_list               = t_objpack
          contents_txt               = t_text     "Email Body
          receivers                  = t_users    "TO EMAIL
        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.
    The email subject is being populated at parameter t_packing_list under structure SODOCCHGI1-OBJ_DESCR that can hold only up to 50 characters.
    In my requirement, the email subject is up to 50+ characters.
    Thanks All.

    Hi,
    Try below code:
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Regards,
    venkat.

  • 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

  • How to set a form field that automatically saves as email subject title

    I am creating a form in acrobat 9 and want the submit to email button to automatically use the information from one of the text fields as the subject title of the email. So when the client submits the form at the end the PO number they have used will automatically be the email subject. Is there any way to do this? I have found an example created using javascript but I am very much a novice with this so I don't know where to start with this? Any help would be greatly appreciated

    Read this tutorial:
    http://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address

  • Email subject and sender data is missing for HTML contents

    Dear all,
    Good day. I tried to send an email with HTML codes to draw a table. It works, however, the email sender and subject are missing. And the email body looks like the following:
    To: abc From: xyz Message-Id: Subject: This is email subject. Mime-Version: 1.0 X-Mailer: SAP R/3 Internet Mail Gateway 4.6B1 Content-Type: TEXT/HTML; Charset="US-ASCII"; Name="NO NAME.HTM" Content-Transfer-Encoding: 7BIT
    Table header and contents.
    Anyone has idea on what it happens and what is the solution? Your help and advise are greatly appreciate. Thanks in advance.
    Regards,
    CN

    is there any problem with Background spools with SAP? We are running R3 here. And looks like its the spool background job that's creating the error. When i execute the report it shows all the record in print preview or if i print it.
    Please Help!

  • Email notification in human task: How to customize email subject.

    Dear all community members,
    I am using email notification service in human task to receive email notification if task is assigned to me. I have configured email notification in human task & I do receive the email in my inbox as assignee.
    The default email subject is like [Action Required: TASK_TITLE], I want to remove this [Action Required:] from email subject.
    I tried setting <%null%> in Notification Header in .task file but the email subject is still has Action Required.
    Is there any way to customize email subject so that I can get rid of [Action Required:] [FYI] in email subject.
    Thanks & Regards.

    I believe this will help - http://docs.oracle.com/cd/E23943_01/user.1111/e15175/bpmug_cust_res_bndl.htm

  • Re: and Fwd: in Email Subject

    Is there any way to prevent the Re: and Fwd: from being added in front of the text in an email subject when an email is reply to or forwarded?
    Solved!
    Go to Solution.

    No, it is automatically added and can be edited out if you choose.
    But there is not an option to not have it.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Email Subject in Subscription Notification - customize wording?

    Hi all,
    we use EP6 NW04SPS11.
    Our users have discussions in Collaboration Rooms to which they can subscribe. Then they get an Email containing a link to the discussion.
    The Problem: in the email the word "subscription" is not really optimal, so we took the SUBSCRIPTIONADMIN_de.xml from etc/notifications to change the text in the mail body.
    But i can't find the place where the subject of the email is generated, there we always have the text "Subskription "<DiscussionTitle>". There had been an great discussion thread with doku about this but the Email Subject is still an open issue
    Customized Subscription Massage
    Any ideas out there ?
    regard, yann

    Hi Yann,
    this is a little bit tricky, though.
    The subject is taken from a property file inside this JAR:
    <i>\usr\sap\{REL}\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.km.cm.repository.service\private\lib\km.appl.repository.service.app.subscription_core.jar</i>
    When you open this JAR you'll find several translated property files. (Res_??.properties)
    Inside these files you'll find the mailing subjects.
    I'm not sure if this trick works...: Unzip the JAR, edit the file, zip the JAR. Test if this works...
    Maybe you'll have to redeploy the PAR (that contains the JAR). The PAR could be found here:
    <i>\usr\sap\{REL}\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd\com.sap.km.cm.repository.service.par.bak</i>
    Simply rename the par from <i>.par.bak</i> to <i>.par</i> (after changing the JARs content) then restart the portal. This will redeploy the PAR, with its content. This should do it, if the first one doesn't...
    Puh...I guess this should do it.
    Hope this works!
    Regards
    Dirk

  • How can I have the title of the document be in the email subject line automatically when sending?

    How can I have the title of the document be in the email subject line automatically when sending?

    It can be done if you use a script, like this one:
    this.mailDoc({cTo: "[email protected]", cSubject: this.title});

  • Customizing PO approval workflow POAPPRV for email subject/body changes

    Hi,
    The requirement is to modify the email subject/body of the emails sent to the suppliers once PO is approved.
    They would also like to remove the
    'From/To/Sent/Id' which is displayed as first section in body currently.
    I am new to workflow, so could you please guide me in achieving this?
    Is workflow customization only option?
    Do we have any other way in which the requirement can be accomplished?
    Thanks!

    >
    I would like to know how FYI gets appended before.
    in the body before the actual text, From/To/Sent/Id are all displayed. I would like to know where they are fetched from.
    I can understand it uses some template for email, but am unable to locate it.
    >
    The FYI is appended based on the type of notification. Since this message does not require any action from user, Oracle adds FYI.
    See http://apps2fusion.com/apps/workflows/327-workflow-notification-template to understand the template.
    >
    Also can you point me to good references for workflow customization.
    >
    You can look at
    Customizing seeded workflow steps
    http://www.workflowfaq.com/
    Anil Passi has good tutorials for this http://oracle.anilpassi.com/oracle-workflow-training-lesson-1-2.html
    See white paper at http://www.vivekasolutions.com/user_docs/WFCustomizationWP.pdf
    >
    Because this is the only change that am expected to do in this critical PO workflow. I dont want something else to be affected because of this.
    >
    As long as you stick to PO approval workflow, you won't affect other areas. If you modify the template (provided you find it), you may affect other areas.
    Sandeep Gandhi

  • Edit Workflow Mailer - Purchase Order Email Subject

    Hi,
    We have configured the workflow mailer to enable reminders to be sent out to approvers which relate to Purchase Order approvals that have not been responded to.
    However, as well as a reminder email being sent, there is also an email telling the approver that the previous email has been canceled. This has a the email subject prefixed with "Canceled:"
    Our problem is that users are seeing this and thinking that the Purchase Order has been cancelled. We therefore want to either edit the subject of this email, or stop it being sent.
    Any help/advice would be appreciated.
    Thanks,
    John

    JOhn
    I think this mail is sent by the workflow mailer using the item type System Mailer. This is auto generated notification when the notification itself is canceled or retired. You can customize the subject there based on the source.
    Thanks
    Nagamohan

  • Customizing Email Subject Line

    Can the email subject line be customized when sending my form? If so how do you change it?

    Hi,
    FormsCentral doesn't send emails for distributing the form. You, as the form author, are responsible for distributing the form.
    Regards,
    Brian

  • PDF forms - Change email subject to field content

    Hi,
    I created a fillable form with a sumbition via email button. When submitting, I need to replace the default email subject "Form Returned: fileName" with the content of a particular field.
    I have no idea where to start. Can you help? THanks, Jp

    wow! that was quick!I'll give it a try,  thank you! 

Maybe you are looking for