<?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: flat structure having internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940911#M1334549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Make use of field symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a new field-symbol of type LIKP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : &amp;lt;fs&amp;gt; type standard table of likp.&lt;/P&gt;&lt;P&gt;data: &amp;lt;fs_wa&amp;gt; type likp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign data-tab_likp to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;if &amp;lt;fs&amp;gt; is assigned.&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;fs&amp;gt; into &amp;lt;FS_WA&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jul 2009 06:31:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-13T06:31:25Z</dc:date>
    <item>
      <title>flat structure having internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940910#M1334548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have following structure in standard function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of data,&lt;/P&gt;&lt;P&gt;          tab_likp        LIKE   likp   OCCURS 0,&lt;/P&gt;&lt;P&gt;          end of data.&lt;/P&gt;&lt;P&gt;i'm getting data from type groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want single field -vbeln in my user exit. how can i fetch this?????????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because data having tab_like and this tab_likp having vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 04:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940910#M1334548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T04:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: flat structure having internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940911#M1334549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Make use of field symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a new field-symbol of type LIKP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : &amp;lt;fs&amp;gt; type standard table of likp.&lt;/P&gt;&lt;P&gt;data: &amp;lt;fs_wa&amp;gt; type likp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign data-tab_likp to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;if &amp;lt;fs&amp;gt; is assigned.&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;fs&amp;gt; into &amp;lt;FS_WA&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 06:31:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940911#M1334549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T06:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: flat structure having internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940912#M1334550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are getting a structure... you can use ur_vbeln = data-tab_likp-vbeln.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 06:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940912#M1334550</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-07-13T06:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: flat structure having internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940913#M1334551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i solved it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 08:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flat-structure-having-internal-table/m-p/5940913#M1334551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T08:57:12Z</dc:date>
    </item>
  </channel>
</rss>

