<?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 Saving in Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657306#M1286972</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;i have a requirement that i have to save the entries in selection screen to the db.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i click save button it is asking for variants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suggest me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply asap.. thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2009 04:48:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-02T04:48:16Z</dc:date>
    <item>
      <title>Saving in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657306#M1286972</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;i have a requirement that i have to save the entries in selection screen to the db.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i click save button it is asking for variants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suggest me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply asap.. thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 04:48:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657306#M1286972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T04:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Saving in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657307#M1286973</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;Create a GUI status for the screen which contains the selection screen. Define the SAVE button with the function code as SAVE.Activate the GUI status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI of the program write the following logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;When 'SAVE'.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;write logic for database update----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arnab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 05:00:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657307#M1286973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T05:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Saving in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657308#M1286974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no procress such that, if you click on 'save' button it save's. That button is desperatrely for varients. So we need to write the code for it manually. Create a button and write a code in it...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 05:07:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657308#M1286974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T05:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Saving in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657309#M1286975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Tommy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create your own PF status. There disable the SAVE button on STANDARD toolbar and add one customized button in APPLICATION TOOL BAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;move s_matnr-low to wa&lt;/P&gt;&lt;P&gt;move p_mbrsh to wa-mbrsh &lt;/P&gt;&lt;P&gt;INSERT ZTABLE from wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can't use standard toolbar save button for saving the selection screen data to DB.&lt;/P&gt;&lt;P&gt;Hope this piece of code solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suvendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 05:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-in-selection-screen/m-p/5657309#M1286975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T05:13:02Z</dc:date>
    </item>
  </channel>
</rss>

