<?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 dialog program on user command save in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912122#M685257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a screen on which the screen field names are mentioned with ZTABLE-FIELD1, ZTABLE-FIELD2, .... and so on.&lt;/P&gt;&lt;P&gt;now once user enters the mandatory fields and required fields, i click on save, they shd be appending a new record in ZTABLE&lt;/P&gt;&lt;P&gt;My confusion is screen field names are ZTABLE-FIELD1.&lt;/P&gt;&lt;P&gt;so how do i handle this to append a new record in the ZTABLE.&lt;/P&gt;&lt;P&gt;Should i move all the data to a work area and then append the table from workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Oct 2007 07:04:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-24T07:04:56Z</dc:date>
    <item>
      <title>dialog program on user command save</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912122#M685257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a screen on which the screen field names are mentioned with ZTABLE-FIELD1, ZTABLE-FIELD2, .... and so on.&lt;/P&gt;&lt;P&gt;now once user enters the mandatory fields and required fields, i click on save, they shd be appending a new record in ZTABLE&lt;/P&gt;&lt;P&gt;My confusion is screen field names are ZTABLE-FIELD1.&lt;/P&gt;&lt;P&gt;so how do i handle this to append a new record in the ZTABLE.&lt;/P&gt;&lt;P&gt;Should i move all the data to a work area and then append the table from workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 07:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912122#M685257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T07:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: dialog program on user command save</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912123#M685258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declara a work area like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : wa_ztable type ztable.
"now in  the user command of SAVE
  move-corresponding ztable to wa_ztable.
  modify ztable from wa_ztable.
  if sy-subrc = 0.
    message S000(ZTEST). " Suceessfully ZTABLE updated.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 07:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912123#M685258</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-24T07:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: dialog program on user command save</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912124#M685259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok let me try and see.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 07:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912124#M685259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T07:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: dialog program on user command save</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912125#M685260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gopi, it worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 07:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-on-user-command-save/m-p/2912125#M685260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T07:46:50Z</dc:date>
    </item>
  </channel>
</rss>

