Coy of special characters delivers funny ones...

hi,
i have a funny problem:
(i posted it also elsewhere, but one of my macs is a g5...)
when copying text within, say MSWord, I can select without any problem text which contains special characters, such as "à" and take it over to a new place with "copy" and "paste". The special characters are displayed correctly.
when I try to do the same within Acrobat (6.0, professional), in order to copy text into a "comment" or "note", each special character is replaced by some funny thing. I have to retype using the command-key stuff, quite unhandy.
And:
still funnier is that this happens only on my powerbook, and not on my iMac (g5); (acrobat is from the same disk, thus should be the same). I cannot select any font within acrobat, thus I think it must be a preference setting of my powerbook .
has anybody a clue? thanks in advance
Thomas

i need to find an invisible character. I looked through the symbols in Word and i found what i hope is an invisible character. the unicode value of it is 200C...

Similar Messages

  • Special Characters in imported HTML

    I've got a Flash piece where the user fills out a
    questionnaire, and based on their responses, they are shown a
    handful of recommendations. These recommendations are all separate
    HTML files that load into a scrolling text field as HTML text.
    There is an English version and a Spanish version. The
    English version works fine.
    In the Spanish version, on the other hand, we've got special
    characters such as accents over e's, tildes over n's, and so forth.
    In the HTML, I've used codes for special characters, such as
    ñ for ñ. That didn't work. In the resulting
    recommendations, this code appears, not the ñ.
    Then I tried just putting the special characters into the
    HTML, without the special code. That looks fine on my computer (Mac
    G5 running Firefox), but on Windows IE instead of the special
    characters, we get one of those diamond shapes with a "?" in the
    middle of it.
    In my recommendations field, I have it set to embed all
    characters. The font is Verdana, which should include the special
    characters. Does anyone know if the display of special characters
    in Flash is possible, and how I would do it?

    add <?xml version="1.0" encoding="UTF-8"?> tag to 1st
    line of your xml, AND
    save your xml file encoding as utf-8, if you are using
    notepad, try this:
    - save as, change the encoding (the bottom field) to UTF-8
    no worry about your file extension.
    UTF-8 (8-bit Unicode Transformation Format) supports multiple
    languages.
    good luck

  • How to add special characters into numbers?

    Hi, I wonder how can I add special characters like the one in the "Edit" menu for the Mac versions? Thanks.

    It all depends what exactly you are talking about, so if you tell us, someone can help you. Some can be made from the keyboard, others you would need to copy/paste from an app like Unicode Map.

  • RSKC Special characters

    Hi,
    Actually in RSKC there is special character like #.But while loading the data will struckup in NEW DATA itself.Field containing the # key record and that data packet will struck up there only.

    Hi,
    As a long term you can apply some user exit in source system side or change your update rules to ensure that this field is getting blanked out before getting loaded in cube or add that particular char to permitted character list in BW.
    RSKC --> type ALL_CAPITAL --> F8 (Execute)
    OR
    Go to SE38 and execute the program RSKC_ALLOWED_CHAR_MAINTAIN and give ALL_CAPITAL or the char you want to add.
    Check the table RSALLOWEDCHAR. It should contain ALL_CAPITAL or the char you have entered.
    Refer
    /people/sap.user72/blog/2006/07/23/invalid-characters-in-sap-bw-3x-myths-and-reality-part-2
    /people/sap.user72/blog/2006/07/08/invalid-characters-in-sap-bw-3x-myths-and-reality-part-1
    /people/aaron.wang3/blog/2007/09/03/steps-of-including-one-special-characters-into-permitted-ones-in-bi
    http://help.sap.com/saphelp_nw04/helpdata/en/64/e90da7a60f11d2a97100a0c9449261/frameset.htm
    For adding Other characters
    OSS note #173241 – “Allowed characters in the BW System”
    Also try in dev first entering in RSKC ALL_CAPITAL_PLUS_HEX
    Thanks,
    JituK

  • How does one enter special characters, in particular french accents into text in PS Elements?

    I'm trying to produce some artwork in Photoshop Elements with some French text in it, so I need to know how to input special characters for the letters with accents. Anyone got any ideas - I've tried looking for a glyph menu but that doesn't seem to exist on Elements.

    Which operating system are you using and version of photoshop elements?
    Photoshop elements doesn't have a Glyphs panel or menu.
    Here's a way:
    windows
    http://symbolcodes.tlt.psu.edu/accents/codealt.html
    mac
    http://symbolcodes.tlt.psu.edu/accents/codemac.html

  • Dealing with special characters in  PHP part deux

    Something else is confusing me about special characters.  I am doing some troubleshooting/maintenaince on my files. On one files I have my navigation bar on a separte file and use the include function to use it. 
    For the other file, I took the include out and just copy and pasted what was in the inculde file directly on to the file. 
    The words that contain special characters in the include appear funny in the browser. However the menu that is not included (but copied from the include) appears normal.
    Any thoughts?
    One is copied and pasted from the other, yet the look different

    Sorry, my head's been swimming today:
    Here is the include file (minus much of the list)
    The Beers
    Recent Additions
    Recommended
    Hybrid        
    06 Light Hybrid            
    06a Cream Style
    06b Blonde Ale
    06c Kölsch
    06d American Wheat/Rye
    07 Amber Hybrid            
    07a Northern German Altbier
    07b California Common
    07c Düsseldorf Altbier
    And the above include is put in here:
    This is all the code north of the content.
    Also, all I did to copy and paste this was hit ctrl A and crtl C on the sidebar include page, and ctrl V on the file below.
    <?php require_once('Includes/connection.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    ?>
    <?php require_once('Includes/mysql_prep.php'); ?>
    <?php
    $colname_DetailRS1 = "-1";
    if (isset($_GET['listID'])) {
      $colname_DetailRS1 = $_GET['listID'];
    mysql_select_db($database_beer_diary, $beer_diary);
    $query_list_beer = sprintf("SELECT * FROM beer ORDER BY date_tasted_01 DESC LIMIT 15", GetSQLValueString($colname_DetailRS1, "text"));
    $list_beer = mysql_query($query_list_beer, $beer_diary) or die(mysql_error());
    $row_list_beer = mysql_fetch_assoc($list_beer);
    $total_rows = mysql_num_rows($list_beer);
    ?>
    <html>
    <head>
    <title>Recent Additions</title>
    <link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
    <link href="stylesheets/table_and_forms.css" rel="stylesheet" type="text/css" />
    <link rel="shortcut icon" href="images/beer.jpg">
    </head>
    <body>   
    <div id="container">
    <div id="header">
    <?php include('Includes/header.php');?>
    </div>
    <div id="sidebar">   
    <!----------------SPRY NAVIGATION MENU CODE FOR FORMS-------------------------------------------------------------->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
    <ul id="Beer_Navi" class="MenuBarVertical">
    <h1>The Beers</h1>
    <li><a href="recent_list.php">Recent Additions</a></li>
          <li><a href="recommend_list.php">Recommended</a></li>
          <li><a class="MenuBarItemSubmenu" href="#">Beer by Country</a>
            <ul>
              <li><a href="country_list.php?listID=USA">America</a></li>
              <li><a href="country_list.php?listID=BEL">Belgium</a></li>
              <li><a href="country_list.php?listID=DEU">Germany</a></li>
              <li><a href="country_list.php?listID=GBR">Great Britain</a></li>
              <li><a href="country_list.php?listID=JPN">Japan</a></li>
              <li><a href="oth_list">Other Countries</a></li>
            </ul>
      </li>
          <li><a href="#" class="MenuBarItemSubmenu">Lager</a>
            <ul>
              <li><a href="style_list.php?listID=01">01 Light Lager</a>
                <ul>
                  <li><a href="substyle_list.php?listID=01a">01a Lite American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01b">01b Standard American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01c">01c Premium American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01d">01d Munich Helles</a></li>
                  <li><a href="substyle_list.php?listID=01e">01e Dortmunder Export</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=02">02 Pilsner</a>
                <ul>
                  <li><a href="substyle_list.php?listID=02a">02a German Pilsner (Pils)</a></li>
                  <li><a href="substyle_list.php?listID=02b">02b Bohemian Pilsner</a></li>
                  <li><a href="substyle_list.php?listID=02c">02c Classic American Pilsner</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=03">03 European Amber Larger</a>
                <ul>
                  <li><a href="substyle_list.php?listID=03a">03a Vienna Lager</a></li>
                  <li><a href="substyle_list.php?listID=03b">03b Oktoberfest/Märzen</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=04">04 Dark Lager</a>
                <ul>
                  <li><a href="substyle_list.php?listID=04a">04a Dark American Lager</a></li>
                  <li><a href="substyle_list.php?listID=04b">04b Munich Dunkel</a></li>
                  <li><a href="substyle_list.php?listID=04c">04c Schwarzbier</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=05">05 Bock</a>
                <ul>
                  <li><a href="substyle_list.php?listID=05a">05a Maibock/Helles Bock</a></li>
                  <li><a href="substyle_list.php?listID=05b">05b Traditional Bock</a></li>
                  <li><a href="substyle_list.php?listID=05c">05c Doppelbock</a></li>
                  <li><a href="substyle_list.php?listID=05d">05d Eisbock</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Hybrid</a>
            <ul>
              <li><a href="style_list.php?listID=06">06 Light Hybrid</a>
                <ul>
                  <li><a href="substyle_list.php?listID=06a">06a Cream Style</a></li>
                  <li><a href="substyle_list.php?listID=06b">06b Blonde Ale</a></li>
                  <li><a href="substyle_list.php?listID=06c">06c Kölsch</a></li>
                  <li><a href="substyle_list.php?listID=06d">06d American Wheat/Rye</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=07">07 Amber Hybrid</a>
                <ul>
                  <li><a href="substyle_list.php?listID=07a">07a Northern German Altbier</a></li>
                  <li><a href="substyle_list.php?listID=07b">07b California Common</a></li>
                  <li><a href="substyle_list.php?listID=07c">07c Düsseldorf Altbier</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Ales</a>
            <ul>
              <li><a href="style_list.php?listID=08">08 English Pale Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=08a">08a Standard/Ordinary Bitter</a></li>
                  <li><a href="substyle_list.php?listID=08b">08b Special/Best/Premium</a></li>
                  <li><a href="substyle_list.php?listID=08c">08c Extra Special/Strong</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=09">09 Scottish & Irish Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=09a">09a Scottish Light 60/-</a></li>
                  <li><a href="substyle_list.php?listID=09b">09b Scottish Heavy 70/-</a></li>
                  <li><a href="substyle_list.php?listID=09c">09c Scottish Export 80/-</a></li>
                  <li><a href="substyle_list.php?listID=09d">09d Irish Red Ale</a></li>
                  <li><a href="substyle_list.php?listID=09e">09e Strong Scotch Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=10">10 American Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=10a">10a American Pale Ale</a></li>
                  <li><a href="substyle_list.php?listID=10b">10b American Amber Ale</a></li>
                  <li><a href="substyle_list.php?listID=10c">10c American Brown Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=11">11 English Brown Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=11a">11a Mild</a></li>
                  <li><a href="substyle_list.php?listID=11b">11b Southern English Brown</a></li>
                  <li><a href="substyle_list.php?listID=11c">11c Northern English Brown</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=12">12 Porter</a>
                <ul>
                  <li><a href="substyle_list.php?listID=12a">12a Brown Porter</a></li>
                  <li><a href="substyle_list.php?listID=12b">12b Robust Porter</a></li>
                  <li><a href="substyle_list.php?listID=12c">12c Baltic Porter</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=13">13 Stout</a>
                <ul>
                  <li><a href="substyle_list.php?listID=13a">13a Dry Stout</a></li>
                  <li><a href="substyle_list.php?listID=13b">13b Sweet Stout</a></li>
                  <li><a href="substyle_list.php?listID=13c">13c Oatmeal Stout</a></li>
                  <li><a href="substyle_list.php?listID=13d">13d Foreign Extra Stout</a></li>
                  <li><a href="substyle_list.php?listID=13e">13e American Stout</a></li>
                  <li><a href="substyle_list.php?listID=13f">13f Russian Imperial Stout</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=14">14 India Pale Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=14a">14a English IPA</a></li>
                  <li><a href="substyle_list.php?listID=14b">14b American IPA</a></li>
                  <li><a href="substyle_list.php?listID=14c">14c Imperial IPA</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=15">15 German Wheat & Rye</a>
                <ul>
                  <li><a href="substyle_list.php?listID=15a">15a Weizen/Weissbiet</a></li>
                  <li><a href="substyle_list.php?listID=15b">15b Dunkelweizen</a></li>
                  <li><a href="substyle_list.php?listID=15c">15c Weizenbock</a></li>
                  <li><a href="substyle_list.php?listID=15d">15d Roggenbeir (Rye)</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=16">16 Belgian & French Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=16a">16a Witbier</a></li>
                  <li><a href="substyle_list.php?listID=16b">16b Belgian Pale Ale</a></li>
                  <li><a href="substyle_list.php?listID=16c">16c Saison</a></li>
                  <li><a href="substyle_list.php?listID=16d">16d Bière de Garde</a></li>
                  <li><a href="substyle_list.php?listID=16e">16e Belgian Specialty Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=17">17 Sour Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=17a">17a Berliner Weisse</a></li>
                  <li><a href="substyle_list.php?listID=17b">17b Flanders Red Ale</a></li>
                  <li><a href="substyle_list.php?listID=17c">17c Flanders Brown Ale</a></li>
                  <li><a href="substyle_list.php?listID=17d">17d Straight Lambic</a></li>
                  <li><a href="substyle_list.php?listID=17e">17e Gueuze</a></li>
                  <li><a href="substyle_list.php?listID=17f">17f Fruit Lambic</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=18">18 Belgian Strong Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=18a">18a Belgian Blond Ale</a></li>
                  <li><a href="substyle_list.php?listID=18b">18b Belgian Dubbel</a></li>
                  <li><a href="substyle_list.php?listID=18c">18c Belgian Tripel</a></li>
                  <li><a href="substyle_list.php?listID=18d">18d Belgian Golden Strong Ale</a></li>
                  <li><a href="substyle_list.php?listID=18e">18e Belgian Dark Strong Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=19">19 Strong Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=19a">19a Old Ale</a></li>
                  <li><a href="substyle_list.php?listID=19b">19b English Barleywine</a></li>
                  <li><a href="substyle_list.php?listID=19c">19c American Barleywine</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Specialty Beers</a>
            <ul>
              <li><a href="style_list.php?listID=20">20 Fruit Beer</a></li>
              <li><a href="style_list.php?listID=21">21 Spice/Herb/Vegetable Beer</a>
                <ul>
                  <li><a href="substyle_list.php?listID=21a">21a Spice, Herb, or Vegetable</a></li>
                  <li><a href="substyle_list.php?listID=21b">21b Christmas/Winter Specialty</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=22">22 Smoked/Wood-aged Beer</a>
                <ul>
                  <li><a href="substyle_list.php?listID=22a">22a Classic Rauchbeir</a></li>
                  <li><a href="substyle_list.php?listID=22b">22b Other Smoked Beer</a></li>
                  <li><a href="substyle_list.php?listID=22c">22c Wood-Aged Beer</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=23">23 Specialty Beer</a></li>
            </ul>
          </li>
    </ul>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("Beer_Navi", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </div><!-- end #sidebar -->
    <div id="content">

  • Auto convert special characters

    Good day all and thanx for your help.
    CS3 & trying out CS5.
    A couple of the sites I do, are written in Afrikaans, ons of the 11 official languages in South Africa.
    Afrikaans makes use of characters such as ê, ë, ô, ü, é, ö and so on. I normally forget to change it in code view and make use of &... It then displays as funny characters in browser. Is there a way I can learn/tell DW to auto change my special characters or do you perhaps have a good solution or tip for me.
    Thank you very much.
    Regards,
    Deon

    Hi Deon,
    that happens to me very often too. So I too thought it would be nice to change the special characters automatically. All I've found at that time was a payment program (in those days for CS3). It's still here after all:
    http://www.experts-exchange.com/Web_Development/Software/Macromedia_Dreamweaver/Q_22706485 .html
    Meanwhile, I'll do it in another way. When I finished one of my sides, I use the "Find and Replace"-function of DW. I start searching one of the special characters and after changing them (if necessary), I only replace one character and can start a new action. Look here for example (from my German DW where we have the same problems in our language):
    The general way to insert the special characters you know, I suppose. If not, here you will find a nice tutorial:
    http://www.recipester.org/Recipe:Insert_special_characters_in_Dreamweaver_27537484
    or
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7ccca .html
    Hans-G.

  • Always jumps back to special characters like ü,ö,ß

    hello,
    so i have been having problems with my macbook pro recently. it has a US keyboard but i write a lot in german so i have to use special characters like ä,ü,ö,ß which normally is not a problem, because i can just stay longer on the a,u,o,s keys and it works perfectly. however, recently when i was typing one of the special characters a lot of the time it jumped back to the previous one i had typed a couple of words back.
    this is really really annoying and i do not know what i can do about it or what i am doing wrong.
    it would be awesome if somebody knows a way how to fix this problem.
    thank you for your help!

    Hi,
    Unicode or Non-Unincode System ?
    Displayed where ? SAPGUI ? Print Preview ? Spool-Display ?
    And how is the XML file written ?  OPEN DATASET ? BAPI ?
    At all of these stages it might be either that it is only a display system, like the selected display CHARSET in SAPGUI, when it is a non-unicode system, or simply not coded correctly like OPEN DATASET without specifying the cdepage when necessary.
    And it might even be, that even "displaying" the XML File is simply done with the incorrect codepage while the data inside the file is correct.
    If you are on Windows, you might even face funny results when saving a simple textfile from notepad with ANSI/DOS and both Unicode variants and then go to CMD.EXE ans simply "type" the content.
    All 4 results will be different, allthough notepad will display the same stuff.
    So first of all, makes sure which codepage is relevant at all stages from DB-table to "display"
    - DB-Charset
    - SAP system type (unicode/non-unicode)
    - SAP codepage (1100 / 410x )
    - crosscheck the test from report RSCPINST
    - Codepage on Windows running SAPGUI
    - Selected codpage for Sapgui
    Good hunting
    Volker

  • Special Characters Validations

    Hi, I need to write a validation that will give an error when user enters any funny characters e.g @, $ and about 300 more since we have multiple langueu2019s.
    Currently I have the following working validation;
    HAS_ANY_CHAR(Field Name,"@","$")=False
    What I want to know is if there are an easier way to achieve my goal of blacking the non valid characters we identified?
    Any help will be appreciated.

    Hi Chris,
    In data manager in match mode
    In Trasformation tab we remove special characters using TOKENS
    right click transfermation pane create name like "remove -"
    ex: AB-PQR-D, we don't want to "-" replace to ABPQRD
    Under TOKENS: 
                   FROM                                     TO
                   "-"                                          keep emty place
    In RULE tab give for FIELD: whatever name given in transformation: "remove -"
    In strategies pane will give rule name.
    select the duplicate records in record pane, right click press match tab, select the check box
    go to merge tab merge the records.
    OUTPUT: ABPQRD and merge the others into one record.
    Regards
    Bhupal.

  • FindNode returning Null And XML Not Accepting Special Characters

    Hi All,
    i am trying the get the attribute value in the element "ns4:InfoCFDi" using FindNode method, but the method is returning NULL. I used the same code for other sample as well and was successfull. but for this specific XML file(which is below) I am getting a Null.
    i can get till S:Body, but when i try to use FindNode for ":Body/s4:ResponseGeneraCFDi" I get Null value.
    And I used "S:Body/*[local-name()=" | "ns4:ResponseGeneraCFDi" | "]";
    as mentioned in other post but still no success.
    ==>I Have one more question relating to special characters. I need to use characters such as - ó in my XML to read as well as write. When I try to read i am getting XML parse error and when writing, i cannot open the file properly.
    Your help is much appreciated.
    My code is here:
    Local XmlDoc &inXMLDoc, &reqxmldoc;
    Local XmlNode &RecordNode;
    &inXMLDoc = CreateXmlDoc();
    &ret = &inXMLDoc.ParseXmlFromURL("D:\Agnel\Mexico Debit Memo\REALRESPONSE.xml");
    If &ret Then
    &RecordNode = &inXMLDoc.DocumentElement.FindNode("" );
    If &RecordNode.IsNull Then
    Warning MsgGet(0, 0, "Agnel FindNode not found.");
    rem MessageBox(0, "", 0, 0, "FindNode not found");
    Else
    &qrValue = &RecordNode.GetAttributeValue("asignaFolio ");
    Warning MsgGet(0, 0, "asignaFolio." | &qrValue);
    End-If;
    Else
    Warning MsgGet(0, 0, "Error. ParseXmlString");
    End-If;
    XML File:
    - <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    - <S:Body>
    - <ns4:ResponseGeneraCFDi xmlns="http://www.xxl.com/ns/xsd/bf/rxx/52" xmlns:ns2="http://www.sat.gob.mx/cfd/3" xmlns:ns3="http://www.xx/ns/bf/conector/1&quo t; xmlns:ns4="http://www.xx/ns/xsd/bfxx/xx/32&qu ot; xmlns:ns5="http://www.xxcom/ns/xsd/bf/xxxxx&q uot; xmlns:ns6="http://wwwxx.com/ns/referenceID/v1">
    - <ns3:Result version="1">
    <ns3:Message message="Proceso realizado con exito." code="0" />
    </ns3:Result>
    - <ns4:InfoCFDi noCertificadoSAT="20001000000100003992" refId="STORFAC20121022085611" fechaTimbrado="2012-10-22T08:56:45" qr=" "
    uuid="a37a7d92-a17e-49f4-8e4d-51c983587acb" version="3.2" tipo="XML" archivo="xxx" sello="B8WjuhYLouSZJ6LU2EjxZ0a4IKyIENZNBx4Lb4 jkcAk6wA+EM477yz91/iDdsON0jm8xibBfom5hvHsH7ZK1ps3NnAXWr1LW 7ctmGsvYKAMvkCx/yOVzJTKFM2hN+OqCTE0WVfgv690vVy2CDQWKlMxbK+3idwG4t OKCMelrN9c=" fecha="2012-10-22T08:56:44" folio="281" serie="IICC">
    <InfoEspecial valor="Este documento es una representacin impresa de un CFDI." atributo="leyendaImpresion" />
    <InfoEspecial valor="||1.0|a37a7d92-a17e-49f4-8e4d-51c983587acb|2012-10-22T08:56:45|B8WjuhYLouSZJ6LU2EjxZ0a4IKyIENZNBx4Lb4 jkcAk6wA+EM477yz91/iDdsON0jm8xibBfom5hvHsH7ZK1ps3NnAXWr1LW 7ctmGsvYKAMvkCx/yOVzJTKFM2hN+OqCTE0WVfgv690vVy2CDQWKlMxbK+3idwG4t OKCMelrN9c=|20001000000100003992||" atributo="cadenaOriginal" />
    <InfoEspecial valor="Doscientos dieciocho mil cuatrocientos setenta y cinco pesos 00/100 M.N." atributo="totalConLetra" />
    </ns4:InfoCFDi>
    </ns4:ResponseGeneraCFDi>
    </S:Body>
    </S:Envelope>
    TIA

    First of all you have to supply a value you want to search for and this has to be the complete path to the value. You're saying you already tried that, but can you paste the code which you used for that? I don't see the path mentioned in the code you posted.
    *FindNode*
    Syntax
    FindNode(Path)
    Description
    Use the FindNode method to return a reference to an XmlNode.
    The path is specified as the list of tag names, to the node that you want to find, each separated by a slash (/).
    Parameters
    Path
    Specify the tag names up to and including the name of the node that you want returned, starting with a slash and each separated by a slash (/). This is known as the XPath query language.>
    Another option would be this snippet of code:
    &InfoCFDiArray = GetElementsByTagName("ns4:InfoCFDi");
    &InfoCFDiNode = &InfoCFDiArray [1];
    &attValue = &InfoCFDiNode.GetAttributeValue("noCertificadoSAT")
    Warning(&attValue);
    It creates an array of XML Nodes which match the name "ns4:InfoCFDi". Since there's only one in the XML it's safe to assume it will be the one and only node in the array. I've assigned that node to the variable &InfoCFDiNode and use that to retrieve the attribute "noCertificadoSAT" value. The warning message should display the value supplied there.
    Concering the special characters; you will have to change the encoding of the XML. Peoplecode sets this to UTF-8 by default, but doesn't include this in the header. There's a little hack for that somewhere on the web, I'll see if I can find it.

  • Fields in Flat File are separated by special characters

    hello every one,
       fIf fields in Flat File are separated by special characters
    and If Flat File is given in Excel sheet , how to handle this kind of issues.
    to Upload data into R/3 system, in BDC.
       If u have sample program ,please send it ot me and explain ?
    others give me hints...

    Hi,
    you can use the function module ALSM_EXCEL_TO_INTERNAL_TABLE .
    Check this sample code.
    hi,
    use the FM ALSM_EXCEL_TO_INTERNAL_TABLE.
    PARAMETERS:
    P_INFL like RLGRAP-FILENAME.
    DATA:
    BEGIN OF T_DATA1 OCCURS 0,
    RESOURCE(25) TYPE C,
    DATE(10) TYPE C,
    DURATION TYPE P DECIMALS 2,
    ACTIVITY(25) TYPE C,
    B_NBILL(1) TYPE C,
    END OF T_DATA1,
    T_DATA TYPE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE,
    BEGIN OF T_FINAL OCCURS 0,
    RESOURCE(25) TYPE C,
    DATE(10) TYPE C,
    DURATION(15) TYPE C,
    ACTIVITY(25) TYPE C,
    B_NBILL(10) TYPE C,
    END OF T_FINAL.
    DATA : HEADER TYPE XSTRING.
    Work Variables Declaration.
    CONSTANTS:
    W_Y TYPE C VALUE 'Y',
    W_N TYPE C VALUE 'N'.
    Work area.
    DATA:
    WA_DATA LIKE T_FINAL.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_INFL.
    PERFORM GET_FILENAME CHANGING P_INFL.
    START-OF-SELECTION.
    PERFORM UPLOAD_DATA_FROMEXCEL.
    FORM UPLOAD_DATA_FROMEXCEL.
    Downloading the data from presentation server
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    FILENAME = p_infl
    I_BEGIN_COL = 1
    I_BEGIN_ROW = 2
    I_END_COL = 8
    I_END_ROW = 1000
    TABLES
    INTERN = T_DATA
    EXCEPTIONS
    INCONSISTENT_PARAMETERS = 1
    UPLOAD_OLE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " upload_data_fromexcel
    *& Form process_data
    text
    FORM PROCESS_DATA .
    T_FINAL-RESOURCE = 'Resource'.
    T_FINAL-DATE = 'Date'.
    T_FINAL-DURATION = 'Duration'.
    T_FINAL-ACTIVITY = 'Activity'.
    T_FINAL-B_NBILL = 'Billable'.
    APPEND T_FINAL.
    SORT T_DATA BY ROW COL.
    LOOP AT T_DATA.
    CASE T_DATA-COL.
    WHEN 3.
    T_DATA1-RESOURCE = T_DATA-VALUE.
    WHEN 4.
    T_DATA1-DATE = T_DATA-VALUE.
    WHEN 5.
    T_DATA1-DURATION = T_DATA-VALUE.
    WHEN 6.
    t_data1-activity = t_data-value.
    WHEN 7.
    T_DATA1-B_NBILL = T_DATA-VALUE.
    ENDCASE.
    AT END OF ROW.
    COLLECT T_DATA1.
    ENDAT.
    ENDLOOP.
    LOOP AT T_DATA1.
    T_FINAL-RESOURCE = T_DATA1-RESOURCE.
    T_FINAL-DATE = T_DATA1-DATE.
    T_FINAL-DURATION = T_DATA1-DURATION.
    T_FINAL-ACTIVITY = T_DATA1-ACTIVITY.
    T_FINAL-B_NBILL = T_DATA1-B_NBILL.
    APPEND T_FINAL.
    ENDLOOP.
    ENDFORM. " process_data
    *& Form get_filename
    FORM GET_FILENAME CHANGING P_FILENAME.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    DEF_FILENAME = SPACE
    DEF_PATH = P_FILENAME
    MASK = ',. ,..'
    MODE = 'O' " O = Open, S = Save
    TITLE = BOX_TITLE
    IMPORTING
    FILENAME = P_FILENAME
    EXCEPTIONS
    INV_WINSYS = 1
    NO_BATCH = 2
    SELECTION_CANCEL = 3
    SELECTION_ERROR = 4
    OTHERS = 5.
    CASE SY-SUBRC.
    WHEN 1.
    MESSAGE I999 WITH
    'File selector not available on this windows system'(046).
    WHEN 2.
    MESSAGE E999 WITH
    'Frontend function cannot be executed in background'(047).
    WHEN 3.
    MESSAGE I999 WITH 'Selection was cancelled'(048).
    WHEN 4.
    MESSAGE E999 WITH 'Communication error'(049).
    WHEN 5.
    MESSAGE E999 WITH 'Other error'(050).
    ENDCASE.
    ENDFORM. " get_filename
    <b>Kindly Reward points if you found the reply helpful.</b>
    Cheers,
    CHAITANYA.

  • HTML special characters in form input

    In my site I store form input in my database. Before I store
    the data, I parse out smart quotes, en dashes, and other extended
    special characters and convert them into HTHML quivalents such as
    &#8217;
    All is well and good until the user goes to edit their info.
    In my form these characters show up in my <input> tags as
    their long-winded HTML equivalents, such as &#8217; instead of
    a smart apostrophe.
    Is there any way to convert these back to the special
    characters from the HTML on the form input text fields so that
    users can edit them without being confused?
    Thanks.

    Hmmm, well I ran the MX 6.1 updater and installed the two hot
    fixes that had to do with null pointer exceptions and it still does
    not work.
    Here is the detailed error I'm getting, if it helps. Any more
    ideas? Thanks again for the help, I'm really stuck on this one...
    The system has attempted to use an undefined value, which
    usually indicates a programming error, either in your code or some
    system code.
    Null Pointers are another name for undefined values.
    The error occurred in C:\Inetpub\wwwroot\store\index.cfm:
    line 1
    1 : <cfquery name="getBooks" datasource="#dsn#">
    2 : SELECT *
    3 : FROM products
    Please try the following:
    * Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    * Search the Knowledge Base to find a solution to your
    problem.
    Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
    rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7
    Remote Address 127.0.0.1
    Referrer
    Date/Time 09-Oct-07 02:20 PM
    Stack Trace
    at
    cfindex2ecfm1770128649.runPage(C:\Inetpub\wwwroot\store\index.cfm:1)
    java.lang.NullPointerException
    at coldfusion.sql.QueryTable.populate(QueryTable.java:260)
    at coldfusion.sql.QueryTable.populate(QueryTable.java:159)
    at coldfusion.sql.Executive.getRowSet(Executive.java:505)
    at coldfusion.sql.Executive.executeQuery(Executive.java:974)
    at coldfusion.sql.Executive.executeQuery(Executive.java:886)
    at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
    at
    coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:447)
    at
    cfindex2ecfm1770128649.runPage(C:\Inetpub\wwwroot\store\index.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:24)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
    at
    coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:105)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:249)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:348)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:294)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

  • How to handle special characters in Apex

    Hi ,
    In my application I have two regions - one is Report Region (Interactive Report) and other one is HTML region with two text items - Empno and name
    My Report has two columns Empno(varchar2) and Ename(varchar2).
    When I click the edit link in the report column, the empno should have a read only EMPNO value and ename is a text field with ENAME value.
    When I run my application I have encountered the following problems :
    1. if my empno has special characters like ' # ', the characters after that is not getting displayed
    2. if my empno has special characters like ',' - the characters after comma is treated as a next texitem value
    Here is my credential ,
    Workspace CTSAN_ORACLE_DB
    Username [email protected]
    Password lakshmi321
    URL : http://apex.oracle.com/pls/apex/f?p=9444:19:4292839314890159:::::
    Plz. suggest me how to rectify the above problems.
    Thanks,
    Anoo..
    Edited by: Anoo on Aug 13, 2010 3:05 AM

    Don't pass data values in URLs. Whilst it is possible to escape values to make them URL- and APEX parameter-safe, it is much better practice to avoid the problem altogether.
    Create a surrogate primary key on the table that is an immutable discrete numeric identifier and only use this as a URL parameter. In target pages/regions, use this PK value to retrieve the required data from the table.

  • How to Handle Special Characters in PI7.1

    Hi Team,
    I need to handle some special characters like <,>,& etc.. from WS Adapter to CRM in PI 7.1.
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/9420 [original link is broken]
    By using the above blog i had implemented the Java Code as
    public void execute(InputStream in, OutputStream out){
    try{
    int read_data;
    while((read_data = in.read()) != -1){
    if (read_data == '&'){
    out.write("&amp;".getBytes());
    }else if (read_data == '>'){
    out.write("&gt;".getBytes());
    }else if (read_data == '<'){
    out.write("&lt;".getBytes());
    }else if (read_data == '/'){
    out.write("&frasl;".getBytes());
    }else if (read_data == '\''){
    out.write("&apos;".getBytes());
    else { out.write(read_data);
    out.flush();
    } catch (Exception e){}
    I had added this class file in Operational Mapping.
    It is working  if we have only one IF condition for & in while
    Any suggestion
    Thanks
    Sriram

    Hi Ramesh,
    Thanks for your inputs, I have tried your code but it is not working. The error message stays the same.
    Dear Stephane,
    To describe the error more, the requirement is the payload coming from source through WS Adapter consists of the special characters <, > , & which are basic sematics of XML syntax. I need PI to process this payload with special characters and successfully transfer it to target CRM system. I have created the Java class with code (ref: Blog 9420) as stated earlier and added this class to my existing Operation Mapping. I am expecting the java mapping to replace the special characters in payload like  < with "&gt;" . So as the case with the other characters >,&,'
    After activaton of my operation mapping, I triggered the test message with Soap UI client and I could able to get a successful mapping only When I put the logic for &ampersand symbol only. However when I am trying to add the logic for > or < or ' the mapping is failing . I am using UTF-8 encoding across the source and PI enviroments.
    Sample SOAP message :
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:abcabca.com">
       <soapenv:Header/>
       <soapenv:Body>
          <urn:MT_ABCDEFG_Req>
         <activity>
              <id/>
              <type>ZEMA</type>
              <actionType>C</actionType>
              <firewall>10000003</firewall>
              <subject>small &gt; &lt; attachment test</subject>
              <location/>
              <startDate>2010-07-08T10:53:31.000Z</startDate>
              <endDate>2010-07-08T10:53:31.000Z</endDate>
              <mainClient>1000319</mainClient>
              <mainContact>1000003</mainContact>
              <isConfidential>false</isConfidential>
              <summary/>
              <fullText>test body  - small.txt</fullText>
              <owner>1000021</owner>
              <from>ABCDEDF</from>
              <sendTo>emailaddress</sendTo>
              <copyTo/>
              <keywords/>
              <referenceId/>
              <createdBy>1000021</createdBy>
              <additionalContacts/>
              <additionalClients/>
              <additionalParticipants/>
              <status>A0008</status>
              <attachments>
                   <fileUrl>20100708110053-XXXXXXXXX</fileUrl>
                   <fileName>small.txt</fileName>
              </attachments>
              <attachments>
                   <fileUrl>20100708110053-XXXXXXXXX</fileUrl>
                   <fileName>EMail 2010-07-08.pdf</fileName>
              </attachments>
         </activity>
          </urn:MT_ABCDEFG_Req>
       </soapenv:Body>
    </soapenv:Envelope>
    Output on the SOAP UI  client for the above request:
    <!--see the documentation-->
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
       <SOAP:Body>
          <SOAP:Fault>
             <faultcode>SOAP:Server</faultcode>
             <faultstring>Server Error</faultstring>
             <detail>
                <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                   <context>XIAdapter</context>
                   <code>ADAPTER.JAVA_EXCEPTION</code>
                   <text>com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessagingException: XIServer:NO_MAPPINGPROGRAM_FOUND:
         at com.sap.aii.adapter.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:1160)
         at sun.reflect.GeneratedMethodAccessor342.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(
    What do you think where I am doing the wrong?
    Sriram

  • How to enter Special Characters in JSP

    Is there any way to enter special characters such as ºC ? i am using J2EE and Oracle 9 i.
    When i try to enter 2ºC after updating the datbase it is converted to 2ºC. All special characters are prefixed with Â. Pls suggest some better way ..

    This normally relates to your unicode set you are using. For example the database is using a different way of storing data than how it's being parsed.
    One quick/dirty fix is to save the data using HTML encoded elements, for example &copy;
    You will also find that &pound; £ will cause problems. If your web app is only for one country then I would not worry about it however if you need multi language support then you need to read up a little
    [Unicode Support|http://www.alanwood.net/unicode/]

Maybe you are looking for

  • SYSTEM_NOT_CONFIGURED_AS_XMB  Error

    Hi   I'm  doing simple File to File scenario.. both sides i'm using Business Services only.. if i kept the file in the sender directory file was picking .. but the Reciver file was not loaded.. if i check in the RWB i'm getting the following  Error..

  • Pdf attachments from mailing list not in mail

    Hi, I receive email from a phpList server in html format. Any attached PDF files are missing from Apple Mail (version 4.4). - no attachment, no inline - just disappeared into the ether. If I check the mail using an alternative POP client (e.g. Eudora

  • JMS JNDI configurtaration problem

    IHAC where we are connecting PeopleSoft Integration Broker. Unfortunately PIB doesn't support LDAP for JNDI (go figure). So I have to use a .bindings file. Problem is, when I run the HelloWorldMessageJNDI I get the following error: Using file:///tmp/

  • 8.1.5 installer

    I need to add a component to my oracle 8.1.5 installation with a production database running. When I run the installer, selecting "custom" and I try to install only that component, the setup shows that it will reinstall the database and asks to migra

  • Ichat v 2.1 problems

    Everytime I open ichat and try to chat with someone I get this error message. ichat internal error! NSInvalisArgumentException: NSConcreteMutableAttributedStrong add Attribute: value:range:: nil value I can hit quit or continue but either way it cras