<?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: module pool regarding how to use insert statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832833#M921672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jan 2009 09:13:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-07T09:13:31Z</dc:date>
    <item>
      <title>module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832828#M921667</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 have a requirement like i have to create a z table and need to insert the values into the z table from my program. i have created the table but i dont know how to insert the values into table. and also the syntax for insert statement can anyone please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks  in advance.&lt;/P&gt;&lt;P&gt;anupama.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2008 12:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832828#M921667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-24T12:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832829#M921668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this short program to insert lines into your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: wa type ZTABLE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Insertion:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
wa-field1 = ...
INSERT ztable FROM wa.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Update:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
UPDATE ztable
SET field1 = 'abc'
WHERE field2 = 'X'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2008 14:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832829#M921668</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-05-24T14:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832830#M921669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anupama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following are the ways to insert the records to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO dbtab       [CLIENT SPECIFIED] VALUES wa. &lt;/P&gt;&lt;P&gt;INSERT INTO (dbtabname) [CLIENT SPECIFIED] VALUES wa. &lt;/P&gt;&lt;P&gt;- INSERT dbtab            [CLIENT SPECIFIED]. &lt;/P&gt;&lt;P&gt;INSERT *dbtab           [CLIENT SPECIFIED]. &lt;/P&gt;&lt;P&gt;INSERT (dbtabname)      [CLIENT SPECIFIED] ... . &lt;/P&gt;&lt;P&gt;- INSERT dbtab            [CLIENT SPECIFIED] FROM TABLE itab. &lt;/P&gt;&lt;P&gt;INSERT (dbtabname)      [CLIENT SPECIFIED] FROM TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Sujith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 12:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832830#M921669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T12:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832831#M921670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use these statements...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert into DBTAB  values  WORKAREA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify DBTAB from WORKAREA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update DBTAB set bedat = WORKAREA-bedat&lt;/P&gt;&lt;P&gt;                            bukrs = WORKAREA-bukrs&lt;/P&gt;&lt;P&gt;                            lifnr =  WORKAREA-lifnr&lt;/P&gt;&lt;P&gt;                            netpr = WORKAREA-netpr&lt;/P&gt;&lt;P&gt;                            waers = WORKAREA-waers&lt;/P&gt;&lt;P&gt;              WHERE ebeln = WORKAREA-ebeln.&lt;/P&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;&lt;P&gt;Reward if helpful.&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;Syed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 13:23:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832831#M921670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T13:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832832#M921671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inserts the content of a structure into an internal table.&lt;/P&gt;&lt;P&gt;In the case of a standard table, this content is appended, in a sorted table it is inserted in the right place according to the key, and in a hashed table it is inserted according to the hash algorithm.&lt;/P&gt;&lt;P&gt;Syntax: INSERT wa into table itab &amp;lt;condition&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz check this sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_ztable type ztable,&lt;/P&gt;&lt;P&gt;        wa_ztable like line of it_ztable.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill structure with values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa_ztable-field1 = ..........&lt;/P&gt;&lt;P&gt;wa_ztable-field2 = ........&lt;/P&gt;&lt;P&gt;wa_ztable-field3 = ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert wa_ztable into table it_ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:59:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832832#M921671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832833#M921672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 09:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832833#M921672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T09:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: module pool regarding how to use insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832834#M921673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the bellow statement is used to store the values in data base table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert table dbtable from WA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2009 03:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-regarding-how-to-use-insert-statement/m-p/3832834#M921673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-09T03:51:48Z</dc:date>
    </item>
  </channel>
</rss>

