<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623161#M278641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill the data to &amp;lt;workarea&amp;gt; from the screen fields.&lt;/P&gt;&lt;P&gt;and then use the INSERT command to update the database table from the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Oct 2006 13:15:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-03T13:15:30Z</dc:date>
    <item>
      <title>Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623156#M278636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created to text box ie empno &amp;amp; empname and also i have created a table zemp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when i click the save button it has to go &amp;amp; update in the zemp table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the click of save what is the code i have to write.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Alfred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 12:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623156#M278636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T12:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623157#M278637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just Assign the values to the Z Table field as ZTEMP-EMPNO = emp no from the screen&lt;/P&gt;&lt;P&gt;EMPNAME = from screen at the FORM INPUT UNDER THE OK_CODE for SAVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY ZTEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vara Prasad Kunathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623157#M278637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623158#M278638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi on click on save button write the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When'SAVE'.&lt;/P&gt;&lt;P&gt;insert values of &amp;lt;itab&amp;gt; into zemp.  "for insertingrecords&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update zemp from itab               "for update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the proper syntax and what fileds u want to update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manas Ranjan panda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623158#M278638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623159#M278639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really depends on how your program is written and what the fields are that you are updating.  Assuming that there is no relationship between your screen fields and the fields of your db, then I would suggest something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: wa_zemp type zemp.

wa_zemp-empno = empno.
wa_zemp-empname = empname.
insert zemp from wa_zemp.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&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, 03 Oct 2006 13:03:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623159#M278639</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-03T13:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623160#M278640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alfred,&lt;/P&gt;&lt;P&gt;  Instead of text box, you can have normal input fields on your screens.&lt;/P&gt;&lt;P&gt;in your pai section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module user_command.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;zemp-empno = v_empno.&lt;/P&gt;&lt;P&gt;zemp-empname = V_emp_name.&lt;/P&gt;&lt;P&gt;modify zemp.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623160#M278640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623161#M278641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill the data to &amp;lt;workarea&amp;gt; from the screen fields.&lt;/P&gt;&lt;P&gt;and then use the INSERT command to update the database table from the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623161#M278641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623162#M278642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;iit gives the error message as Field "V_EMPNO" is unknown. It is neither in one of the specified&lt;/P&gt;&lt;P&gt;tables nor defined by a "DATA" statement. "DATA" statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the text box i have given the name as v_empno only &lt;/P&gt;&lt;P&gt;but still then it gives the error message , where would i have gone wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;alfred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623162#M278642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623163#M278643</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;Along with the text field on the screen, you also need to declare a variable in module pool program like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_empno type zemp-empno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 13:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1623163#M278643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T13:32:36Z</dc:date>
    </item>
  </channel>
</rss>

