Carriage returns in Textarea field in the mail of the APEX

Hi all
I have a form that users fill out and when he clicks on submit uses APEX Mail to send the content to individuals in an HTML format. A field is a text box where the individual enters information like the example below:
First to Arrive:  Bob
Second to Arrive: Jane
Third to Arrive: Sandy
Last to Arrive: Fred
When the message is received, instead of on a single line, each entry follows another as:

First to arrive: Bob second to arrive: third arrived Jane: Sandy last to arrive: Fred

I posted to get the fields of the form to show carriage returns and that works very well. Now, trying to figure what to add in order to make sure that this line breaks are like html br tags broken handles. Any help and examples would be appreciated.

Thank you
Wally

Published by: wfsteadman on February 17, 2011 16:49

Use HTML elementpre in HTML mail to keep a space for formatting.

Tags: Database

Similar Questions

  • How to clear the field in the APEX...?

    Can any body tell me how to clear or reset the fields in the UI (APEX 4.0)...? for example, the page elements... When I click on the reset button, I want that all fields in my area to be cleared...

    Thank you

    -Best regards,.
    Beginner...

    Create a new process, select "Session State" as process category. Select "Empty the Cache for all items on the page (PageID PageID, PageID)" as the Type of process.

    The conditions for link it to your button.

    Best regards

    Gokhan Atil

    -------------------------------------------------------
    If you answer this question, please mark appropriate as correct/useful messages and the thread as closed. Thank you

  • How to enable and disable a field dependent on another field in the Apex.

    Hello

    I'm new to Apex. IM using Apex Version 4.2.

    I have a tab named CREDITS he has 10 fields. Among them is PROJECT NUMBER, AUTHORIZAION DATE (CALENDAR TYPE POPUP), and FUNDS FLAG CHECK.

    NUMBER of THE PROJECT , the fields are filled, including the FUNDS VERIFIER FLAG is based on the scenario.

    But the AUTHORIZAION DATE is a REQUIRED field must be filled in by the user

    The requirement is to make DATE AUTHORIZAION as MANDATORY when the FUND CHECK FLAG is * "VIRGIN" * or * 'Y' * ' "

    If the FUND CHECK FLAG is * "N" * then the DATE AUTHORIZAION to bring in OPTION.

    Any help will be greatly appreciated...


    Thank you
    Vishal

    You will not be able to get the answers here, post your question in the appropriate section after mark this thread as answered

    "Oracle Discussion forums" Oracle Database "Application Express

  • ORA 28817 PLSQL function returned an error. When the apex 4 2 instance access

    Hello

    I just upgraded from apex to apex 4.2 4.1. All is well except for this error I get when I try to access the parameter Instance on the App Admin (localhost/apex/apex_admin)
    ORA-28817: PL/SQL function has returned an error
    What could be the problem? How we solve this problem...

    I'm working on the 2012 Win server machine... apex 4.2 with earphone 2 deployed on Glassfish 3.1.2 apex.

    Best regards
    Fateh

    Hello Faye,

    We are already aware of this problem, even if it is not yet present on our Web page of problems known. The reason for this error is that the new facility replaces an instance to the scale encryption key. In the preferences of the instance which have been encrypted with the old value (the SMTP password and the password for the portfolio), the values are not valid after the upgrade and decryption causes this error. As a work around, you can use the apex_instance_admin package to replace the invalid passwords.

    The following code shows how the decryption throws ORA-28817:

    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual
           *
    ERROR at line 1:
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at "APEX_040200.WWV_FLOW_CRYPTO", line 89
    ORA-06512: at "APEX_040200.WWV_FLOW_INSTANCE_ADMIN", line 239
    

    You can fix this by entering new password:

    SYS@a411> exec apex_instance_admin.set_parameter('SMTP_PASSWORD','my smtp password');
    PL/SQL procedure successfully completed.
    
    SYS@a411> exec apex_instance_admin.set_parameter('WALLET_PWD','my wallet password');
    PL/SQL procedure successfully completed.
    
    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    APEX_INSTANCE_ADMIN.GET_PARAMETER('SMTP_PASSWORD')
    ----------------------------------------------------------------------------------------------
    my smtp password
    
    1 row selected.
    

    Kind regards
    Christian

  • How to replace an html < < br > > tag on the ground for a carriage return?

    Hi all

    I have a requirement to replace the < < br > > tag in the text field with a carriage return character.
    ".

    Currently, the data in the comments field looks like:

    "SECURITY 20100627-115541 SE RESTRAINT to HAND ENTERANCE" < < < br > > "advised 20100627-115605 agent: ALPHA: DF-10-011891;" ST VINCENTS HOSPITAL, ST. VINCENT, ST. VINCENTS HOSP., MERRION RD, MERRION, BOOTERSTOWN, DUBLIN; "" ACTIVATION OF the ALARM - FIRE /;' < < br > > ' 20100627 - 115609 PDA MOBILIZED AFTER AMENDMENT wine1 "< < br > > ' 20100627-


    The < < br > > break tag has been used to end HTML, and now I would like to replace it with a return to report BI Publisher character.

    Appreciate3 your help.

    Concerning
    B

    Published by: bees on July 21, 2010 04:36

    Check out the http://blogs.oracle.com/xmlpublisher/2007/01/02/ blog
    Download the zip file and search for the associated XSL file replacement BR

  • The code formatting Pl/Sql with carriage returns

    According to the Guide (User Guide for the PL/SQL and reference page 2-2)
    It must be valid to use carriage returns for formatting:
    "To view the structure, you can separate the lines using carriage returns and withdrawal lines help
    spaces or tabs. This formatting makes the first IF statement more readable. »

    But I get an error when I try it.

    It seems as if there is no problem using line break, but I only have access to Oracle running under Windows.
    I'm looking for confirmation (by experience or inside knowledge),
    that is the case for all platforms (or at least Windows, Solaris and Linux)


    Test scenario
    select banner from v$version;
    BANNER
    ------------------------------------------------------------
    Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    
    5 rows selected.
    
    
    declare
      nl   varchar2(2) := chr(10);
      stmt varchar2(1000);
    begin
      stmt := 'begin' || nl
           || '  dbms_output.put_line(''Hello'');' || nl
           || 'end;';
      execute immediate stmt;
    end;
    /
    Hello
    
    PL/SQL procedure successfully completed.
    
    
    declare
      nl   varchar2(2) := chr(13) || chr(10);
      stmt varchar2(1000);
    begin
      stmt := 'begin' || nl
           || '  dbms_output.put_line(''Hello'');' || nl
           || 'end;';
      execute immediate stmt;
    end;
    /
    declare
    *
    ERROR at line 1:
    ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    begin case declare exit for goto if loop mod null pragma
    raise return select update while with <en identifikator>
    <en identifikator, der er afgrµnset vha. dobbelte anf°rselstegn>
    <en tilknytningsvariabel> << close current delete fetch lock
    insert open rollback savepoint set sql execute commit forall
    merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 33:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    <en identifikator>
    <en identifikator, der
    ORA-06512: at line 8
    
    
    Same error when using CR only
    
    Same error on 9i
    BANNER
    ------------------------------------------------------
    Oracle9i Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    
    5 rows selected.

    When you have tested 9.2.0.8 (Unix), it runs without problem when you used only a PMQ?

    Yes, no problem:

    SQL> select * from v$version where rownum = 1
    
    BANNER
    ----------------------------------------------------------------
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    1 row selected.
    SQL> declare
     nl varchar2(1) := chr(10);
    begin
      execute immediate  'begin ' || nl  || '  dbms_output.put_line(''Hello'');' || nl || 'end;';
    end;
    /
    Hello
    PL/SQL procedure successfully completed.
    
    but
    
    SQL> declare
     nl varchar2(1) := chr(13);
    begin
      execute immediate 'begin ' || nl  || '  dbms_output.put_line(''Hello'');' || nl || 'end;';
    end;
    /
    Error at line 13
    ORA-06550: line 1, column 7:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with 
         <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge
        pipe
    The symbol "" was ignored.
    ORA-06550: line 1, column 40:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
        
    
  • Serial Port problems - carriage return and use as an executable file

    Hello

    I developed an application to send a few simple commands on the serial port and read the corresponding answers of a device that I am in communication with.  I have been using logical Port to watch the line TX of the serial port.

    By using the Visa configure Serial Port I set the stop character property allow true and used the hexadecimal value D trying to make the termination a carriage return characters.  When I sent the order, I'll send the cmd followed by Enter.  No matter if this property is set to true or the hexadecimal value is set to D for carriage return or line break is, the serial port would always send a line break.

    Then I got crafty and the string constant under normal display to hexadecimal display.  The ONLY way I could send a carriage return was manually putting 0x0D after ordering.  So my question is, why the Visa set up the Serial Port is not working correctly, and is there a better way to send a carriage return?

    My next issue is facing the construction of executable files.  I'm using LabVIEW 8.2 and wrote this program for another employee to use on his laptop computer.  I did install runtime Labview 8.2 and led to the executable that I generated.  I did-> the executable by clicking Tools build the executable.  The problem I noticed was that the executable would open and will work perfectly, but it would not send any data the serial port.  I then ran the executable on my laptop (which contains the full version of LabVIEW 8.2) and the serial port has worked well.  I guess my question is... Are there plug-ins that must be installed to use the serial port with the Labview runtime engine?  Or y at - it a step that I failed to do?

    Thank you

    Gary Still

    Not immerse in the first issue. The Knight will probably be galloping until shortly.

    For your second question, after building the executable, you must build the installer and includes support for the VISA. VISA is required for serial communication, and it does not accept American Express.

    It may be useful

    -AK2DM

  • Why does my re-installed Acrobat print codes hidden carriage returns?

    I worked happily with Adobe Acrobat for several years. Now, I had to buy a new computer and re - install Acrobat it is not working properly. Here are the facts: my old computer has Windows 7, my new computer has Windows 10. My version of Acrobat's Adobe Acrobat 9 Standard that I bought in 2010. It seems to be 32-bit, but I was not asked for a 64-bit version. The errors are:

    (1) when it creates the PDF the timeline saying wait for me because it is reading never goes away when the green line comes to the end.

    (2) when I opened the new pdf that I find some (not all) hidden codes that appear on my pdfs, for example carriage returns and codes related to the creation of boxes.

    (3) when I try again to create a pdf file, I get a different type of chronology which continues to repeat on the reading process.

    (4) I can not open then the new pdf until I have cancel the chronology of reading and if I then open the new PDF program locks up, producing an Acrobat screen with nothing visible on it, and I can't close the program.

    Okay, I think that there are several different things going on here.

    We would never call this last thing, a crash - this is when Acrobat disappears unexpectedly. We call cela a blockage, if Acrobat does not respond, or - if the answer but simply display a blank like that - something weird!

    But there are several different issues here. Let us look at the extra paragraph marks. Please print a page of the editor on your own printer. You see the same notes on paper?

  • 8.1 for Windows and Firefox 36.0.1 the text in the forms box has no carriage return. Earlier versions, as forms of work. Is there any solution for this?

    Before this version of Firefox 36.0.1, the < textarea > HTML worked in my forms. View Cart returns. In the version of 36.0.1 that they no longer work correctly. However, when I enter a carriage return, it displays a space instead of a line break. I went to test basic textarea
    < textarea > name = cols 'comments' = 20 rows = 10 < / textarea >
    to make sure that I was not introducing anything with other languages.
    I use Windows Pro 8.1. I drove back to 35.0 Firefox and everything works fine. I installed 36.0.1 and it stops working.
    I have access to another laptop also running the same version of windows and Firefox and it seems to be done as well strange things. I'm suspicious because I started to notice this immediately after a windows update last night. The laptop also known issues that he immediately after a windows update last night.
    I still have another computer running a different version of windows and Firefox and it works very well. It seems that the issue is where there are windows Pro 8.1 and Firefox 36.0.1.
    Guys do you have an idea what is happening here?
    Thank you
    JMRAUPE57

    The current version supports the white-space for a text box property and it is possible that the Web site uses spaces: pre instead of spaces: pre wrap.
    The former will prevent Firefox of text wrapping.

    You can check that out in the Inspector via the context menu.

    See:

    The white-space property is currently working on HTML < textarea > (bug 82711) elements.

    See also:

  • Lightroom Import carriage returns in the IPTC captions

    I use Lightroom 3.3 with Windows.  When I import pictures that have the IPTC caption field created in another program (ThumbsPlus or IrfanView), in the original carriage returns do not appear in Lightroom.  Anyone know why or what to do about it?  I would like to import a lot of photos with existing captions, and some have carriage returns, I would like to keep.

    Windows LR 3 has a bug of long date in the treatment of the line breaks in the metadata.  LR represents always returns to the line in the metadata with a single character (the Unix/Linux/Mac ' \n', Ctrl + J, ASCII decimal 10).  It will preserve the preexisting line breaks in the metadata (even if edit you it), and if you enter a line break in the metadata pane using Ctrl-J or Ctrl + Enter, this new line is going to get written correctly as a single character. However, LR does not correctly display the pre-existing line breaks - they get silently élidés.

    So if you enter a new line in the caption area of the metadata pane using Ctrl + Enter, this new line is displayed correctly.  If you then save the metadata to a file, the line break is properly registered as a single character.  But if you then reread the metadata in LR with reading metadata file, the line break appears more correctly (it will be kept).

    This is a bug of elementary programming caused by the differences between Mac (which uses a single character to represent returns on line) and Windows (which uses the two characters, Ctrl-Ctrl-M-J, although many modern Windows applications accepts a representation).

  • TextArea has double carriage returns

    I have an xml that looks like this

    < event >
    < event >
    Event < title > < /title >
    < description > This is the description of the event
    When I line breaks, like this
    the text box 2, everywhere
    I have only one.
    < / description >
    < / event >
    < / events >


    I even tried the tabs are, so that the extra characters only are CR LF, but I still see extra carriage returns in my textarea.

    Ayone know what is the cause?

    * The text box control uses UNIX style line endings, which means that text data containing Windows-style carriage return line feed (that is, \r\n) formatting for new lines contain extra line breaks. You can use the String.replace () with a regular expression to convert the text to type UNIX line purposes, as in the following example:

    windowsCRLF:RegExp = \r\n/gm private static const;

    ...

    myTextString = myTextString.replace (windowsCRLF, "\n");

    http://www.Adobe.com/support/documentation/en/Flex/2/releasenotes_flex2_sdk.html

  • Advanced search and replace. How to replace the space with carriage return?

    10.9.13.0/24, 10.9.4.2/32, 10.9.4.3/32

    in

    10.9.13.0/24
    10.9.4.2/32
    10.9.4.3/32

    Find replace them ',' with carriage return.

    I still find articles on an advanced search and replace, but I can't seem to locate it.

    OS X El Capitan 10.11.3

    3.6.1 the numbers

    HI Brendan,

    You don't need an advanced find and replace for it.

    In the search box, press, then space.

    In the box replace by, press option-return.

    Then click Find and replace and find until you are finished.

    Kind regards

    Barry

  • Error reading the port series when the hexadecimal value is 0d (carriage return)

    Hello

    I'm reading a string of 80 bytes from the serial port, but if one of these bytes is 0d (hexa) the rest of the bytes are not read because the read node Visa sees the value 0D as ASCII for the return shipping. How can I read the entire string and see the 0d as a value and not as a symbol of the ASCII?

    Manual

    Of course, she sees it as a carriage return and ends. That's what you have programmed to do. The "character of endpoint allows" set to false with your VISA to set up the Serial Port. What Steve has already said. Claire?

  • The vulnerability is the CC and the fields of e-mail when sending group messages?

    I have a friend who is a challenge to me when I advised her to use the BCC field instead of the CC field to send group messages.
    I've been in there for years and this was one of the fundamental pieces of advice that we would give users on our network to prevent the spread of the virus and spam and to be perfectly honest, I thought it was a given since e-mail is sent in plaintext and therefore can be analyzed.  The question I have, are vulnerable to what Email address when it is used in the CC field or virus and malware seeks to steal addresses?  Also to throw away spammers as well.

    Thank you, sugi2k.

    Hi sugi2k,

    With assistance from the ICC is also how to send group messages, but I do it mainly for individual members of the group do not get to see all addresses of electronic mail to any person to whom I sent the message.  As far as I know, there is no almost difference between using the field or the CC field to send emails (although IAB a little better to hide the address, but it can still be found if you are the recipient or the sender of this JIU).  In general, this isn't how the malware and hackers work.  That's all simply too cumbersome and time-consuming to do by checking the addresses in the individual emails (if it is possible and very difficult to defend against if they can intercept the mail-, but generally found from the account of the recipient and not the sending account and generally because that most people choose to automatically add new senders of e-mail to their list of contacts and this is where the vulnerability usually occurs).

    Here is an article on the differences between the BCC and CC: http://email.about.com/od/emailnetiquette/a/cc_and_bcc.htm.  You will notice that it addresses of anonymity than the main on safety (but there are benefits of security regarding anonymity and the inabiility of other recipients to view the BCC recipients).

    Most malware and piracy occurs because someone comes to your contact list or address book or see everything simply your email address somewhere (maybe of you sent to someone who has been infected or a real pirate) and uses different techniques to make it look like SPAM and other things they send is from you when you're not actually send anything.  If they arrived at your list of book or contact addresses or someone that you are listed as a contact (probably using another method - I don't think these fields themselves are more susceptible to malware or hacking than anything else on your computer - if they have installed the keystroker malicious software or programs (everything that you type can be made available to them, unless detect you and remove malware or hacking tool), they can send to each of them (probably with an attempt to infect their systems included as well).

    In short, while they are not invulnerable, they are as safe as anything else (although IAB will limit the number of people who see the addresses of any group that can help their share where you don't know if they have been compromised) on your system.  The real problem with the e-mails is not sending them, but to receive for having "a surprise" with her that compromise your system and allows a person access to your contacts or address book - but they will not often also for entries in the messages sent and if they do, then the entries to one of these fields on your computer If it has been compromised is possible (not only e-mails but documents and about anything).

    If you are concerned that these things, use a program to encrypt messages and require recipients to have a decryption code to open.  It can still be broken by a pirate, but is much more difficult and requires a much more sophisticated hacker.

    I hope this helps.

    Good luck!

  • Indicator automatic resizing of string with carriage returns in the chain

    I try to have a string on my front indicator automatically resize to put different strings that are sent to it.

    I found the function 'Get the Rect.vi text' and it seems to do exactly what I want, but only for the first line of my string.

    It is not resized to display characters after a carriage return / newline.

    Here is a picture of the chain resized automatically next to a picture of the complete string that I size manually.

                       

    How do I autosize my chain indicator box to include all of my text?

    The node to invoke "Text size" would work?

Maybe you are looking for

  • Firefox will not play flash player even if the latest version is installed

    I can't play videos (e.g. on the BBC website) - I continue to be invited to install Flash. I've uninstalled and reinstalled Flash several times but to no avail. The "always enable" is selected in the addons page. Also the old version of shockwave is

  • Application server will not be updated to 5.1.5 - Mac Pro

    We have 5 Mac servers on our domain, all updates to the elbow of the Cap 10.11.5 and 5.1.5 server other than a single server. The server that will not update is on 10.11.5 and server 5.1.  It also happens to be our server software update, just in cas

  • What is the Vista Home hp_ recovery disk

    My HP laptop with Vista Home, has a disk of 10 GB (e) called HP_Recovery, with 9.24 GB used space On the disc, he has a record of recovery, that when I hover over it tells me that it has been changed in September 2007. If I double click on it I thoug

  • SNMP does not work on Windows 7 64 bit

    SNMP does not not on windows 7 64 bit CCTV, I want to communicate between my PC and a CCTV recording server. In order to communicate between the registration of CCTV server, I need the snmp Protocol.  The CCTV recording server is running on Windows 7

  • How can I reinstall ' Mail/People' App?

    I've organized the apps and wanted to remove the messenger application. When I hit the uninstall, it also uninstall apps 'Mail' and 'People '. Where can I find these apps and reinstall again? Thank you