<?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: Help needed to write a dialog program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290309#M1389752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's easy:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI you have do an insert into a database table, following the steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.on PAI  create a module: for exemple Zwrite_table.&lt;/P&gt;&lt;P&gt;2. inside Zwrite_table code as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move var1 to wa_table-var1.&lt;/P&gt;&lt;P&gt;move var2 to wa_table-var2.&lt;/P&gt;&lt;P&gt;move var3 to wa_table-var3. etc etc&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;insert table ztable from wa_table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.s. ztable is a database table.&lt;/P&gt;&lt;P&gt;wa_table is a structure that have the same structure of ztable.&lt;/P&gt;&lt;P&gt;var1 var2 var3 etc is a variable inside your dynpro.&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;Roberto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Oct 2009 13:20:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-28T13:20:36Z</dc:date>
    <item>
      <title>Help needed to write a dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290307#M1389750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ABAP Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very much new to ABAP Programming.&lt;/P&gt;&lt;P&gt;Can anybody help me to write a simple Dialog Program ??&lt;/P&gt;&lt;P&gt;I have a database table. &lt;/P&gt;&lt;P&gt;I have created a screen with screen painter, and kept some input fields &amp;amp; a push button in it.&lt;/P&gt;&lt;P&gt;I want to fill the database table with the data entered into the fields on the screen.&lt;/P&gt;&lt;P&gt;When the user enters the data and  presses  the PUSH BUTTON then that data record should be stored into the Database table.&lt;/P&gt;&lt;P&gt;So what kinda code I have to write in PAI (Process After Input),  to achieve this functionality ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The help will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ravi Kiran on Oct 28, 2009 2:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 13:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290307#M1389750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T13:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed to write a dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290308#M1389751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please SEARCH in SCN before posting. You will find lots of threads with examples and explanations for the same basic requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 13:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290308#M1389751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T13:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed to write a dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290309#M1389752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's easy:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI you have do an insert into a database table, following the steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.on PAI  create a module: for exemple Zwrite_table.&lt;/P&gt;&lt;P&gt;2. inside Zwrite_table code as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move var1 to wa_table-var1.&lt;/P&gt;&lt;P&gt;move var2 to wa_table-var2.&lt;/P&gt;&lt;P&gt;move var3 to wa_table-var3. etc etc&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;insert table ztable from wa_table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.s. ztable is a database table.&lt;/P&gt;&lt;P&gt;wa_table is a structure that have the same structure of ztable.&lt;/P&gt;&lt;P&gt;var1 var2 var3 etc is a variable inside your dynpro.&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;Roberto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 13:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-to-write-a-dialog-program/m-p/6290309#M1389752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T13:20:36Z</dc:date>
    </item>
  </channel>
</rss>

