<?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: dynamic program help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057461#M724169</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried your code and itz working 5ne...plz chk the code below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table detaisl : ztest11&lt;/P&gt;&lt;P&gt;field : abc type char -len :20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code :&lt;/P&gt;&lt;P&gt;data icounter(3) type n.&lt;/P&gt;&lt;P&gt;DATA code TYPE TABLE OF rssource-line.&lt;/P&gt;&lt;P&gt;DATA value(20) TYPE c.&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;icounter = 0.&lt;/P&gt;&lt;P&gt;do 5 times.&lt;/P&gt;&lt;P&gt;icounter = icounter + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'REPORT ZGARY_ZDYN3.' TO CODE.&lt;/P&gt;&lt;P&gt;APPEND 'tables ZTEST11.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'data icounter(3) type n.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'START-OF-SELECTION.' TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'ZTEST11-ABC = ''' icounter into value.&lt;/P&gt;&lt;P&gt;CONCATENATE value '''.' into value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND value TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'INSERT INTO ZTEST11 VALUES ZTEST11.' to code.&lt;/P&gt;&lt;P&gt;INSERT REPORT 'ZGARY_ZDYN3' FROM CODE.&lt;/P&gt;&lt;P&gt;SUBMIT ZGARY_ZDYN3 and RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear code.&lt;/P&gt;&lt;P&gt;clear value.&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;thanks&lt;/P&gt;&lt;P&gt;jaideep&lt;/P&gt;&lt;P&gt;*reward p[oints if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Nov 2007 07:54:06 GMT</pubDate>
    <dc:creator>jaideeps</dc:creator>
    <dc:date>2007-11-19T07:54:06Z</dc:date>
    <item>
      <title>dynamic program help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057457#M724165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got this dynamic program to insert to the database. however it only grab the first value and insert. All my remain value is not insert to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZGARY_MASTER1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 5 times.&lt;/P&gt;&lt;P&gt;  icounter = icounter + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'REPORT ZGARY_ZDYN3.' TO CODE.&lt;/P&gt;&lt;P&gt;APPEND 'tables ZTABLE.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'data icounter(3) type n.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'START-OF-SELECTION.' TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'ZTABLE-ADMINO = ''' icounter into value.&lt;/P&gt;&lt;P&gt;CONCATENATE value '''.' into value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND value TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'INSERT INTO ZTABLE VALUES ZTABLE.' to code.&lt;/P&gt;&lt;P&gt;INSERT REPORT 'ZGARY_ZDYN3' FROM CODE.&lt;/P&gt;&lt;P&gt;SUBMIT ZGARY_ZDYN3 and RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear code.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any great help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057457#M724165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic program help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057458#M724166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also have a look at below weblog:&lt;/P&gt;&lt;P&gt;It gives you info abt how to create dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/ravikumar.allampallam/blog/2005/05/31/expand-the-list-of-columns-in-a-report-dynamically&lt;/P&gt;&lt;P&gt;/people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table&lt;/P&gt;&lt;P&gt;/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;/people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table%3Fpage%3Dlast%26x-showcontent%3Doff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/ab030.htm" target="test_blank"&gt;http://www.sap-img.com/ab030.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;/people/rich.heilman2/blog/2005/07/27/dynamic-internal-tables-and-structures--abap&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/tip/1,289483,sid21_gci912390,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/tip/1,289483,sid21_gci912390,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if this helps.&lt;/P&gt;&lt;P&gt;Manish&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057458#M724166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic program help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057459#M724167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is not creating of dynamic table but is do with create dynamic program. i append the line to the dynamic program.... the report will have the line. Initial the report hav no line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057459#M724167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T07:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic program help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057460#M724168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After Insert , if you want to generate a report , try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INSERT   REPORT lv_reportname FROM code.&lt;/P&gt;&lt;P&gt;  GENERATE REPORT lv_reportname.&lt;/P&gt;&lt;P&gt;  COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057460#M724168</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2007-11-19T07:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic program help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057461#M724169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried your code and itz working 5ne...plz chk the code below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table detaisl : ztest11&lt;/P&gt;&lt;P&gt;field : abc type char -len :20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code :&lt;/P&gt;&lt;P&gt;data icounter(3) type n.&lt;/P&gt;&lt;P&gt;DATA code TYPE TABLE OF rssource-line.&lt;/P&gt;&lt;P&gt;DATA value(20) TYPE c.&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;icounter = 0.&lt;/P&gt;&lt;P&gt;do 5 times.&lt;/P&gt;&lt;P&gt;icounter = icounter + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'REPORT ZGARY_ZDYN3.' TO CODE.&lt;/P&gt;&lt;P&gt;APPEND 'tables ZTEST11.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'data icounter(3) type n.' to code.&lt;/P&gt;&lt;P&gt;APPEND 'START-OF-SELECTION.' TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'ZTEST11-ABC = ''' icounter into value.&lt;/P&gt;&lt;P&gt;CONCATENATE value '''.' into value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND value TO CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND 'INSERT INTO ZTEST11 VALUES ZTEST11.' to code.&lt;/P&gt;&lt;P&gt;INSERT REPORT 'ZGARY_ZDYN3' FROM CODE.&lt;/P&gt;&lt;P&gt;SUBMIT ZGARY_ZDYN3 and RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear code.&lt;/P&gt;&lt;P&gt;clear value.&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;thanks&lt;/P&gt;&lt;P&gt;jaideep&lt;/P&gt;&lt;P&gt;*reward p[oints if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 07:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-program-help/m-p/3057461#M724169</guid>
      <dc:creator>jaideeps</dc:creator>
      <dc:date>2007-11-19T07:54:06Z</dc:date>
    </item>
  </channel>
</rss>

