<?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: modify the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275912#M494925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it, missed the user-command syntax on to the radiobutton. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 May 2007 14:58:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-30T14:58:53Z</dc:date>
    <item>
      <title>modify the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275908#M494921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to modify the selection screen, I need the selection screen block B1 to be displayed only when the 'Delete' button is selected. Here is the code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: ZABC.&lt;/P&gt;&lt;P&gt;data: itab like  ZABC occurs 0 with header line.&lt;/P&gt;&lt;P&gt;selection-screen begin of block bl1 with frame title text-000 no&lt;/P&gt;&lt;P&gt;intervals.&lt;/P&gt;&lt;P&gt;parameters: Del_all radiobutton group r1,&lt;/P&gt;&lt;P&gt;            Del_blk radiobutton group r1,&lt;/P&gt;&lt;P&gt;            Delete radiobutton group r1.&lt;/P&gt;&lt;P&gt;selection-screen end of block bl1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block B1 with frame title text-110.&lt;/P&gt;&lt;P&gt; select-options: P_PERNR for ZABC.&lt;/P&gt;&lt;P&gt;selection-screen end of block B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Del_all = 'X'.&lt;/P&gt;&lt;P&gt;select * from  ZABC into table itab where pernr ne ' '.&lt;/P&gt;&lt;P&gt;DELETE  ZABC FROM TABLE itab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Del_blk = 'X'.&lt;/P&gt;&lt;P&gt; delete from ZABC where  pernr  = ' '.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Delete = 'X'.&lt;/P&gt;&lt;P&gt;delete from ZABCwhere pernr IN p_pernr[].&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do that? It is used only when the 'Delete' button is checked.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 14:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275908#M494921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T14:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: modify the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275909#M494922</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;On your checkbox use the addition user command &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define a modification id to the p_pernr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the at selection screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if delete = 'X'.&lt;/P&gt;&lt;P&gt;   if screen-group1 = test1.&lt;/P&gt;&lt;P&gt;      screen-active = 1.&lt;/P&gt;&lt;P&gt;      screen-invisible = 0.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   if screen-group1 = test1.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&lt;/P&gt;&lt;P&gt;      screen-invisible = 1.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Modify Screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will enable you to achieve the functionality &lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Gaurav Parashar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 14:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275909#M494922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T14:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: modify the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275910#M494923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed the code to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: P_PERNR for ZABC-PERNR modif id ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if Delete = 'X'.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;   screen-active = 1.&lt;/P&gt;&lt;P&gt;   screen-invisible = 0.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;    screen-active = 0.&lt;/P&gt;&lt;P&gt;    screen-invisible = 1.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt; modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;kept the rest of the code same....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I clicked the delete button the parameters option did not show up,&lt;/P&gt;&lt;P&gt;did I miss something here?&lt;/P&gt;&lt;P&gt;trying to understand this piece of programming &lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 14:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275910#M494923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T14:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: modify the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275911#M494924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Kindly use the following parameters in the screen modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also put a break point on the EVENT at selection screen &amp;amp; check if user command gets triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Delete = 'X'.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;            SCREEN-INVISIBLE = '1'.&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;            SCREEN-INPUT = '1'.&lt;/P&gt;&lt;P&gt;            SCREEN-INVISIBLE = '0'.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 14:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275911#M494924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T14:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: modify the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275912#M494925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it, missed the user-command syntax on to the radiobutton. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 14:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-the-selection-screen/m-p/2275912#M494925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T14:58:53Z</dc:date>
    </item>
  </channel>
</rss>

