Special Character And Extra Spaces

Hi All,
This may be a simple problem to fix (i hope) but my searching
has found nothing.
When i publish documents from word to contribute i get extra
gibberish in the place of extra spaces and special characters like
dash(–).
extra space = Â
dash = –
Hopefully theres a setting i'm missing that will fix the
problem.
I am working with big documents that contain garphics so
exporting to txt format isn't an option.
Thanks in advance for the help.
Cheers
David

After further experimentation and a close fix i have found
the the pages look fine with a html extension but contain the
gibberish when they have a cfm extension.
Obviously when the files go through the coldfusion server
something happens.
Any help would be greatly appreciated.

Similar Messages

  • Find the Special character and non Ascii character

    Hi:
    i have table ,this table column name contain some datas like
    sno name
    1 CORPORATIVO ISO, S.A. DE C.V.
    2 (주)엠투소프트
    3 TIMELESS
    4 南京南瑞集团公司
    5 PHOTURIS
    6 Ace Informática S/C ltda
    7 Computacenter AG & Co. oHG
    8 아이티앤씨
    9 MOCA
    10 anbarasan
    my requirement:
    1)i need to search the name column where contain the special character and non ascii character..if found any non ascii or spcial character ..need to say flag ''yes".if not found need to say "no"...kindly help on this issus...

    i need some example..i am not have any idea....
    i have table ,this table column name contain some datas like
    sno name
    1 CORPORATIVO ISO, S.A. DE C.V.
    2 (주)엠투소프트
    3 TIMELESS
    4 南京南瑞集团公司
    5 PHOTURIS
    6 Ace Informática S/C ltda
    7 Computacenter AG & Co. oHG
    8 아이티앤씨
    9 MOCA
    10 anbarasan
    my requirement:
    1)i need to search the name column where contain the special character and non ascii character..if found any non ascii or spcial character ..need to say flag ''yes".if not found need to say "no"...kindly help on this issus...

  • Embedded Tabs And Extra Spaces Dropped In Text

    1. When I copy text with embedded tabs or xxtra spaces between words from a TXT file into the    TextBox of the Email using clipboard, the Email converts all tabs into single space and removes   all extra spaces between words into one single space between words messing up my formatting of   text in the message to be sent. Have to manually clean up the formatting to match the text in the   original TXT file when I use ComCast Email. This problem does not occur when I use  OutLook. ComCast Email should NOT remove embedded tabs or xxtra spaces between words.  This problem needs to be fixed in ComCast Email. 2. I can insert tab characters in the Email TextBox of OutLook. I cannot do it in ComCast Email.   When a cursor is in the TextBox of the Email, it should allow one to insert tabs in the TextBox.   Instead, it treats tab keys to jump out of the TextBox and go to the next object in the EMail form.   When a cursor is NOT in the TextBox, then tab keys can be used to jump to the next Object in the   EMail form. Outlook works this way. Please respond on this issue ASAP. Thnak U very much. God bless. Mike. 

    hi
    thank you for ur answer,
    i removed the extra line space, but still i have a problem on this report, when it is opening in the text format thier is a junk character appearing instead of the page break, it is a small box with character symbol of "FF" , i donot know from where this character comming, how to remove it?
    is there another way of opening the text result directly from the "view output" option other than opining it in the browser and then save as text?
    Mahdi Charara

  • Special character and htp.p()

    I am trying to use PL/SQL procedure to present my customized item.
    If user type in secial character, e.g. single quote ', in the attribute, I got this error on the page:
    Error 30584: DBMS_SQL has raised an unhandled exception. ORA-06550: line 1, column 327: PLS-00103: Encountered the symbol "03" when expecting one of the following: . ( ) , * @ % & = - + < / > at in is mod not rem <> or != or ~= >= <= <> and or like between ||
    Is there a procedure I can call to encode the special character?
    thanks

    Hi - thanks very much the reply. I will bear your suggestions in mind in future as they are very useful.
    I got around the problem I was having by doing the following:
    The line of JavaScript I wanted to output to the page was:
    document.write('&lt;img src=" '+ns_l+' " width="1" height="1" alt="*" /&gt;');}
    And I achieved this by using the following PL/SQL:
    htp.p('document.write('||'''&lt;img src="'''||'+ns_l+'||'''" width="1" height="1" alt="*" /&gt;'''||');}');

  • Problem with PHP not working and Extra space in form I can't get rid of

    This is my first time doing a form, much less using php. I would appreciate your help on the problems below.
    1. in the form when you go to the website there is too much vertical spacing between the form fields.
    2.the Message field has script inside that vistors can see.
    3. on hitting the submit button it redirects me to a blank page and not the thankyou.html page that I had created.
    4. the form doesn't send the email to [email protected]
    Website URL: http://stickmancustoms.com/contact.html
    <!-- FORM CODE STARTS HERE -->
    <?php session_start(); ?>
    <?php
    if (array_key_exists('submit', $_POST)) {
        // check name field
    $name = trim($_POST['name']);
    if (empty($name)) {
        $error['name'] = 'Please provide your first name';
    elseif ($name == 'Please provide your first name') {
        $error['name'] = '';
    $_SESSION['name'] = $_POST['name'];
    // check phone field
    $phone = trim($_POST['phone']);
    if (empty($phone)) {
        $error['phone'] = 'Please provide your last name';
    elseif ($phone == 'Please provide your last name') {
        $error['phone'] = '';
    $_SESSION['phone'] = $_POST['phone'];
    // check email field
    $email = trim($_POST['email']);
    if (empty($email)) {
        $error['email'] = 'Please enter your email address';
    elseif ($email == 'Please enter your email address') {
        $error['email'] = '';
    $_SESSION['email'] = $_POST['email'];
    // check enquiry field
    $message = trim($_POST['message']);
    if (empty($message)) {
        $error['message'] = 'Please enter your message details';
    elseif ($message == 'Please enter your message details') {
        $error['message'] = '';
    $_SESSION['message'] = $_POST['message'];
    if (!empty($_POST['ufo'])) { return false; }
    // recipient
    $to = "[email protected]"; //email address -- change to your own email address
    // email subject
    $subject = "I am interested in your services, please contact me";
    // sender
    $sender = "From: ".$_POST['email']."\r\n";
    // build message
    $enquiry = "First Name: $name\n\n";
    $enquiry .= "Last Name: $phone\n\n";
    $enquiry .= "Email Address: $email\n\n";
    $enquiry .= "Message: $message\n\n";
    // send email if no form erorrs
    if (!isset($error)) {
    mail($to, $subject, $enquiry, $sender);
    header("Location: thankyou.html");        //Redirect page -- change to your own page
    ?>
    CONTACT WEB PAGE CODE BELOW
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="auto repair, accident damage, custom paint, customization, car repair, paint job, hot rod, motorcycle, cycle, bike, chopper"
    content="At StickMan Customs we give personal service with a smile. With more than 20 years experience in auto repair and customization you can be confident that we will meet your expectations and beyond. " />
    <meta name="google-site-verification" content="-41pB0MQUYT1Vbv1SId8WcU2lqEmFf0u23Sl3NY24CE" />
    <title>Stickman Customs</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="smc.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a:visited {
        color: #F4781E;
    -->
    </style>
    </head>
    <body bgcolor="#000000">
    <table width="936" height="200" border="0" align="center">
      <tr>
        <td height="196" valign="top"><p class="style1"><a href="index.html" target="_self"><a href="index.html" target="_self"><img src="images/smcbanner.jpg" width="936" height="194" border="0" usemap="#Map" /></a>
            <map name="Map" id="Map">
              <area shape="rect" coords="97,7,289,190" href="index.html" target="_self" />
              <area shape="rect" coords="290,156,380,189" href="about.html" target="_self" />
              <area shape="rect" coords="396,159,550,190" href="repair.html" target="_self" />
              <area shape="rect" coords="561,159,619,190" href="cars.html" target="_self" />
              <area shape="rect" coords="627,159,703,188" href="cycles.html" target="_self" />
              <area shape="rect" coords="711,160,885,190" href="projects.html" target="_self" />
              <area shape="rect" coords="734,23,917,78" href="contact.html" target="_self" />
              <area shape="rect" coords="786,175,787,176" href="#" />
            </map>
          </p>
          <table width="936" border="0" align="center" cellpadding="5" cellspacing="5">
            <tr>
              <td width="512" height="450" valign="top"><p class="Headers"><img src="images/car1.jpg" width="432" height="432" /></p></td>
              <td width="389" height="450" valign="top"><form id="enquiryForm" name="enquiryForm" method="post" action="contact.php">
                  <h1><span class="BodyBold">Contact Us </span></h1>
                  <h1> <span class="BodyCopy">*Required Information </span></h1>
                  <h1><span class="BodyBold">
                    <label for="Name">Name* </label>
                    </span>
                    <input type="text" name="name" id="name" <?php if(isset($error['first_name'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($name)) {echo $name;} ?><?php if(isset($error['first_name'])) echo $error['name']; ?>" onfocus="this.value=''" />
                  </h1>
                  <p>
                    <label for="Name" class="BodyBold">Phone* </label>
                    <input type="text" name="phone" id="phone" <?php if(isset($error['phone'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($phone)) {echo $phone;} ?><?php if(isset($error['phone'])) echo $error['phone']; ?>" onfocus="this.value=''" />
                  <p>
                    <label for="email" class="BodyBold">Email* </label>
                    <input type="text" name="email" id="email" <?php if(isset($error['email'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($email)) {echo $email;} ?><?php if(isset($error['email'])) echo $error['email']; ?>" onfocus="this.value=''" />
                  <p style="padding-bottom: 0;">
                    <label for="enquiry" class="BodyBold">Message*</label>
                    <br />
                    <textarea name="message" id="message" <?php if(isset($error['message'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> onfocus="this.value=''"><?php if(isset($message)) {echo $message;} ?><?php if(isset($error['message'])) echo $error['message']; ?>
              </textarea>
                  </p>
                  <p>
                    <input type="text" name="ufo" style="display: none;" />
                    <input type="submit" id="submitButton" name="submit" value="Submit" />
                  </p>
    </form></td>
            </tr>
          </table></td>
      </tr>
    </table>
    <table width="936" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><div align="center">
            <div align="center" class="bottomlinks">
              <p><a href="about.html" target="_self"><br />
                ABOUT US <img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="repair.html" target="_self">ACCIDENT REPAIR</a><a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="cars.html" target="_self">CARS</a><a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="cycles.html" target="_self">CYCLES</a><a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="projects.html" target="_self">SPECIAL PROJECTS</a></p>
              <p class="Address_Text">StickMan Customs<br />
                800 Mooresville Rd, Kannapolis, NC 28081<br />
                704.699.5110 </p>
            </div>
            <p class="style74"><span class="atb_text">Designed &amp; Hosted by</span><br />
              <a href="http://www.abovethebarrdesign.com" target="_self"><img src="images/atbd.jpg" alt="1" width="155" height="77" border="0" /></a><br />
            </p>
          </div></td>
      </tr>
    </table>
    </body>
    </html>
    <!-- text below generated by server. PLEASE REMOVE -->
    <!-- Counter/Statistics data collection code -->
    <script language="JavaScript" src="http://us.js2.yimg.com/us.js.yimg.com/lib/smb/js/hosting/cp/js_source/whv2_001.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">geovisit();</script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <noscript>
    <img src="http://visit.webhosting.yahoo.com/visit.gif?us1262644054" alt="setstats" border="0" width="1" height="1" />
    </noscript>
    </html>

    The below should work for you.
    As Jon points out the page has to be a .php page NOT a .html page.
    The idea is that the page gets sent back to itself and the form information is processed then sent to the email address if there are no errors detected.
    The unusual gaps in the form were being caused by unclosed tags amongst other things - hopefuly I put some of it right for you.
    Copy all of the below and save it as contact.php - Obviously your server needs to support php for it to work, most do. I have not specified your email address in the php as it attracts spam from the forum so re-instate it where the xxxxxxx are.
    <?php
    if (array_key_exists('submit', $_POST)) {
    // check name field
    $name = trim($_POST['name']);
    if (empty($name)) {
    $error['name'] = 'Please provide your name';
    elseif ($name == 'Please provide your name') {
    $error['name'] = '';
    // check phone field
    $phone = trim($_POST['phone']);
    if (empty($phone)) {
    $error['phone'] = 'Please provide your phone number';
    elseif ($phone == 'Please provide your phone number') {
    $error['phone'] = '';
    // check email field
    $email = trim($_POST['email']);
    if (empty($email)) {
    $error['email'] = 'Please enter your email address';
    elseif ($email == 'Please enter your email address') {
    $error['email'] = '';
    // check enquiry field
    $message = trim($_POST['message']);
    if (empty($message)) {
    $error['message'] = 'Please enter your message details';
    elseif ($message == 'Please enter your message details') {
    $error['message'] = '';
    if (!empty($_POST['ufo'])) { return false; }
    // recipient
    $to = "xxxxxx@xxxxxxxxxxxxxx"; //email address -- change to your own email address
    // email subject
    $subject = "I am interested in your services, please contact me";
    // sender
    $sender = "From: ".$_POST['email']."\r\n";
    // build message
    $enquiry = "Name: $name\n\n";
    $enquiry .= "Phone Number: $phone\n\n";
    $enquiry .= "Email Address: $email\n\n";
    $enquiry .= "Message: $message\n\n";
    // send email if no form erorrs
    if (!isset($error)) {
    mail($to, $subject, $enquiry, $sender);
    header("Location: thankyou.html");  //Redirect page -- change to your own page
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="auto repair, accident damage, custom paint, customization, car repair, paint job, hot rod, motorcycle, cycle, bike, chopper"
    content="At StickMan Customs we give personal service with a smile. With more than 20 years experience in auto repair and customization you can be confident that we will meet your expectations and beyond. " />
    <meta name="google-site-verification" content="-41pB0MQUYT1Vbv1SId8WcU2lqEmFf0u23Sl3NY24CE" />
    <title>Stickman Customs</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="http://stickmancustoms.com/smc.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a:visited {
        color: #F4781E;
    -->
    </style>
    </head>
    <body bgcolor="#000000">
    <table width="936" height="200" border="0" align="center">
      <tr>
        <td height="196" valign="top"><p class="style1"><a href="index.html" target="_self"><a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/smcbanner.jpg" width="936" height="194" border="0" usemap="#Map" /></a>
            <map name="Map" id="Map">
              <area shape="rect" coords="97,7,289,190" href="index.html" target="_self" />
              <area shape="rect" coords="290,156,380,189" href="about.html" target="_self" />
              <area shape="rect" coords="396,159,550,190" href="repair.html" target="_self" />
              <area shape="rect" coords="561,159,619,190" href="cars.html" target="_self" />
              <area shape="rect" coords="627,159,703,188" href="cycles.html" target="_self" />
              <area shape="rect" coords="711,160,885,190" href="projects.html" target="_self" />
              <area shape="rect" coords="734,23,917,78" href="contact.html" target="_self" />
              <area shape="rect" coords="786,175,787,176" href="#" />
            </map>
          </p>
          <table width="936" border="0" align="center" cellpadding="5" cellspacing="5">
            <tr>
              <td width="512" height="450" valign="top"><p class="Headers"><img src="http://stickmancustoms.com/images/car1.jpg" width="432" height="432" /></p></td>
              <td width="389" height="450" valign="top"><form id="enquiryForm" name="enquiryForm" method="post" action="contact.php">
                  <p><span class="BodyBold">Contact Us </span></p>
                  <p><span class="BodyCopy">*Required Information</span></p>
                  <p>
                    <label for="Name" class="BodyBold">Name* </label>
                    </span>
                    <input type="text" name="name" id="name" <?php if(isset($error['name'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($name)) {echo $name;} ?><?php if(isset($error['name'])) echo $error['name']; ?>" onfocus="this.value=''" />
                  </p>
                  <p>
                    <label for="Name" class="BodyBold">Phone* </label>
                    <input type="text" name="phone" id="phone" <?php if(isset($error['phone'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($phone)) {echo $phone;} ?><?php if(isset($error['phone'])) echo $error['phone']; ?>" onfocus="this.value=''" />
                  </p>
                  <p>
                    <label for="email" class="BodyBold">Email* </label>
                    <input type="text" name="email" id="email" <?php if(isset($error['email'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> value="<?php if(isset($email)) {echo $email;} ?><?php if(isset($error['email'])) echo $error['email']; ?>" onfocus="this.value=''" />
                    </p>
                  <p>
                    <label for="enquiry" class="BodyBold">Message*</label>
                    <textarea name="message" id="message" <?php if(isset($error['message'])) echo "style='border: 1px solid #C00; color: #C00;'"; ?> onfocus="this.value=''"><?php if(isset($message)) {echo $message;} ?><?php if(isset($error['message'])) echo $error['message']; ?>
              </textarea>
                  </p>
                  <p>
                    <input type="text" name="ufo" style="display: none;" />
                    <input type="submit" id="submitButton" name="submit" value="Submit" />
                  </p>
    </form></td>
            </tr>
          </table></td>
      </tr>
    </table>
    <table width="936" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><div align="center">
            <div align="center" class="bottomlinks">
              <p><a href="about.html" target="_self">
                ABOUT US <img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="repair.html" target="_self">ACCIDENT REPAIR</a><a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="cars.html" target="_self">CARS</a><a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="cycles.html" target="_self">CYCLES</a><a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a>| <a href="index.html" target="_self"><img src="http://stickmancustoms.com/images/space.jpg" alt="s" width="18" height="7" border="0" /></a><a href="projects.html" target="_self">SPECIAL PROJECTS</a></p>
              <p class="Address_Text">StickMan Customs<br />
                800 Mooresville Rd, Kannapolis, NC 28081<br />
                704.699.5110 </p>
            </div>
            <p class="style74"><span class="atb_text">Designed &amp; Hosted by</span><br />
              <a href="http://www.abovethebarrdesign.com" target="_self"><img src="http://stickmancustoms.com/images/atbd.jpg" alt="1" width="155" height="77" border="0" /></a><br />
            </p>
          </div></td>
      </tr>
    </table>
    </body>
    </html>
    <!-- text below generated by server. PLEASE REMOVE -->
    <!-- Counter/Statistics data collection code -->
    <script language="JavaScript" src="http://us.js2.yimg.com/us.js.yimg.com/lib/smb/js/hosting/cp/js_source/whv2_001.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">geovisit();</script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <noscript>
    <img src="http://visit.webhosting.yahoo.com/visit.gif?us1262644054" alt="setstats" border="0" width="1" height="1" />
    </noscript>
    </html>

  • Special character and symbol shortcuts

    I am constantly needing to use special characters, but I can't find an easy way to use them. There are three that I use specifically, Section, Pi, and Delta.
    How do I make shortcuts for these and why is it so difficult to find out? This is a common task in any other word processing program.

    pakalolo421,
    for any symbols that you can't do with an option + ... shortcut, you should use the system-wide character palette. I'm a teacher, and use the character palette to put checkmarks in my student's essays. But there's every conceivable symbol in there, and the best is that you can minimize it to a very small window containing your favorites, which you keep open next to (or above) any open Pages window.
    The character palette can be invoked from the Input menu, which you can put into your Apple menu bar from System Preferences -> International.
    Robert

  • Looping issue and extra space after inserting in DW page

    I found an answer to looping an Edge composition, works like a charm in publish preview, still won't loop live on the web. Also when I insert it, it leaves a gap at bottom even though the div is 250 px high and the composition is 250px high... see www.arkaytd.com/dev2, note the gap between the edge composition and the navigation bar. Did not see anything  in the code that would cause it...

    Should I insert it here in the page source code?:
    <object id="EdgeID" type="text/html" width="980" height="250" data-dw-widget="Edge" data="edgeanimate_assets/ArkayIntro/Assets/ArkayIntro.html">    </object>
    Or in the .css file for the page?
    .AnimationPanel {
      clear: both;
      min-height: 250px;
      width: auto;
      display: block;
    Here: is the URL for the animation:
    http://www.arkaytd.com/dev2/

  • Orchestration exception:Exception occurred when persisting state to the database because of special character ' ' in HL7 message.

    In some scenarios HL7 message is coming with special character ‘’ and HL7 dis-assembler escaping this character with “&#x10;&#x1;”. But while sending out (pass thru pipeline but orchestration trying to persist here at last sendshape.) from orchestration
    this message failing with the error “Exception occurred when persisting state to the database.”
    As per the analysis , Orchestration is unable to convert to xml document from a
    XLANGMessage because of this special character. We have tried to call custom .net class with following code and its failing here as well (I think orchestration also trying to do same way and failing with the message and failing with same error.).
    public void ProcessRequest(XLANGMessage reqMessage)
    XmlDocument xmlDocument = (XmlDocument)reqMessage[0].RetrieveAs(typeof(XmlDocument)); It is failing here with the error
    “ ', hexadecimal value 0x10, is an invalid character. Line 1, position 1865. “
    Note : Please find the special character in the attachment circled in red color. 

    Hi ,
    Please find the xml and the screenshot.
    <OBX_ObservationResult>
      <OBX_1_SetIdObx>3</OBX_1_SetIdObx>
      <OBX_2_ValueType>TX</OBX_2_ValueType>
      <OBX_3_ObservationIdentifier>
        <CE_0_Identifier>P.112</CE_0_Identifier>
        <CE_1_Text>Where pt. will be transported to \T\ where &#x10;&#x1;famly can wait:</CE_1_Text>
      </OBX_3_ObservationIdentifier>
      <OBX_4_ObservationSubId />
      <OBX_5_ObservationValue>Y</OBX_5_ObservationValue>
      <OBX_6_Units>
        <CE_0_Identifier />
      </OBX_6_Units>
      <OBX_7_ReferencesRange />
      <OBX_8_AbnormalFlags />
      <OBX_9_Probability />
      <OBX_10_NatureOfAbnormalTest />
      <OBX_11_ObservationResultStatus>N</OBX_11_ObservationResultStatus>
    </OBX_ObservationResult>

  • Need to prevent special character in generated XML file

    Hello,
    I am using E-business Suite 12.1.3 and XML version 5.6.3.
    My XML file is ending up with a special character (a Latin capital letter U with circumflex) at the end, after the final closing tag.
    Due to this the concurrent program that needs to output the XML is ending with warning.
    My XML file is produced using a PL/SQL procedure, as follows (I've simplified it):
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<?xml version="1.0" encoding="UTF-8" ?>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<DOCS>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<LETTER>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<EMP_NAME>Michaela Hart</EMP_NAME>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</LETTER>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</DOCS>');
    But when I run the concurrent request that creates the output then try to view the output in Internet Explorer I get the following error:
    Invalid at the top level of the document. Error processing resource 'http://servername.domain...
    </DOCS>
    If I view the source of the page in Internet Explorer it shows a square after </DOCS> indicating the special character that has been added.
    I checked this by looking at the output file in unix (cat -v o7766582.req) and it showed up the Latin U character.
    I realise it could be to do with the character set I am using. I checked what we had on the server:
    > echo $NLS_LANG
    American_America.UTF8
    I would have thought that corresponded with the XML declaration character set but I'm not sure.
    Does anyone have any other ideas about why I have this special character, and how it could be removed?
    Thanks in advance,
    Hazel

    Hi AlexAnd,
    thanks very much for your reply.
    I'm now unable to recreate the problem since dbms_xmlgen worked. If I switch back to my previous method it works fine!
    I'm not sure your suggestion would help, as there were no special characters in the data, the special character was added after the last tag I output. I hard coded the data (as in my example) for testing purposes so there was no SQL in use and the special character was still added at the end of the XML output. But I will definitely give it a try if I get the problem again.
    I had the idea that maybe I should have been using FND_FILE.PUT rather than FND_FILE.PUT_LINE but now the error is gone I can't tell if that would have solved the problem either.
    I appreciate your input.
    Regards
    Hazel

  • Special character in interactive report using filter

    Hi,
    I created an interactive report and in this report there is a filter to search any row from specific value linked to a specific column.
    As example this report displays a board with some columns like "SR number", "Status", "Description", ....
    If I use this filter with standard character all works fine :
    - in the filter's list of values I choose "Region" column
    - in the search field I put "SE"
    - click on go and the board is generated with all correct rows.
    If I use this filter with special character (french character in my case), this filter changes this special character and the request doesn't return any row.
    Example :
    - in the filter's list of values I choose "Statut" column
    - in the search field I put "Réception"
    - the filter's expression is modified from "Réception" to "Réception" so no row is returned (filter - Statut contains 'Réception' - no data found)
    I modified the character set used by the apex DAD changing the nls_lang parameter in the wdbsvr.app file from AMERICAN_AMERICA.WE8ISO8859P1 (database character set) to AMERICAN_AMERICA.AL32UTF8
    But when I check the apex DAD character set after the web server restart (about Application Express in my workspace) I get :
    NLS_CHARACTERSET: WE8ISO8859P1
    DAD CHARACTERSET: ISO-8859-1
    No change.
    I used the Application Express 3.2.0.00.27 with Oracle E-business Suite (11.5.10.2).
    Any help will be appreciated.
    Best regards,
    Olivier
    Edited by: oll on 1 mars 2010 20:57
    Edited by: oll on 15 mars 2010 21:17

    Hi,
    Thank you for your answer.
    But I already installed french language on apex.
    Unfortunately issue occurs yet.
    To install the french language I followed these steps :
    - I set the NLS_LANG to American_America.AL32UTF8
    - sqlplus sys/**** as sysdba
    - ALTER SESSION SET CURRENT_SCHEMA = APEX_030200;
    - and I executed the load_fr.sql script
    Thank you for your help.
    Best regards,
    Olivier

  • Special character in XML causing the file to hit worng folder.

    I am facing program, while sending a data to a repository using SOAP XML. The file path which is needed has a special character and this is not getting identified at the target.
    here is the brief descriptio.
    1) We generate the PDF using the XML report in ERP.
    2) Using the same data, we generate SOAP XML file and send to a respoitory.
    3) Here using this SOAP XML, the PDF is generated and stored in a location which is sent in the file.
    we are sending the target path as "PO's from Customer" as below:
    '&lt;target_folder_path&gt;'||'/Documents/'||TO_CHAR(SYSDATE,'YYYY')||'/PO's from Customer'||'&lt;/target_folder_path&gt;';
    The path needed is '/Documents/2012/PO's from Customer' , but due the apostrophe, the file is hit /adadmin path.
    I have tried replcaing the special character by &apos; , but still no luck. If i remove the special characters, then the file is hitting correct path.
    But the requirement is to have '/Documents/2012/PO's from Customer' .
    Is there is a way this can be achived. Please advice.

    Is it as simple as using two single quotes between PO and s?
    '/PO''s from Customer'I can't tell from what you wrote how you are generating the value in the first place so if not correct provide more details related to whatever builds the path.

  • Load special character £ in node name

    Hi,
    I am importing the hierarchies with special character £ and once imported it shows as following before the node name:
    small square box in place of £ with UTF8 as character encoding while importing and
    ? mark in place of £ with ASCII or ANSI as character encoding while importing.
    Please let me know how to get the £ in the node name.
    Thanks,
    Ravi

    Got it,
    Save the text file itself in UTF format and then import with UTF8 encoding in DRM.
    Thanks,
    Ravi

  • How to discard the special character from field-Table.

    Hi
    In my data i am having a lot of SPECIAL CHARACTER also involved, I want to display only the consumer name (PURELY), is there any method/function module to discard the special character and display only the A-Z character as stored in DB.
    Gaurav

    if itab-field CA 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    or
    if itab-field CP 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
    then do ur else calculation.
    else.
    delete itab.
    Edited by: tahir naqqash on Feb 17, 2009 4:27 PM
    Edited by: tahir naqqash on Feb 17, 2009 5:21 PM

  • How to check for black rectangle special character

    hi ,
    i have a field that contains the black rectangle special character and when i copy it to the pl/sql's screen it's showing the square bracket. -->
    however when i saved the view it turns from to . and this has disrupted my check as follows
    field1 = '2AAC1234.11some-other-words'
    substring(field1 , instr(field1 , '')) -- i am expecting it to return 2AAC1234.11
    instead it returns me 2AAC1234 because the has turned in "." once i save the query. pls advise
    tks & rgds

    Get the ascii values for using ASCII function.
    SELECT ASCII('') FROM DUAL;--
    and then INSTR function use CHR fucntion with the ASCII value you get fron above query.
    SELECT CHR(n) FROM DUAL; it will return ''
    here n is the ascii value for ''
    Regards
    Arun Gupta

  • Special charaters " and ' not working SGD 4.61.915

    We have troubles with the special character " and ' (same key) in SGD 4.61.915.
    We use the US-International keyboard setting.
    Is this a known bug?

    Hi,
    Same problem here, strange thing is when using Mac both charaters work, but not when using Windows.
    Also version 4.61.915.
    Regards,
    Michael

Maybe you are looking for

  • CRM 7.0 Billing Document from Sales Order - Direct Billing BP

    Hi Gurus I have configured the SAP CRM standalone system as per SAP CRM 7.0 Help on the topic of Sales Orders and Transaction related billing. Created a copy of Transaction TABO as my Sales Order Transaction Created a copy of Item Category TANB as my

  • Finished installation but it says my serial number is invalid

    I finally figured out how to install CS2 from my download files.  However, when I tried to run Photoshop it says "user name, organization or serial number is invalid. The application cannot continue and must now exit".  And it does...................

  • Problems with event import on iMovie 10.0.3

    My complete movie libraries works fine with iMovie 9.0.9. There are no other malfunctions. The filessystem is clean. After upgrading to iMovie 10.0.3 the initial startup event and project update process fails on serveral older events and I have probl

  • Collect mode BPM for Flat IDoc

    Hi Experts, I am working on development of a BPM which should use flat IDocs as input collect them and then send them as output as a single file.  XI is able to collect the IDocs only if they are XMLIZED.  Can you please give me some idea by which i

  • Is it possible to determine if a program is installed on the PC running the flash?

    Hi, I use Flash to develop a movie that runs when a user installs a new version of my companies software, and allows the user to access the user documentation and software installations at the click of a button.  I use ActionScript to control the flo