<?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: Interesting itab(*) syntax in a custom program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218264#M1826293</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to 7.40, this syntax is explained in &lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abentable_expressions.htm"&gt;table_exp - Table Expressions&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="h1"&gt;. (can be found from &lt;A href="http://help.sap.com/abapdocu_740/en/abennews-740.htm"&gt;c&lt;/A&gt;&lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abennews-740.htm"&gt;hanges in Release 7.40&lt;/A&gt; in &lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abennews.htm"&gt;ABAP - Release-Specific Changes.&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;Raymond&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2014 10:51:38 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2014-03-13T10:51:38Z</dc:date>
    <item>
      <title>Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218263#M1826292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hi fellow ABAP developers!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;I have just spotted a bit of ABAP in a bespoke report program that has me flumoxed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;This is it (with some anonymization);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----------------------------------------------------------------------------------------------------&amp;nbsp; &lt;/P&gt;&lt;P&gt;TYPES:&amp;nbsp;&amp;nbsp; tt_chg_ptrs_in&amp;nbsp;&amp;nbsp; TYPE STANDARD TABLE OF bdcp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tt_ztable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE SORTED TABLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OF ztable WITH UNIQUE KEY matnr. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; DATA:&amp;nbsp;&amp;nbsp; l_it_chg_ptrs_in TYPE tt_chg_ptrs_in,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; l_it_ztable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE tt_ztable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; &lt;SPAN style="color: #ff0000;"&gt;l_it_chg_ptrs_in(*) IS NOT INITIAL&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OR&amp;nbsp;&amp;nbsp; l_it_ztable[]&amp;nbsp;&amp;nbsp; IS NOT INITIAL.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;*----------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The (*) appendage appears to behave in the same way as the [] variant when refering to the complete set of itab entries. I checked this out in debug just to be certain that the &lt;STRONG&gt;l_it_chg_ptrs_in(*)&lt;/STRONG&gt; reference returned the same data as &lt;STRONG&gt;l_it_chg_ptrs_in[]&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a new (or old) lanuage element? &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Who can shed some light on this for me?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Cheers all,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 10:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218263#M1826292</guid>
      <dc:creator>mike_m1</dc:creator>
      <dc:date>2014-03-13T10:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218264#M1826293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to 7.40, this syntax is explained in &lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abentable_expressions.htm"&gt;table_exp - Table Expressions&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="h1"&gt;. (can be found from &lt;A href="http://help.sap.com/abapdocu_740/en/abennews-740.htm"&gt;c&lt;/A&gt;&lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abennews-740.htm"&gt;hanges in Release 7.40&lt;/A&gt; in &lt;SPAN class="h1"&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/abennews.htm"&gt;ABAP - Release-Specific Changes.&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="h1"&gt;Raymond&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 10:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218264#M1826293</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-03-13T10:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218265#M1826294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the speedy reply Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This client is currently on 620.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sadly, I couldn't see a reference to the itab(*) syntax in the &lt;SPAN class="h1"&gt;&lt;A class="jive-link-external-small" href="http://help.sap.com/abapdocu_740/en/abentable_expressions.htm"&gt;table_exp - Table Expressions&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="h1"&gt;&lt;/SPAN&gt; keyword documentation. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you be more specific please? Where in this document would I find the explanation you alluded to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 11:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218265#M1826294</guid>
      <dc:creator>mike_m1</dc:creator>
      <dc:date>2014-03-13T11:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218266#M1826295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I did not look carefully enough, mistake [] for ()...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this syntax I'm perplex too, seems to be allowed for structure, variable and internal tables, but not exactly (no redefinition of type) as var+0(*) or var+offset( *) if only character fields.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/409768" /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218266#M1826295</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-03-13T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218267#M1826296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No worries Raymond.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd love to hear from anyone else who knows why this (*) syntax exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218267#M1826296</guid>
      <dc:creator>mike_m1</dc:creator>
      <dc:date>2014-03-13T13:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218268#M1826297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Weird,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just checked what this syntax does in de debugger, but it seems to be exactly the same as without (*)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing this is used in other programming languages and the abap compiler just doesn't mind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 14:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218268#M1826297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-13T14:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218269#M1826298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers Rob.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 14:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218269#M1826298</guid>
      <dc:creator>mike_m1</dc:creator>
      <dc:date>2014-03-13T14:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218270#M1826299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the coffee corner to speculate on why would SAP allow this syntax?&lt;/P&gt;&lt;P&gt;There are a couple of others, you can use &amp;gt;&amp;lt; instead of &amp;lt;&amp;gt; for instance.&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, 13 Mar 2014 15:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218270#M1826299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-13T15:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218271#M1826300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe &lt;A __default_attr="3984" __jive_macro_name="user" class="jive_macro_user jive_macro" data-objecttype="3" data-orig-content="Horst Keller" href="https://community.sap.com/"&gt;&lt;/A&gt; would know, let's see if he can be paged...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 15:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218271#M1826300</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2014-03-13T15:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218272#M1826301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, well, a full text search for (*) in the ABAP documentation leads us to &lt;A href="http://help.sap.com/abapdocu_740/en/index.htm?file=abenoffset_length.htm"&gt;substring access&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;PRE&gt;&lt;CODE&gt;If &lt;SPAN class="qtext"&gt;off&lt;/SPAN&gt; is smaller than the length of &lt;SPAN class="qtext"&gt;dobj&lt;/SPAN&gt;, an asterisk (&lt;SPAN class="qtext"&gt;*&lt;/SPAN&gt;) can be &lt;BR /&gt;specified for &lt;SPAN class="qtext"&gt;len&lt;/SPAN&gt;. The upper limit of &lt;SPAN class="qtext"&gt;dobj&lt;/SPAN&gt; then determines the upper limit of the memory area. &lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And guess what, you can also write struct+0(*) or itab+0(*).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With other words, an Offset-/Length addition +0(*), +0, or (*) that denotes the full field seems to be simply ignored by the compiler. And that's why you can add it even to fields where a substring access is normally forbidden - an itab+1(*) gives a syntax error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Horst&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 17:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218272#M1826301</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2014-03-13T17:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218273#M1826302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;you can use &amp;gt;&amp;lt; instead of &amp;lt;&amp;gt; for instance&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But only outside classes&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_740/en/index.htm?file=abenobsolete_logexp_op.htm"&gt;http://help.sap.com/abapdocu_740/en/index.htm?file=abenobsolete_logexp_op.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/651/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 07:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218273#M1826302</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2014-03-14T07:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Interesting itab(*) syntax in a custom program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218274#M1826303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Horst. My curiosity is satisfied (for the moment, at least).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 08:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interesting-itab-syntax-in-a-custom-program/m-p/10218274#M1826303</guid>
      <dc:creator>mike_m1</dc:creator>
      <dc:date>2014-03-14T08:53:38Z</dc:date>
    </item>
  </channel>
</rss>

