<?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: Modify dynamic internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366436#M181167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can put a check depending on your condition you can pass the table parameters to the FM..Ex:-If condition1 is true.  Perform gui_upload tables ITAB1.elseif condition2 is true.  Perform gui_upload tables ITAB2.endif.Form gui_upload tables ITAB structure ....CALL FUNCTION 'GUI_UPLOAD'  EXPORTING    FILENAME                      = LDF_FILENAME3   FILETYPE                       = LDF_TYPE1   HAS_FIELD_SEPARATOR            = 'X'  TABLES    DATA_TAB                      = ITAB EXCEPTIONS   FILE_OPEN_ERROR               = 1   FILE_READ_ERROR               = 2   NO_BATCH                      = 3   GUI_REFUSE_FILETRANSFER       = 4   INVALID_TYPE                  = 5   NO_AUTHORITY                  = 6   UNKNOWN_ERROR                 = 7   BAD_DATA_FORMAT               = 8   HEADER_NOT_ALLOWED            = 9   SEPARATOR_NOT_ALLOWED         = 10   HEADER_TOO_LONG               = 11   UNKNOWN_DP_ERROR              = 12   ACCESS_DENIED                 = 13   DP_OUT_OF_MEMORY              = 14   DISK_FULL                     = 15   DP_TIMEOUT                    = 16   OTHERS                        = 17          .  IF SY-SUBRC &amp;lt;&amp;gt; 0.    MESSAGE E506 WITH 'UPLOAD' 'SY-SUBRC=' SY-SUBRC SPACE.  ENDIF.Endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 May 2006 07:37:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-16T07:37:07Z</dc:date>
    <item>
      <title>Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366433#M181164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could we modify dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Raut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2006 07:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366433#M181164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-16T07:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366434#M181165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go through this link...&lt;/P&gt;&lt;P&gt;&lt;A href="http://72.14.203.104/search?q=cache:PW0nTfKGW78J:www.sap-img.com/ab030.htm" target="test_blank"&gt;http://72.14.203.104/search?q=cache:PW0nTfKGW78J:www.sap-img.com/ab030.htm&lt;/A&gt;&lt;EM&gt;DYNAMIC&lt;/EM&gt;INTERNAL&lt;EM&gt;TABLE&lt;/EM&gt;ABAP+&amp;amp;hl=en&amp;amp;gl=in&amp;amp;ct=clnk&amp;amp;cd=1&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/z53.htm" target="test_blank"&gt;http://www.kabai.com/abaps/z53.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2006 07:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366434#M181165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-16T07:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366435#M181166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data index type i.&lt;/P&gt;&lt;P&gt;loop at it_ztable into wl_ztable.&lt;/P&gt;&lt;P&gt;index = sy-tabix + 9.&lt;/P&gt;&lt;P&gt;read line index field value wl_ztable-matnr into w_matnr.&lt;/P&gt;&lt;P&gt;modify it_ztable from wl_ztable.&lt;/P&gt;&lt;P&gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;instead of using &amp;lt;b&amp;gt;sy-tabix&amp;lt;/b&amp;gt; we can use &amp;lt;b&amp;gt;sy-index&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;also go thru this demo program..this will solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_LIST_READ_LINE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2006 07:35:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366435#M181166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-16T07:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366436#M181167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can put a check depending on your condition you can pass the table parameters to the FM..Ex:-If condition1 is true.  Perform gui_upload tables ITAB1.elseif condition2 is true.  Perform gui_upload tables ITAB2.endif.Form gui_upload tables ITAB structure ....CALL FUNCTION 'GUI_UPLOAD'  EXPORTING    FILENAME                      = LDF_FILENAME3   FILETYPE                       = LDF_TYPE1   HAS_FIELD_SEPARATOR            = 'X'  TABLES    DATA_TAB                      = ITAB EXCEPTIONS   FILE_OPEN_ERROR               = 1   FILE_READ_ERROR               = 2   NO_BATCH                      = 3   GUI_REFUSE_FILETRANSFER       = 4   INVALID_TYPE                  = 5   NO_AUTHORITY                  = 6   UNKNOWN_ERROR                 = 7   BAD_DATA_FORMAT               = 8   HEADER_NOT_ALLOWED            = 9   SEPARATOR_NOT_ALLOWED         = 10   HEADER_TOO_LONG               = 11   UNKNOWN_DP_ERROR              = 12   ACCESS_DENIED                 = 13   DP_OUT_OF_MEMORY              = 14   DISK_FULL                     = 15   DP_TIMEOUT                    = 16   OTHERS                        = 17          .  IF SY-SUBRC &amp;lt;&amp;gt; 0.    MESSAGE E506 WITH 'UPLOAD' 'SY-SUBRC=' SY-SUBRC SPACE.  ENDIF.Endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2006 07:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366436#M181167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-16T07:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366437#M181168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;How could we modify dynamic internal table.&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you mean modifying the entries (records) in the dynamic internal table or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the dynamic internal table definition itself?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2006 07:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366437#M181168</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-05-16T07:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Modify dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366438#M181169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi amit&lt;/P&gt;&lt;P&gt;i would like to know whether you found out the answer to your question.&lt;/P&gt;&lt;P&gt;my problem is to read a dynamic table by some index - its a double-click event...&lt;/P&gt;&lt;P&gt;toda raba&lt;/P&gt;&lt;P&gt;eyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 10:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dynamic-internal-table/m-p/1366438#M181169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T10:05:29Z</dc:date>
    </item>
  </channel>
</rss>

