<?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 TABLES : SSCRFIELDS in OOPS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933649#M691288</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;   Could come one suggest me how do I get push buttons on selection screen application bar making use of sccrfields , but not defining statement TABLES : SSCRFIELDS , as this statement is no longer encouraged in OOPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I would like to have the same functionality of getting the push button on selection screen but not using tables statement &amp;amp; PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Please suggest . Rewards for helpful answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Oct 2007 16:17:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-14T16:17:44Z</dc:date>
    <item>
      <title>TABLES : SSCRFIELDS in OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933649#M691288</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;   Could come one suggest me how do I get push buttons on selection screen application bar making use of sccrfields , but not defining statement TABLES : SSCRFIELDS , as this statement is no longer encouraged in OOPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I would like to have the same functionality of getting the push button on selection screen but not using tables statement &amp;amp; PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Please suggest . Rewards for helpful answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2007 16:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933649#M691288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-14T16:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES : SSCRFIELDS in OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933650#M691289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check RSDEMO* and BCALV* in SE38&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 02:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933650#M691289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T02:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES : SSCRFIELDS in OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933651#M691290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amber..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the Solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**SELECTION SCREEN - CUSTOMIZING GUI STATUS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSEL_GUI     .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_dsn(30)  DEFAULT 'EMP.TXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : V_STATUS TYPE SY-PFKEY VALUE 'SEL1', &lt;/P&gt;&lt;P&gt;                                                  "create this in SE41 WITH TYPE Selection Screen&lt;/P&gt;&lt;P&gt;           V_rEPID TYPE SY-REPID.&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;V_REPID = SY-REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;APPEND: 'PRIN' TO itab.&lt;/P&gt;&lt;P&gt;APPEND: 'SPOS' TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-dynnr.&lt;/P&gt;&lt;P&gt;WHEN '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;lt;b&amp;gt;'RS_SET_SELSCREEN_STATUS'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;p_status = V_STATUS&lt;/P&gt;&lt;P&gt;P_PROGRAM = V_REPID  "program where the GUI Status is created&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;p_exclude = itab.  "Fields to be excluded from Standard GUI&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  CASE SY-UCOMM.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  WHEN 'PRIN'.&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;&lt;/P&gt;&lt;P&gt;Note :  In SE41 GUI Status select the menu path: &lt;/P&gt;&lt;P&gt;          EXTRAS -&amp;gt; Adjust Template -&amp;gt; Status type &lt;/P&gt;&lt;P&gt;          Select the Radio button "SELECTION SCREEN" and Copy.&lt;/P&gt;&lt;P&gt;          This will copy all the Standard buttons of a selection screen.&lt;/P&gt;&lt;P&gt;          Then add the new buttons in the App Tool Bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REWARD IF HELPFUL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 03:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-sscrfields-in-oops/m-p/2933651#M691290</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-15T03:35:48Z</dc:date>
    </item>
  </channel>
</rss>

