<?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: Function &amp;quot;Lines(IT)&amp;quot; can pass value to internal table? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448387#M1847252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;The only possible way this would be syntactically valid is if g_kfgr_cnt is defined:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA; g_kfgr_cnt TYPE i OCCURS 0. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I.e. an internal table of integers (or some other numeric type), with a header line. In this day and age, to use such a construct would imply that your senior is in fact a dinosaur, using ABAP techniques of over 15 years ago. And with terrible variable naming habits...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The equivalent in modern coding would be something like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA bunch_of_integers TYPE STANDARD TABLE OF i WITH NON-UNIQUE KEY table_line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA an_integer TYPE i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;an_integer = LINES( bunch_of_integers ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA another_integer TYPE i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;another_integer = an_integer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ADD 1 TO an_integer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At no point is the table in the above example (or in your original) modified in any way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So your questions doesn't really make any sense. Why not ask your senior?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 Jun 2014 14:52:43 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2014-06-22T14:52:43Z</dc:date>
    <item>
      <title>Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448381#M1847246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i wonder is it possible to pass value back to its internal table after using function lines?&lt;/P&gt;&lt;P&gt;All i know is that after using using lines, you have to pass value to integer variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The codes below is the example that my senior use to pass value back to its own:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_kfgr_cnt&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;SPAN class="L0S52"&gt;LINES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;g_kfgr_cnt &lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt; g_kfgr_act_cnt &lt;SPAN class="L0S55"&gt;= g_kfgr_cnt&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;g_kfgr_cnt&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;g_kfgr_cnt + &lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;I do not know which exact table my senior used, but its purpose is to count the number of key figure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 03:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448381#M1847246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-20T03:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448382#M1847247</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;g_kfgr_cnt&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;SPAN class="L0S52"&gt;LINES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;g_kfgr_cnt &lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S55"&gt;g_kfgr_cnt&amp;nbsp; must be an internal table,&amp;nbsp; lines( arg ) returns the row count .&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 06:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448382#M1847247</guid>
      <dc:creator>former_member222707</dc:creator>
      <dc:date>2014-06-20T06:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448383#M1847248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINES is used for getting the ROW count of any internal table as per your code &lt;SPAN style="color: #333333; font-size: 12px;"&gt;g_kfgr_cnt &lt;/SPAN&gt; is an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please post the types declarations of &lt;SPAN style="color: #333333; font-size: 12px;"&gt;g_kfgr_cnt &lt;/SPAN&gt; and &lt;SPAN style="color: #333333; font-size: 12px;"&gt;g_kfgr_act_cnt &lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 06:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448383#M1847248</guid>
      <dc:creator>pavanm592</dc:creator>
      <dc:date>2014-06-20T06:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448384#M1847249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The declaration is what is want to know because it's my senior code and i don have a complete code.&lt;BR /&gt;The statement is very strange for passing back to its own internal table. i ask because may be some of you experts understand and tell me how to declare it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 13:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448384#M1847249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-22T13:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448385#M1847250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know, but how can it return value to its own internal table. I understand if it returns to integer variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 13:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448385#M1847250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-22T13:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448386#M1847251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only possible explanation that I can think of is that, &lt;SPAN style="color: #333333; font-size: 12px;"&gt;g_kfgr_cnt is a Table of type integer with header line.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;But it doesn't make much sense on how it is being used. We can deduce more is we could see more parts of the code.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 13:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448386#M1847251</guid>
      <dc:creator>former_member191562</dc:creator>
      <dc:date>2014-06-22T13:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448387#M1847252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;The only possible way this would be syntactically valid is if g_kfgr_cnt is defined:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA; g_kfgr_cnt TYPE i OCCURS 0. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I.e. an internal table of integers (or some other numeric type), with a header line. In this day and age, to use such a construct would imply that your senior is in fact a dinosaur, using ABAP techniques of over 15 years ago. And with terrible variable naming habits...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The equivalent in modern coding would be something like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA bunch_of_integers TYPE STANDARD TABLE OF i WITH NON-UNIQUE KEY table_line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA an_integer TYPE i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;an_integer = LINES( bunch_of_integers ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA another_integer TYPE i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;another_integer = an_integer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ADD 1 TO an_integer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At no point is the table in the above example (or in your original) modified in any way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So your questions doesn't really make any sense. Why not ask your senior?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 14:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448387#M1847252</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-06-22T14:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448388#M1847253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He just wants me to understand the codes. It's just like an exercise for me to solve.&lt;/P&gt;&lt;P&gt;This statement is really confusing that's y m asking.&lt;/P&gt;&lt;P&gt;Thanks for all the answers, everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 01:35:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448388#M1847253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T01:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448389#M1847254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi, &lt;/P&gt;&lt;P&gt;It still gives error although i declare it &lt;SPAN class="L0S52"&gt;DATA&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;g_kfgr_cnt &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;I &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OCCURS &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/481401" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 03:31:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448389#M1847254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T03:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448390#M1847255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the exercise was meant to teach you how to read keyword documentation.&lt;/P&gt;&lt;P&gt;Using forum to reach the answer kind of defeats the purpose.&lt;/P&gt;&lt;P&gt;How about this snippet?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;DATA &lt;SPAN class="L0S52"&gt;lt &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;i &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;11 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;22 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;SPAN class="L0S52"&gt;lt &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lines&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;SPAN class="L0S52"&gt;WRITE: &lt;/SPAN&gt;/ &lt;SPAN class="L0S33"&gt;'Total ', &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WRITE: &lt;/SPAN&gt;/ &lt;SPAN class="L0S33"&gt;'Line' , &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tabix, &lt;SPAN class="L0S33"&gt;': ',&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;lt.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="font-family: courier new,courier;"&gt;ENDLOOP.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 04:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448390#M1847255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T04:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448391#M1847256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To understand more i have to use the forum. Asking Qs and giving answer is one of the forum purposes.&lt;/P&gt;&lt;P&gt;The purpose of my senior is that i can find the answer and able to seek help for answers. &lt;SPAN __jive_emoticon_name="shocked" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/906/images/emoticons/shocked.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 05:01:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448391#M1847256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T05:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448392#M1847257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but this is quite basic stuff, so it's reasonable to expect you to be able to work it out. If he truly wants you to figure out how code works, why has he given you a sample of what is effectively very bad code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 06:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448392#M1847257</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-06-23T06:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448393#M1847258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a newbie in sap that's why i need to try every thing to get answer. Anyhow, still thanks for answers and advice. I am really confused right now. What exactly he, my senior, want me to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 06:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448393#M1847258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T06:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448394#M1847259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, i have checked the document and i knew it would return integer, but The confusing part is that it returns value to it's own internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 06:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448394#M1847259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-23T06:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Function "Lines(IT)" can pass value to internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448395#M1847260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The internal table is &lt;STRONG&gt;not&lt;/STRONG&gt; updated in any way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 09:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-quot-lines-it-quot-can-pass-value-to-internal-table/m-p/10448395#M1847260</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-06-23T09:33:45Z</dc:date>
    </item>
  </channel>
</rss>

