TEXT Mail line break issue in Email body

Email content is breaking up when the preference is MAILTEXT.
Please see the comments Line Break.
Ex:
Dear --Line Break
PETER,
Thank you for contacting XXXXX. The service request number 547631 has been created for the following issue:
Testing Notification
A technical support representative is working to resolve your issue.
Because we recognize that many of our customers would prefer to find answers conveniently on our website, we'd like to invite you now and for future needs to search our Knowledge Base online at:
If --Line Break
you have any questions or concerns, please contact us at XXXX or XXXX and have your service request number available for the technical support representative.
Thanks --Line Break
again, and we appreciate your continued business.
We are on 11.5.9 and WF version is 2.6.0

If you have not got a resolution for this issue still, this was a bug in Workflow code and fixed in OWF.H I believe. Please search for Oracle Workflow one-off patches if an one-off was released for 11.5.9.
Thanks

Similar Messages

  • Line break up during email writing

    How can I do line break up during email writing.I couldn't find any enter option.with touch I can do only once.but I need two or three line space.

    There is no word processing type formatting in the mail app. The only formatting in the mail app is for bold, italics and underlined text.
    if you want additional spaces between lines, you just have to keep tapping the return key.

  • Gmail Exchange - line break issues

    When using Exchange for push Gmail on my iPhone 4, I've noticed that any emails I sent have odd line breaks inserted into them. As I'm using the iPhone for work, any emails I send are rendered almost unintelligible. This is particularly bad as I am a professional writer. When using POP to access Gmail the text appears absolutely fine.
    How can I ensure that my emails stay in their original format and don't have line breaks inserted where I don't want them? If this is possible with POP, surely it should be possible with Exchange. Any ideas?
    Device: iPhone 4
    Carrier: O2
    Country / Language: UK
    OS / Browser / build number (if applicable): iOS 4.2

    gax23 wrote:
    When using Exchange for push Gmail on my iPhone 4, I've noticed that any emails I sent have odd line breaks inserted into them. As I'm using the iPhone for work, any emails I send are rendered almost unintelligible. This is particularly bad as I am a professional writer. When using POP to access Gmail the text appears absolutely fine.
    How can I ensure that my emails stay in their original format and don't have line breaks inserted where I don't want them? If this is possible with POP, surely it should be possible with Exchange. Any ideas?
    Device: iPhone 4
    Carrier: O2
    Country / Language: UK
    OS / Browser / build number (if applicable): iOS 4.2
    The problem arises because the iPhone uses "Plain Text" to send emails.
    When using gmail, gmail automatically inserts breaks in "Plain Text" emails every 78 characters, the reason why you see the breaks when unexpected.
    See: http://www.google.com/support/forum/p/gmail/thread?tid=4d1cecc1aab102ef&hl=en
    To fix this problem:
    1. Apple can allow us to send mail with Rich Text support from iOS devices OR
    2. Google has to change the line breaks setting so that Plain text flows (and isn't broken) <-- this option is probably more realistic
    I have tried from a hotmail account, sending email as plain text doesn't have line breaks imposed like the gmail account, but rather "flows".
    If you want gmail to add a setting to disable line breaks in plain text emails:
    +Suggest the feature here:+
    +http://mail.google.com/support/bin/static.py?page=suggestions.cs+
    +I chose these categories:+
    +- I have another idea+
    +- - Sending and receiving+
    +- - - Composing and delivery+
    +- - - - Sending options+
    +Configure or disable plain text wrap length.+

  • Email Integration Scenario - Issue with email body content

    Hi All,
    We have an Email to File Scenario. PI is connected to Outlook server using Sender Mail Channel using POP3. We are able to fetch and display emails correctly for most of the received emails.
    However we notice that for Email sent from few Mail server like Yahoo mail, Gmail, Hotmail, we are not getting the Email content correctly.
    Issue is happening with Emails sent in HTML/Rich text format (containing Formatting and without any attachments). In the receiver system we see the email is converted to Plain text format. If the same email is sent with some attachment / Embedded Image, we get all the Formatting correctly in Receiver System.
    A closer look at Pimon we found the following:
    1. When Email is sent with Formatting (without any attachment/ image) in Pimon we see that it creates 2 Payloads (screenshot attached)
    2. The First Payload - MainDocument contains the Email content in XML format, but is missing the Email formatting data in it.
    3. The other Payload - ([email protected]) contains the actual Formatted Email Content.
    Not sure why the formatting data is missing from MainDocument. Instead its coming in other payload. Due to this we are not able to display correct data at receiver end as we parse the MainDocument as our Input Payload Stream
    Note: We cannot use payload swap bean, as it will swap the data for all the incoming emails which we don't want.
    Anyone faced similar issue? Steps to get proper formatting data in MainDocument..
    Suggestions / Inputs will be highly appreciated.
    Thanks,
    Azhar

    Azhar,
    We cann't influence the behavior of Gmail, Hotmail. But have to get HTML as main payload, so we have to swap payload (not always, in some cases based on a condition). Please try below Java mapping. In Operational Mapping set "Read Attachments".
    package javaapplication1;
    import java.io.*;
    import com.sap.aii.mapping.api.*;
    import java.util.Collection;
    public class NewClass6 extends AbstractTransformation {
        @Override
        public void transform(TransformationInput transformationInput, TransformationOutput transformationOutput) throws StreamTransformationException {
            try {
                InputStream inputstream = transformationInput.getInputPayload().getInputStream();
                OutputStream outputstream = transformationOutput.getOutputPayload().getOutputStream();
                byte[] b = new byte[inputstream.available()];
                inputstream.read(b);
                //Loop over attachments and if attachment name starts with 'payload-' swap it with main payload. Edit below logic as needed.
                Collection<String> listAtt = transformationInput.getInputAttachments().getAllContentIds(true);
                for (String att : listAtt) {
                    if (att.startsWith("payload-")) {
                        b = transformationInput.getInputAttachments().getAttachment(att).getContent();
                outputstream.write(b);
            } catch (Exception exception) {
                getTrace().addDebugMessage(exception.getMessage());
                throw new StreamTransformationException(exception.toString());

  • Issue with email body size exceeding 4000 characters in Apex

    Hi
    We are getting "ORA-01403: no data found" error in our apex application whenever the the email body size exceeds 4000 characters. When the content of the email body are edited to reduce the size, it is working fine.
    In our application, the item details will be emailed as part of email body and when the number of items are more, the size of the email body exceeds 4000 characters and when we try to send email of these details we are getting "ORA-01403: no data found" error.
    Need your help to know if there is any way in apex to handle this issue and to send email with size exceeding 4000 characters from apex application.
    Please advice.
    Regards,
    Sri

    >
    Update your forum profile with a real handle instead of "user13394362".
    ALWAYS include the following information with the initial question:
    <li>APEX version
    <li>DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s)/versions(s) used
    <li>Theme
    <li>Templates
    <li>Region type
    I am using APEX_MAIL.SEND procedure from apex application to send the mail. The argument P_BODY_HTML which holds the email body content is of VARCHAR2 datatype and it has a limit of 4000 characters. So I am looking for a way to send the mail through APEX_MAIL.SEND even if the email body size exceeds 4000 characters.As (somewhat telegraphically) pointed out above, <tt>apex_mail.send</tt> is overloaded to accept either <tt>VARCHAR2</tt> or <tt>CLOB</tt> <tt>p_body_html</tt> parameters. Use a <tt>CLOB</tt> <tt>p_body_html</tt> parameter.
    Please consult the documentation before posting questions here.

  • How to protect a text from line break in smartforms

    Hi Gurus,
    How to protect line break in a text element of smartforms. Text in that line is printing exactly 70 characters. I want the text to be printed fully till the size of the window.  How to stop this automatic line break.
    Regards,
    Rithika.

    What I have done may be helpful, so here are the details:
    I had a table of text values, so I converted this to a string with concatenate, then string to a long character field, then used RKD_WORD_WRAP to put into table of 132 characters.  Then I constructed a table of type tline by looping at my RKD_WORD_WRAP output,  and utilized SAVE_TEXT to temporarily store a TEXT entry, like you would save with SO10, saving my desired paragraph format into TDFORMAT field and inserting any necessary character format commands into the text. 
    In my SmartForm, I then have dynamic text processing pointing to the internal table fieldnames containing tdname, tdid, tdobject, tdspras of what I saved.  This allows SmartForms to utilize the full width of the window and optimize text output, based on window width, font, scale, paragraph format, character format, etc.  These text identifier values are passed as part of my internal table via the SmartForms interface.
    At the end of SmartForms processing, I loop at my internal table and utilize DELETE_TEXT to remove the temporary texts that I created for this set of output.
    To avoid page breaks in my text, I put my output for a "block" of data into a folder (see the SmartForms folder feature).  I have page protection on the folder...that way, SmartForms examines the length of the folder content and decides whether a page break should occur before any output for my block of data begins.  My block of data contains a few data elements over 5 rows of output followed by two separate dynamic texts of various lengths.  If the entire block won't fit on the remaining part of a page, page-break occurs first.

  • Line break issue with Arabic text in TLF

    Hi All,
    We have meet a odd problem that arabic text will break to muliply lines,
    They are same sentence I paste into the TLF demo. the second one is break into muliply lines, the symbol(I have no idea what is it calls sheddeh?) is break line. I used different font, first one is "GE modern" and second one is "Sharjah"
    if there is any conerned about this issues.

    "منظّم حواجب بينالتيميت"
    I pasted into the TLF Demo. ظّ
    This symbol is break line. And only the font "Sharjah" has this issues.

  • Mail line breaking in lotus-Quick help is needed

    Hi Gurus,
    I have a very peculiar issue with external mail send from SAP to Lotus Notes.
    Issue: When a PO is created in SAP a automatic mail will be sent to vendor to his
    Lotus Notes from SAP. Here we are a using a subroutine where the FM
    'SO_NEW_DOCUMENT_SEND_API1' and the content of  the mail is stored in text symbols
    and  then populated to a internal table which will be passed to the above said FM.
    So this is very simple case.
    My problem is now, even though it looks fine in the SOST, when mail is seen in lotus,
    lines of  the mail contents are breaking around 79th or 80th character, eventhough it is more  than
    that while appending to the internal table. I don't understand this at all, why it  is happening?
    Ex: in SOST if we see a line looks like this.
    aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbnnnnnnnnnn
    but in lotus it breaks and looks like  below:
    aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbb
    bbbbbbbbbbbnnnnnnnnnn
    Any light can be thrown on this!!!
    Reward is guaranteed for helpful answers!!!!
    -B S B

    Hi BSB,
    I see this issue as a more of a lotus than SAP. Because I have used lotus notes and we have more than 120 characters sent per line.
    Is there a setting in your lots notes editor ( margins etc) that push it to the second line.
    Thanks
    Ganesh.S

  • Adobe Pro 9 Extended, Word 07, Windows XP text and line conversion issues (already checked for correct monitor settings)

    I am coverint a 35 page catalog from word 07 ..... it is built with tables listing prodcts, descriptions and prices.   Some text is faded out, some table lines end up thicker, some don't appear at all.   It will primarily be a web doc but I also tried optimizing for print and issues were still there.   Checked all discussions could not locate similar content.  Thanks for your help!!!!!

    For the replace and delete pages, I can only guess that you are messing up some of the bookmarks or links in the page from what I think you have based on the description. I would work on copies between each stage so that you can at least go back to the last success stage. If possible, you are better to go back and do the modifications in the original page and the recreate the PDF. If that is not possible, then maybe a better explanation of how you are creating the PDF would help folks understand your process fully and suggest a solution.
    On the latter, I would do a repair on Acrobat. However, it may be in the process you are using in the conversion from WORD. How are you creating the PDF from WORD? Have you updated AA9 and not simply have 9.0? The confusing point is that you talk about Distiller for getting the PDF from WORD. Distiller is often involved, but only behind the scenes and normally you either print to the Adobe PDF printer, use PDF Maker, or use the MS plugin for PDF creation. So when stating Distiller, it is unclear what process you are using since none of the methods I mention state the use of Distiller even if it is used in the background.

  • Splitting up text at line breaks into separate text objects

    creating a map with many text objects each containing one village name etc. or sth similar it would be nice if we could
    - type all names with enter/linebreaks
    - and then choose something like 'create separate text objects for each text line'
    I know I could convert the start text into outlines and then individually placing/moving them, but I still want to be able to edit all texts in one go (e.g. changing font size, colour, etc.)

    Beate,
    Since you mentioned a map, you can also do it this way:
    1. Count the paragraphs in your text.
    2. Select the text object containing the lines of text. Copy or Cut it to the Clipboard.
    3. LineTool: Draw a horizontal line.
    4. AltShiftDrag a copy of the line downward. Transform Again (Ctrl D) until you have as many lines as you had paragraphs.
    5. Text tool: Hover over the topmost line. Click when you see the Type On A Path cursor. Paste.
    6. Drag a selection marquee across all the lines. Type>ThreadedText>Create.
    7. Type>ThreadedText>RemoveThreading.
    Now you have a bunch of indiviudal text objects, but they are already Type On A Path objects; so you can drag them into position on your map, and then directselect their paths to edit their shapes (assuming you want pathType objects to bend along roads, etc.)
    JET

  • Urgent !!! Line breaks using Oracle email option

    Dear All,
    I need an urgent help. My query is some what confusing so please do let me know if you need any clarification.
    What I want to do is that I am using the Oracle email option. when I perform a backup the server sends an email to all the concerned authorities. It is fine till this stage. Infact that message that I am sending in the email is a TWO row query in the database. To display this message on SQL prompt is ok as it will appear in TWO lines. But in the email these two rows appear to have concated.
    What i want to achieve is that each row should appear in separate line in the email as well. just like using the HTML tag <BR>, the next line is displayed in the next line. Is there any SQL command which I can use to solve my problem.
    I would appreciate an urgent response as I am already short of time.
    With best regards.
    Khurram.

    I used to declare a varchar variable for end of line like this:
    EOL VARCHAR2(10) := CHR(13) || CHR(10);
    Then I have concatenated this variable any time when I needed like this.
    'First line'||EOL||'Second line'
    Take care, email RFC specifies that a new line is composed from a carriage return a new line "\r\n", so you must use both CHR(13) and CHR(10), Oracle equivalent for \r and \n.
    Andrei

  • Adding line breaks in email messages created by forms

    I've used ADDT to create a feedback form, pulling through data from a databse.
    It generates the code :
    //WriteContent method
    $emailObj->setContent("First name : {firstname}Last name : {lastname}Tel : {tel}Email : {email}Comments : {comments}Preferred method of contact : {prefer}");
    How can I add line breaks in the email message? I've tried
    tags, but no joy.
    Cheers.

    I presume you said slash n there - that was it. Cheers.

  • Line Break for the column

    Hi,
    I have a BIP Report.
    The report includes the layout of a free text column. This text goes towards the right side for sufficient length.
    I want to wrap the text or line break this text.
    In the rtf template, I am using the following formula:
    <?html2fo: OUTPUT_NOTES?>
    Any Ideas?

    Dear,
    Add the UDF's on the marketing document you want the tax break up.
    Apply FMS using below queries and call these UDF's on your PLD.
    FOR BED
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount =$[$38.21.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='9' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    For Cess
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount = $[$38.U_BED.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='8' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    For HCess
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount = $[$38.U_BED.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='10' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    This will help you.
    regards,
    Neetu

  • Line break in UWL

    Hi All,
    I have a workflow which gives a workitem in the UWL. I display few variables in the workitem in UWL. All the values in the variables are fine. But the problem is all the variables are coming as continuous text without line breaks. I have given HTML line-break code at the end of each line in my activity step. Line-breakk code  is working fine for the user-decision step in one of my other workflows but it is not working in this activity step.
    Where could be the problem? Please help.
    Regards,
    Sunny
    Edited by: Sunny4301 on Oct 9, 2009 4:58 AM
    Edited by: Sunny4301 on Oct 9, 2009 5:00 AM

    Hi Sunny,
    What is the application you are using to Display the workitem in UWL. Is it linked to Webdynpro, if so maintain the design as Matrix Flow Layout.
    Regards
    Narin

  • Acrobat v9 JavaScript Alert Box - any way to add space or line break after each array item?

    I have a Document level Javascript used to identify blank required fields and is triggered on document actions, Print and Save. The script identifies the blank required fields, counts them, and outputs to an Alert box indicating the number of required fields blank and lists the fields by tooltip name. The script identifies the required fields by an asterisk at the end of each tool tip.
    My question is there any way to add a space or a line break after the comma for each listed item?
    Here is an image of the output where the listed items are all run together.
    Here is the code:
    function validateFields()
    //a counter for the number of empty fields
    var flg = 0
    // count all the form fields
    var n = this.numFields
    //create an array to contain the names of required fields
    //if they are determined to be empty
    var fArr = new Array();
    //loop through all fields and check for those that are required
    // all fields that have a '*' in their tool tip are required
    for(var i = 0;i<n;i++){
    var fn = this.getNthFieldName(i);
    var f = this.getField(fn);
    //tool tip is the fields\'s 'userName' property;
    var tt = f.userName
    //test for the '*';
    if(tt.indexOf('*')!=-1 && f.value == f.defaultValue){
    //increment the counter of empty fields;
    flg++;
    //add the fields userName (tool tip) to the list of empty field names;
    fArr[fArr.length] = tt;
    //now display a message if there are empty fields
    if(flg>0){
    app.alert('There are '+flg+' fields that require a value\n\n'+ fArr,3)
    else{
    this.print();

    Thank you! The alert box array items now have a line break, image below.  You know you have made my day and possibly several weeks as now I have more understanding about how to apply everything I have been reading in the Acrobat JavaScript guide and of course as soon as you pointed out using a "join", that triggered some old-days of working with Access and SQL queries.
    I will work on the required attribute to see how I might reference it.  I am laughing at myself now - good luck to me in figuring it out as I was very stick-in-the-mud regarding the line break issue.
    Thanks again and here is the result of the updated code:

Maybe you are looking for

  • Converting sales order into a XML file

    Hai....friends.... I am tring to send an sales order as iDOC to a xml port in the same application server.... 1. have created a xml port with path..\usr\sap\RRM\SYS\global\. 2. assigned it to logical system. 3.Have a RFC destination of TCP/ip(LOCAL_E

  • TCode to Find Sales Orders - based on Sales Organization & Material inputs

    Hi Experts I need to pull out all the sales orders raised with different sales organizations on different materials. Is there any T-Code to pull out the data at one go u2013 instead of giving each material and each organization value one by one? Exam

  • IDoc Configuration for Production Order Creation and Change

    Hi All, Please Help me out for IDoc Configuration for Production Order Creation and Change I have found the IDoc for Production Order Messgae Type : LOIPRO and IDoc type : LOIPRO01 Actually my requirment is to send the (LOIPRO01 )IDoc from SAP R/3 to

  • I want to use the method getRemotePort() in a jsp page.....................

    I have tried using it like this: <%@ page import="java.net.*"%> <%@ page import="java.util.*"%> <%@ page import = "javax.servlet.*"%> <% out.println("<br>Remote Port : " + request.getRemotePort()); %> I get the following error: org.apache.jasper.Jasp

  • HT203311 Bonjour service disabled.

    I want to use home sharing again but one computer says Bonjour service has been disabled so I can't share.  How do I re-enable Bonjour?