<?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 question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437892#M208580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Rich-&lt;/P&gt;&lt;P&gt;Are there any documents that you know which i can use to learn about ABAP i.e. internal tables,sql etc.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jul 2006 16:59:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-11T16:59:42Z</dc:date>
    <item>
      <title>Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437890#M208578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everybody-&lt;/P&gt;&lt;P&gt;I am very new to SAP and i have question regarding internal tables. I have struture called "ZMI_VENDOR_TO_BW_GENERIC_V_TAB" which i get from another sap system thru SAP XI. Now i need to traverse thru this structure  and add these values into custom database table. So i have declared an internal table like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data:itab_venkat type ZMI_VENDOR_TO_BW_GENERIC_V_TAB occurs 10.&lt;/P&gt;&lt;P&gt;  data vendorid type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab_venkat = Input-Generic_Vendor-Generic_Vendor_Record1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab_venkat.&lt;/P&gt;&lt;P&gt;  vendorid = itab_venkat-generic_vendor_id1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting an error saying occurs cannot be used and also getting an error at the loop statement, Can somebody please correct me, i am very new to SAP.in the loop i am getting the vendor id and then i should update the database table. &lt;/P&gt;&lt;P&gt;Please help me. &lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 16:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437890#M208578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T16:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437891#M208579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your TYPE is defined as a TABLE TYPE, then you don't need the OCCURS statement.  You code seems to be incomplete as well.  You are not selecting data anywhere and you are not updating any table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

&amp;lt;b&amp;gt;data: itab_venkat type ZMI_VENDOR_TO_BW_GENERIC_V_TAB .
data: wa_venkat like line of itab_venkat.&amp;lt;/b&amp;gt;
data vendorid type c.

itab_venkat = Input-Generic_Vendor-Generic_Vendor_Record1.

LOOP AT itab_venkat &amp;lt;b&amp;gt;into wa_venkat&amp;lt;/b&amp;gt;.
vendorid = &amp;lt;b&amp;gt;wa_venkat-generic_vendor_id1&amp;lt;/b&amp;gt;.
endloop.




&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 16:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437891#M208579</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-11T16:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437892#M208580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Rich-&lt;/P&gt;&lt;P&gt;Are there any documents that you know which i can use to learn about ABAP i.e. internal tables,sql etc.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 16:59:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437892#M208580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T16:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437893#M208581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You best FREE resouce is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 17:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437893#M208581</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-11T17:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437894#M208582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these links..&lt;/P&gt;&lt;P&gt;&lt;A href="http://cma.zdnet.com/book/abap/index.htm" target="test_blank"&gt;http://cma.zdnet.com/book/abap/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/" target="test_blank"&gt;http://www.sapdevelopment.co.uk/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/" target="test_blank"&gt;http://www.sap-img.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://juliet.stfx.ca/people/fac/infosys/abap.htm" target="test_blank"&gt;http://juliet.stfx.ca/people/fac/infosys/abap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/d6/0db357494511d182b70000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/d6/0db357494511d182b70000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm" target="test_blank"&gt;http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/example_code.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/example_code.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap-function.htm" target="test_blank"&gt;http://www.sap-img.com/abap-function.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/abap19.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/code/abap19.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm" target="test_blank"&gt;http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Tips_and_Tricks.htm" target="test_blank"&gt;http://www.planetsap.com/Tips_and_Tricks.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/ru/d6/0dc169494511d182b70000e829fbfe/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/ru/d6/0dc169494511d182b70000e829fbfe/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapexamples/SapScript/symbols.htm" target="test_blank"&gt;http://www.henrikfrank.dk/abapexamples/SapScript/symbols.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapexamples/index.html" target="test_blank"&gt;http://www.henrikfrank.dk/abapexamples/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/documents/document.asp?i=752" target="test_blank"&gt;http://sap.ittoolbox.com/documents/document.asp?i=752&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://members.aol.com/_ht_a/skarkada/sap/" target="test_blank"&gt;http://members.aol.com/_ht_a/skarkada/sap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sappoint.com/abap/" target="test_blank"&gt;http://sappoint.com/abap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://members.tripod.com/abap4/SAP_Functions.html" target="test_blank"&gt;http://members.tripod.com/abap4/SAP_Functions.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://members.ozemail.com.au/~anmari/sap/index.html" target="test_blank"&gt;http://members.ozemail.com.au/~anmari/sap/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Userexit_List.htm" target="test_blank"&gt;http://www.planetsap.com/Userexit_List.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Tips_and_Tricks.htm" target="test_blank"&gt;http://www.planetsap.com/Tips_and_Tricks.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/q.htm" target="test_blank"&gt;http://www.kabai.com/abaps/q.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Userexit_List.htm" target="test_blank"&gt;http://www.planetsap.com/Userexit_List.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_bw21c/helpdata/en/c4/3a8090505211d189550000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_bw21c/helpdata/en/c4/3a8090505211d189550000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/bapi/example.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/bapi/example.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/65/897415dc4ad111950d0060b03c6b76/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/65/897415dc4ad111950d0060b03c6b76/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/index.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/fc/eb2c46358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/fc/eb2c46358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/aa/aeb23789e95378e10000009b38f8cf/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/aa/aeb23789e95378e10000009b38f8cf/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/ResearchTriangle/1635/system.html" target="test_blank"&gt;http://www.geocities.com/ResearchTriangle/1635/system.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm" target="test_blank"&gt;http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/sapfans/repos/saprep.htm" target="test_blank"&gt;http://www.sapfans.com/sapfans/repos/saprep.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/howdo_a.htm" target="test_blank"&gt;http://www.planetsap.com/howdo_a.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms_detail.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms_detail.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap.htm" target="test_blank"&gt;http://www.sap-img.com/abap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/victorav15/sapr3/abap.html" target="test_blank"&gt;http://www.geocities.com/victorav15/sapr3/abap.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm" target="test_blank"&gt;http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/Other_Useful_Tips.html" target="test_blank"&gt;http://abap4.tripod.com/Other_Useful_Tips.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapmm.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapmm.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/nav/t.asp?t=303&amp;amp;p=448&amp;amp;h1=303&amp;amp;h2=322&amp;amp;h3=448" target="test_blank"&gt;http://sap.ittoolbox.com/nav/t.asp?t=303&amp;amp;p=448&amp;amp;h1=303&amp;amp;h2=322&amp;amp;h3=448&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapfans.com/" target="test_blank"&gt;http://sapfans.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://cma.zdnet.com/book/abap/ch03/ch03.htm" target="test_blank"&gt;http://cma.zdnet.com/book/abap/ch03/ch03.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sappoint.com/abap/" target="test_blank"&gt;http://sappoint.com/abap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapuk.html" target="test_blank"&gt;http://www.henrikfrank.dk/abapuk.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap.htm" target="test_blank"&gt;http://www.sap-img.com/abap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/tips/tipshome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/tips/tipshome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/nav/t.asp?t=322&amp;amp;p=322&amp;amp;h1=322" target="test_blank"&gt;http://sap.ittoolbox.com/nav/t.asp?t=322&amp;amp;p=322&amp;amp;h1=322&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/nav/t.asp?t=448&amp;amp;p=448&amp;amp;h1=448" target="test_blank"&gt;http://sap.ittoolbox.com/nav/t.asp?t=448&amp;amp;p=448&amp;amp;h1=448&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/" target="test_blank"&gt;http://www.thespot4sap.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/q.htm" target="test_blank"&gt;http://www.kabai.com/abaps/q.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/mpioud/Abap_programs.html" target="test_blank"&gt;http://www.geocities.com/mpioud/Abap_programs.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/tips_and_tricks.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/tips_and_tricks.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapassist.com/code/d.asp?whichpage=1&amp;amp;pagesize=10&amp;amp;i=10&amp;amp;a=c&amp;amp;o=&amp;amp;t=&amp;amp;q=&amp;amp;qt=" target="test_blank"&gt;http://www.sapassist.com/code/d.asp?whichpage=1&amp;amp;pagesize=10&amp;amp;i=10&amp;amp;a=c&amp;amp;o=&amp;amp;t=&amp;amp;q=&amp;amp;qt=&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For FAQ&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm" target="test_blank"&gt;http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/faq/abap.htm" target="test_blank"&gt;http://www.sapgenie.com/faq/abap.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 17:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437894#M208582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T17:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437895#M208583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi venkat,&lt;/P&gt;&lt;P&gt;do this way:&lt;/P&gt;&lt;P&gt;data:itab_venkat type table of ZMI_VENDOR_TO_BW_GENERIC_V_TAB .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to update database table use:&lt;/P&gt;&lt;P&gt;insert dbtable from it_table.&lt;/P&gt;&lt;P&gt;hope this helps u .&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 18:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437895#M208583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T18:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437896#M208584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the code i have written. The screen shot of the structure that i have in proxy is .&amp;lt;a href="http://venkat.healthyplace2.com/"&amp;gt;Structure Screen Shot&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;The code i have written is..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method ZII_MI_VENDOR_TO_BW~EXECUTE_ASYNCHRONOUS.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;**** INSERT IMPLEMENTATION HERE **** ***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*tables zmdm_vendor.&amp;lt;b&amp;gt;I am getting an error here that i cannot use tables statement in a method&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  data: itab_venkat type ZMI_VENDOR_TO_BW_GENERIC_V_TAB.&lt;/P&gt;&lt;P&gt;  data: wa_venkat like line of itab_venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab_venkat = Input-Generic_Vendor-Generic_Vendor_Record1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Delete all existing records in the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; delete zmdm_vendor.&amp;lt;b&amp;gt;I am getting an error that i cannot delete,what is the correct way to do?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now loop thru all the records of the inbound record and insert into *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab_venkat into wa_venkat.&lt;/P&gt;&lt;P&gt;    zmdm_vendor-vendorid = wa_venkat-generic_vendor_id1.&lt;/P&gt;&lt;P&gt;    zmdm_vendor_groupid = wa_venkat-group_id1.&lt;/P&gt;&lt;P&gt;    zmdm_vendor_country =  wa_venkat-country1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    modify zmdm_vendor.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmethod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone correct my code and help me.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 03:25:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437896#M208584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T03:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437897#M208585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This sounds like a INBOUND PROXY from XI, in which the parameters will be in the form of nested internal tables. So, you need to be careful while extracting data form the nested internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Deleting the data, try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM ZMDM_VENDOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 03:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437897#M208585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T03:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437898#M208586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;data wa_zmdm_vendor type zmdm_vendor.&lt;/P&gt;&lt;P&gt;LOOP AT itab_venkat into wa_venkat.&lt;/P&gt;&lt;P&gt;wa_zmdm_vendor-vendorid = wa_venkat-generic_vendor_id1.&lt;/P&gt;&lt;P&gt;wa_zmdm_vendor_groupid = wa_venkat-group_id1.&lt;/P&gt;&lt;P&gt;wa_zmdm_vendor_country = wa_venkat-country1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify zmdm_vendor from wa_zmdm_vendor.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. for the delete:&lt;/P&gt;&lt;P&gt;delete from zmdm_vendor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 03:37:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-question/m-p/1437898#M208586</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-07-13T03:37:22Z</dc:date>
    </item>
  </channel>
</rss>

