<?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: simple program to the gurus. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432056#M543765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the generic program for ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_table like dd02l-tabname.&lt;/P&gt;&lt;P&gt;Field-symbols : &amp;lt;fs_tab&amp;gt; type table, &amp;lt;wa&amp;gt; type any.&lt;/P&gt;&lt;P&gt;DATA : v_ref type ref to data, v_ref2 type ref to dat, str type sting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create data v_ref type table of ( p_table ).&lt;/P&gt;&lt;P&gt;Assign v_ref-&amp;gt;* &amp;lt;fs_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create data v_ref2 type  ( p_table ).&lt;/P&gt;&lt;P&gt;Assign v_ref2-&amp;gt;* &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * into &amp;lt;fs_tab&amp;gt; from ( p_table ) up to 10 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at &amp;lt;fs_tab&amp;gt; into &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;wa&amp;gt; to str.&lt;/P&gt;&lt;P&gt;Write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; str.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the syntax &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if its useful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Jun 2007 07:52:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-23T07:52:58Z</dc:date>
    <item>
      <title>simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432055#M543764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello sap gurus,&lt;/P&gt;&lt;P&gt;   i am a beginner in sap and still trying to get a hang of all the syntax..&lt;/P&gt;&lt;P&gt;i am trying to write a program which would display first 10 rows of any table choosen by the user at selection screen.selection screen will have a parameter field to contain name of database table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 07:39:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432055#M543764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T07:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432056#M543765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the generic program for ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_table like dd02l-tabname.&lt;/P&gt;&lt;P&gt;Field-symbols : &amp;lt;fs_tab&amp;gt; type table, &amp;lt;wa&amp;gt; type any.&lt;/P&gt;&lt;P&gt;DATA : v_ref type ref to data, v_ref2 type ref to dat, str type sting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create data v_ref type table of ( p_table ).&lt;/P&gt;&lt;P&gt;Assign v_ref-&amp;gt;* &amp;lt;fs_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create data v_ref2 type  ( p_table ).&lt;/P&gt;&lt;P&gt;Assign v_ref2-&amp;gt;* &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * into &amp;lt;fs_tab&amp;gt; from ( p_table ) up to 10 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at &amp;lt;fs_tab&amp;gt; into &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;wa&amp;gt; to str.&lt;/P&gt;&lt;P&gt;Write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; str.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the syntax &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if its useful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 07:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432056#M543765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T07:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432057#M543766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see this blog by rich heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/rich.heilman2/blog/2005/07/27/dynamic-internal-tables-and-structures--abap:///people/rich.heilman2/blog/2005/07/27/dynamic-internal-tables-and-structures--abap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 07:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432057#M543766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T07:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432058#M543767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai aarun,&lt;/P&gt;&lt;P&gt;     i tried with your code...no it doesnt help..i think there is type conflict when u r assaigning the  parameter the  field symbol of type table .&lt;/P&gt;&lt;P&gt;  pls let me know if i am wrong..&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 08:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432058#M543767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T08:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432059#M543768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sheeba thanks so much..i am trying to follow the code in the blog...looks like i have to make some minor changes for getting values of any table(eg mara)..&lt;/P&gt;&lt;P&gt;anyway thanks a ton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 08:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432059#M543768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T08:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: simple program to the gurus.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432060#M543769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just look at the blog by Rich,  suggested by Shiba. it will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2007 08:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-program-to-the-gurus/m-p/2432060#M543769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-23T08:53:17Z</dc:date>
    </item>
  </channel>
</rss>

