<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: problem in recognizing '#&amp;quot; in while reading from appl.server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852124#M1592096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly is a "tab delimited '#' format"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's possible that those # signs are not really TAB characters... are you sure about the file content?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 May 2011 15:37:31 GMT</pubDate>
    <dc:creator>Tamas_Hoznek</dc:creator>
    <dc:date>2011-05-25T15:37:31Z</dc:date>
    <item>
      <title>problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852122#M1592094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am reading the file from application server,, the data is stored with tab delimited '#' format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am used the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gc_tab type char value VALUE cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read dataset &amp;lt;filename&amp;gt; into lv_string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split lv_string at  gc_tab  into v1 v2 v3 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the problem is its not even recognizing '#' character in the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. suggest me the possibilities ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 11:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852122#M1592094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T11:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852123#M1592095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any replies for my issue? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 14:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852123#M1592095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T14:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852124#M1592096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly is a "tab delimited '#' format"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's possible that those # signs are not really TAB characters... are you sure about the file content?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 15:37:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852124#M1592096</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-05-25T15:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852125#M1592097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Tamas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well the flle content has '#' as a delimiter between each field value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when am trying to move the each record into the string .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read dataset &amp;lt;datasetname&amp;gt; into lstring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split lstring at '#' into v1 v2 v3. ...... is not able to recognize the '#" character the record ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgrds&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 17:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852125#M1592097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T17:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852126#M1592098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the debugger, what is the hex value of the '#'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852126#M1592098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852127#M1592099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry i dint get ur piont ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wats the hex value of '#' ? ..means..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example ...the data in the file in the application server is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;100#20110504#20110412##TESTING#23.0000#&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;normally split shud work ...but its not able to recognizing '#' ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the debugger i could only see '#'  but not any value for that ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope am clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:17:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852127#M1592099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852128#M1592100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The # is just a representation of an unprintable character, so the SPLIT will not recognize it as #. It is something else, and apparently it is not the same like the cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Rob suggested, check the hex value of the character that is represented by the # sign. That will tell you what you have as the delimiter in that file and how you should define it in your program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852128#M1592100</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-05-25T18:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852129#M1592101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tamas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we check the hex value of that '#' character ?  ..plss advise me ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852129#M1592101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852130#M1592102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double-click the string containing the record from the file and you'll see the hex representation of it's value. Find out what is the hex code of the # sign.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:23:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852130#M1592102</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-05-25T18:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852131#M1592103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after double clicking the string in debugger ...it has long chain of hexadecimal .. i think 7F00 is hex value for '#' ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there anyway to check the correct hex value ...because the record is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10#20110523#2000149204#05#2011#DZ#4147463000606166##&lt;/P&gt;&lt;P&gt;310030007F00320030003100310030003500320033007F003200300030003000310034003900320030003 - hex value...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks &lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852131#M1592103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852132#M1592104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI tamas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it is 7F00 hex value for '#'  ..now how we can get the delimiter value of 7F00 ..? pls advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852132#M1592104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852133#M1592105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this should do the trick:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA delimiter(2) TYPE X VALUE '7F00'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852133#M1592105</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-05-25T18:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852134#M1592106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tamas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for replies..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but we cant use the type X for split command...as it supports only char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 18:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852134#M1592106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T18:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852135#M1592107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;am trying the following code but am getting syntax error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: delim type x value '7F00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split lstring at delim into v1 v2....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls advise me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 19:23:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852135#M1592107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T19:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852136#M1592108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lc_file(4) TYPE c,&lt;/P&gt;&lt;P&gt;        data(100)  TYPE c,&lt;/P&gt;&lt;P&gt;        f_file     TYPE string,&lt;/P&gt;&lt;P&gt;        lv_num     TYPE i,&lt;/P&gt;&lt;P&gt;        c_d        TYPE c,&lt;/P&gt;&lt;P&gt;        x          TYPE i,&lt;/P&gt;&lt;P&gt;        y          TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONSTANTS: c_x TYPE c     VALUE '#',&lt;/P&gt;&lt;P&gt;             c_v TYPE char4 VALUE '.TXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR gv_flag.&lt;/P&gt;&lt;P&gt;  x = STRLEN( p_file ).&lt;/P&gt;&lt;P&gt;  y = x - 4.&lt;/P&gt;&lt;P&gt;  lc_file = p_file+y(4).&lt;/P&gt;&lt;P&gt;  TRANSLATE lc_file TO UPPER CASE.&lt;/P&gt;&lt;P&gt;  IF lc_file &amp;lt;&amp;gt; c_v.&lt;/P&gt;&lt;P&gt;    MESSAGE 'No existe el archivo en el servidor' TYPE 'I'.&lt;/P&gt;&lt;P&gt;    gv_flag = 'X'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gv_flag IS INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT WITH SMART LINEFEED.  DEVK921912&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    OPEN DATASET p_file for output in legacy text mode code page '1100'.      " DEVK921912&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      DO.&lt;/P&gt;&lt;P&gt;        READ DATASET p_file INTO data.&lt;/P&gt;&lt;P&gt;        IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;          EXIT.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          lv_num = 0.&lt;/P&gt;&lt;P&gt;          DO 18 TIMES.&lt;/P&gt;&lt;P&gt;            c_d = data+lv_num(1).&lt;/P&gt;&lt;P&gt;            IF c_d = c_x.&lt;/P&gt;&lt;P&gt;              EXIT.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;            lv_num = lv_num + 1.&lt;/P&gt;&lt;P&gt;          ENDDO.&lt;/P&gt;&lt;P&gt;          gst_carga-matnr = data(lv_num).&lt;/P&gt;&lt;P&gt;          lv_num = lv_num + 1.&lt;/P&gt;&lt;P&gt;          gst_carga-maktx = data+lv_num(40).&lt;/P&gt;&lt;P&gt;          APPEND gst_carga TO gti_carga.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDDO.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET p_file.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      MESSAGE 'No existe el archivo en el servidor' TYPE 'I'.&lt;/P&gt;&lt;P&gt;      gv_flag = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The string contain '#' character, so this routine validate if the string contain character "#"  in:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF c_d = c_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, stop the "do" sentence and then get the number of characters for capture the string correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 19:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852136#M1592108</guid>
      <dc:creator>former_member235395</dc:creator>
      <dc:date>2011-05-25T19:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852137#M1592109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the hex value for '#' is 7F00 .. am using the delimiter value of 7F00 in split command but still am getting the same error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls. advise..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 03:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852137#M1592109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T03:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: problem in recognizing '#" in while reading from appl.server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852138#M1592110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A workaround:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: gc_tab type char value VALUE '@'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;1) Open your input file in notepad.&lt;/P&gt;&lt;P&gt;2) Select and copy the unprintable character to your clipboard.&lt;/P&gt;&lt;P&gt;3) Paste that value into the '@' in the data declaration above.&lt;/P&gt;&lt;P&gt;4) I'm sure there's a better way &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 18:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-recognizing-quot-in-while-reading-from-appl-server/m-p/7852138#M1592110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T18:26:39Z</dc:date>
    </item>
  </channel>
</rss>

