<?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: Internal table fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302054#M503194</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;naren,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its is not recognising it as field if i use &lt;/P&gt;&lt;P&gt;assign component (v_variable) of structure i0008 to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;tell me watelse i can do. &lt;/P&gt;&lt;P&gt;what is the significance of module 'GET_COMPONENT_LIST'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 05:59:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T05:59:56Z</dc:date>
    <item>
      <title>Internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302050#M503190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i take my internal table names as variable.&lt;/P&gt;&lt;P&gt;i have a scenario like i have a internal table of type pa0008 say i0008. now i m applying a do loop on p0008 getting all wages for a partcular person. now i want to enter the ammount corresponding to all wage types in i0008. i want to do it in loop. like if the amount is coming from beto1 then it shoul go in i0008-bet01 if it is coming from bet02 then it shuld go into i0008-bet02 like wise for all. m using a 'MOVE' statment for transferring in i0008. now i want to take fields of i0008 in a variable like if loop index is 1 then field shud be bet01, if index 2 field shud be bet02 like wise.can i get name of field of internal table at run time in variable and use it for transferring data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:29:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302050#M503190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302051#M503191</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;Try this..using ASSIGN COMPONENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the function module GET_COMPONENT_LIST to get the fieldnames of the internal table...And then store it in the internal table ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBLE TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_NUMC(2) TYPE N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO sy-tfill TIMES.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  V_NUMC = SY-INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'BET' V_NUMC TO V_VARIABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT (V_VARIABLE) OF STRUCTURE I0008 TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302051#M503191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302052#M503192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried it, but it is not accepting v_variable.&lt;/P&gt;&lt;P&gt;it says, field v_variable is unknown. i declared it as &lt;/P&gt;&lt;P&gt;data: v_variable(8)  type c.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302052#M503192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302053#M503193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this &lt;/P&gt;&lt;P&gt;just     v_variable(8) is enough &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by default dat type will be character in abap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302053#M503193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302054#M503194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;naren,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its is not recognising it as field if i use &lt;/P&gt;&lt;P&gt;assign component (v_variable) of structure i0008 to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;tell me watelse i can do. &lt;/P&gt;&lt;P&gt;what is the significance of module 'GET_COMPONENT_LIST'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-fields/m-p/2302054#M503194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:59:56Z</dc:date>
    </item>
  </channel>
</rss>

