<?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: Update in Dialogue programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478191#M836137</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem got solved. and more over i need some help on the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do we clear the fields when we click the insert or update buttoon in the dialogue program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2008 06:40:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-07T06:40:54Z</dc:date>
    <item>
      <title>Update in Dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478188#M836134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is how to update the fields in ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating a dailogue program to add entries to the z table. I am having more than 16 fields in that ztable. Please let me know with example on how to update all the fields  in the ztable when i ciick on the update button in the dialogue screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 10:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478188#M836134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T10:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Update in Dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478189#M836135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; You can do it in the At user command module in PAI of the screen.Ok Code can be used for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt; when 'UPDATE'&lt;/P&gt;&lt;P&gt;  -&lt;/P&gt;&lt;HR originaltext="--------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shibin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Shibin on Mar 6, 2008 11:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 10:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478189#M836135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T10:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Update in Dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478190#M836136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Boopathy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Screen painter place a button with function code UPD.&lt;/P&gt;&lt;P&gt;In the PAI declare a  MODULE USER_COMMAND_1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program write the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data tab like standard table of zord.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt; when 'UPD'.&lt;/P&gt;&lt;P&gt;  update zord from table tab.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Charumathi.B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 11:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478190#M836136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T11:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Update in Dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478191#M836137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem got solved. and more over i need some help on the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do we clear the fields when we click the insert or update buttoon in the dialogue program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 06:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478191#M836137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T06:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Update in Dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478192#M836138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Boopathy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simply use the &lt;STRONG&gt;clear&lt;/STRONG&gt; or &lt;STRONG&gt;refresh&lt;/STRONG&gt; statements after the update command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data tab like standard table of zord.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'UPD'.&lt;/P&gt;&lt;P&gt;update zord from table tab.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;refresh tab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Charumathi.B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 10:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-in-dialogue-programming/m-p/3478192#M836138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T10:19:02Z</dc:date>
    </item>
  </channel>
</rss>

