<?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: Iternal table fields in New debugger in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599084#M1084175</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either use loop at itab and then access the values of the fields or else read the table using the index keyword. You can access it using the debugger but not as an inline code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nidhi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nidhi Jain on Oct 23, 2008 12:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Oct 2008 10:31:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-23T10:31:27Z</dc:date>
    <item>
      <title>Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599081#M1084172</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;I Have two questions on New debugger..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1st:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of itab occurs 0,
      f1, f2,
      end of itab.

itab-f1 = 'f1'.
itab-f2 = '1'.
append itab.
clear itab.

itab-f1 = 'f2'.
itab-f2 = '2'.
append itab.
clear itab.

write:/ itab[1]-f1,
        itab[1]-f2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why I am getting error for this like:&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Field itab[1] is unkown....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where as we can get values and 1 for above two variables, itab[1]-f1 and itab[1]-f2....in DEBUGGING MODE.&lt;/P&gt;&lt;P&gt;Let me know the reason ?&lt;/P&gt;&lt;P&gt;What are the additional functions loading in DEBUGGER to get values for these?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2 nd:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[Aswer my Question in this thread|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1099925"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599081#M1084172</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T10:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599082#M1084173</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;Better use :  Write : / itab-f1,&lt;/P&gt;&lt;P&gt;                               itab-f2.&lt;/P&gt;&lt;P&gt;as there is no table as itab[1] declared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599082#M1084173</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2008-10-23T10:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599083#M1084174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but my quetion is not only that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Where as we can get values f1 and 1 for above two variables, itab[1]-f1 and itab[1]-f2....in DEBUGGING MODE...?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:31:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599083#M1084174</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T10:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599084#M1084175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either use loop at itab and then access the values of the fields or else read the table using the index keyword. You can access it using the debugger but not as an inline code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nidhi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nidhi Jain on Oct 23, 2008 12:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599084#M1084175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599085#M1084176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u wont get itab[1]-f1, itab[1]-f2 in debugger...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the value of itab[1]...just type itab in debugger....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599085#M1084176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599086#M1084177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi:&lt;/P&gt;&lt;P&gt;write:/ itab[1]-f1,&lt;/P&gt;&lt;P&gt;        itab[1]-f2.&lt;/P&gt;&lt;P&gt;are wrong the reason is here 1 indicates index number of the internal table.&lt;/P&gt;&lt;P&gt;if you have to display the 1st record, you can do likem&lt;/P&gt;&lt;P&gt;read itab index 1.&lt;/P&gt;&lt;P&gt;write:/ itab-f1,&lt;/P&gt;&lt;P&gt;        itab[-f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599086#M1084177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599087#M1084178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please Dont reply with out understanding my question...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody wants more clarifiaction I can explain detail....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above answers not yet meet my question.. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok.. I am agree with above answers, but my question is on Debugging yaar.&lt;/P&gt;&lt;P&gt;I am aware of these READ statements., Take your own time provide some useful information, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about my second question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599087#M1084178</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T10:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599088#M1084179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i got ur question :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What itab[1] means is the first record in the itab table in the NEW DEBUGGER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clears the confusion &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599088#M1084179</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2008-10-23T10:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599089#M1084180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As there is no table as itab[1] declared...so you are getting this type of error message....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in dwbugging mode if you type itab[1]-&amp;lt;field1&amp;gt;&lt;/P&gt;&lt;P&gt;                                             itab[1]-&amp;lt;field2&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it means that the value of the first row each field of the particular internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If you type itab[2]-&amp;lt;field1&amp;gt;&lt;/P&gt;&lt;P&gt;                  itab[2]-&amp;lt;field2&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it means that the value of the second row each field of the particular internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arunima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599089#M1084180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599090#M1084181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first understand the difference of debugging mode and your frontend. In the debuggig we can get the values of any line by declaring it in [], but in front end we cant do like that. You must be knowing that which value is coming in which line, but this value will keep on changing depending on the where condition. Even then if your requirement is to get some values in a particulr line then you can only read statement with index.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599090#M1084181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599091#M1084182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For your second question.&lt;/P&gt;&lt;P&gt;Yes in new debugger you can delete the rows from internal table...by selecting the required rows ...then right click and press delete.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:45:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599091#M1084182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599092#M1084183</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 DEBUGGIND MODE If you see the SY-TABIX it has value which means record is read. so u can see the value for [1] record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where as in inline code u will get error b'coz without reading how can you write the first record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rhea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: rhea on Oct 23, 2008 1:00 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599092#M1084183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T10:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599093#M1084184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At the risk of incurring the wrath of Inuganti...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi...&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;...&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Why I am getting error for this like:&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Field itab[1] is unkown....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Where as we can get values and 1 for above two variables, itab[1]-f1 and itab[1]-f2....in DEBUGGING MODE.&lt;/P&gt;&lt;P&gt;&amp;gt; Let me know the reason ?&lt;/P&gt;&lt;P&gt;&amp;gt; What are the additional functions loading in DEBUGGER to get values for these?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks,&lt;/P&gt;&lt;P&gt;&amp;gt; Naveen.I&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is some confusion in your post.  Now, if I create a program like yours, in SE38 and syntax check it, I get the message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The field "ITAB[1]" is unknown, but there is a field with the similar
name "ITAB". "ITAB".&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;STRONG&gt;1) Are you puzzled about that?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, now I comment out the write statements, and run the program in the (New) debugger.  When I get to Line 14, If I type ITAB[1]-F1 into the Variables list, I get the value 'f'.  ( Because you've defined the field without type, so it defaults to type c length 1 ).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) So what's the problem?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The debugger allows you record access to tables using the syntax [n].  But ABAP itself does not.  It is not part of the language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;btw - &lt;STRONG&gt;don't&lt;/STRONG&gt; use tables with header-lines .  It's ambigous and therefore &lt;STRONG&gt;bad&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599093#M1084184</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-10-23T11:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599094#M1084185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Please Dont reply with out understanding my question...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naveen i can understand your displeasure ,but please don't reply so harsh as others are trying to solve your problem it may be meet your requirement may not be,however they are atleast trying to meet your point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;but my question is on Debugging " yaar.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use professional words instead of abbreviated Hindi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry if my words are hurt you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599094#M1084185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T11:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599095#M1084186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I will try to don't repeat abbreviated Hindi in my future postings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Sorry from my side, I dont want to hurt anybody. I just want to have concept related information in this thread.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599095#M1084186</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T11:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599096#M1084187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You wrote:&lt;/P&gt;&lt;P&gt;&amp;gt; It is not part of the language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please come again on this. &lt;/P&gt;&lt;P&gt;We can clear the internal table body with empty square brackets...? &lt;/P&gt;&lt;P&gt;I am still having some confusion on this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599096#M1084187</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T11:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599097#M1084188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the ABAP language you can define a table &lt;STRONG&gt;itab&lt;/STRONG&gt; with a header line.  In those places where it's not clear whether you mean the table or its header - the two having the same name - the runtime inteprets &lt;STRONG&gt;itab&lt;/STRONG&gt; on its own as the header, and &lt;STRONG&gt;itab[]&lt;/STRONG&gt; as the body.  So: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR itab. " Clears the header line
CLEAR itab[]. " Removes all entries from the table&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because of this &lt;STRONG&gt;don't use tables with header lines&lt;/STRONG&gt;.  You should do things like &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itab TYPE STANDARD TABLE OF t000 WITH UNIQUE KEY header_line,
     wa    LIKE LINE OF t000.
...
CLEAR wa. " Clears the workarea you use instead of a header-line
CLEAR itab. " Removes all entries from the table&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In the debugger, you can look at individual lines of an internal table using the form &lt;STRONG&gt;itab[3]&lt;/STRONG&gt; to view the third line.  You &lt;STRONG&gt;can't&lt;/STRONG&gt; use this in ABAP.  You have to use &lt;STRONG&gt;READ itab INTO wa INDEX 3.&lt;/STRONG&gt; or other forms of the READ statement, or LOOP AT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599097#M1084188</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-10-23T11:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Iternal table fields in New debugger</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599098#M1084189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rhea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You wrote:&lt;/P&gt;&lt;P&gt;&amp;gt;IN DEBUGGIND MODE If you see the SY-TABIX it has value which means record is read. so u can see the value for [1] record.&lt;/P&gt;&lt;P&gt;&amp;gt;Where as in inline code u will get error b'coz without reading how can you write the first record.&lt;/P&gt;&lt;P&gt;&amp;gt;Hope it is clear .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can get last record's sy-tabix from abap coding also. Thats is only I can see in debugging mode.&lt;/P&gt;&lt;P&gt;So please come again what you wants to said..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iternal-table-fields-in-new-debugger/m-p/4599098#M1084189</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-23T11:29:21Z</dc:date>
    </item>
  </channel>
</rss>

