<?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 with data in debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810799#M1468919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Vikranth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to check that in debugging..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i double click on # in the debugging, iam getting field cannot be copied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i check it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Mar 2010 10:30:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-31T10:30:28Z</dc:date>
    <item>
      <title>problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810791#M1468911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a file text file in one of my directory in application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now iam using dataset concept and reading the data and appending into another internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam facing a  problem here. i have the data in text file in the directory and the data is as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 

10000#ABCD#40000#1234#

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie : the data is seperated by # &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but iam facing aproblem here if there is any field empty in between then it is displaying it as #&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example if i take the same above record&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 

10000#ABCD###1234#  

but it should be in the below format if any field is empty in between it show display space

10000#ABCD# #1234# 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually iam split at # and taking those into different fields and appedning those into another internal table. when i get a # for empty space the data is not populating correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 15:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810791#M1468911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-30T15:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810792#M1468912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why can't you replace all # with Space using &lt;STRONG&gt;replace for all occurances of&lt;/STRONG&gt;  statment and then split record at Space using &lt;STRONG&gt;Split&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope above will solve the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 16:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810792#M1468912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-30T16:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810793#M1468913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you have a tab-delimited file coming in...have you checked to see if the '#' or hex 09 (tab)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 16:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810793#M1468913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-30T16:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810794#M1468914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;short dumep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is # how can i correct this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 17:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810794#M1468914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-30T17:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810795#M1468915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you know it is # character &amp;amp; not tabs ? If you see the # in AL11, it is because of some garbage character which SAP cannot display. So it displays  the replacement character # instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try downloading the file to presentation server &amp;amp; check the structure of the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 17:07:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810795#M1468915</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-30T17:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810796#M1468916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program declare one char 1 variable with value normal #. Then in debugg mode check the hexadecimal value of the normal one and the another #, coming from application server file. If these are defferent then these not a normal #.&lt;/P&gt;&lt;P&gt;Similarly you can check that this # is tab or not. Check hexadecimal value of CL_ABAP_CHAR_UTILITY=&amp;gt;HORIZONTAL_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any thing didnot match you can get unicode char from the hexadecimal value of special char using the method&lt;/P&gt;&lt;P&gt;CL_ABAB_COND_IN_CE=&amp;gt;CUPP. Here you need to pass the hex value. It will return the unicode char.&lt;/P&gt;&lt;P&gt;After that splitt at these char(may be normal #, tab , or the special char coming from method CL_ABAB_COND_IN_CE=&amp;gt;CUPP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Subhankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 19:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810796#M1468916</guid>
      <dc:creator>Subhankar</dc:creator>
      <dc:date>2010-03-30T19:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810797#M1468917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi subhankar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me how to use CL_ABAB_COND_IN_CE=&amp;gt;CUPP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 09:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810797#M1468917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T09:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810798#M1468918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you really check the hexadecimal value of the # in the debugging? If you dint yet, do it and let us know that it is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 10:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810798#M1468918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T10:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810799#M1468919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Vikranth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to check that in debugging..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i double click on # in the debugging, iam getting field cannot be copied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i check it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 10:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810799#M1468919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T10:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810800#M1468920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare a variable of type string and do READ DATASET to capture the file content in the string. Now identify the hexadecimal value of the # by checking the value of whole string or a easy is as suggested by suhas, use CG3Y to download the particular application server file into text file and check what the # refers to either horizontal tab or space or anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 10:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810800#M1468920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T10:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: problem with data in debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810801#M1468921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i download it to presentation server # is representing it as space..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 10:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-data-in-debugging/m-p/6810801#M1468921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T10:48:50Z</dc:date>
    </item>
  </channel>
</rss>

