<?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 Sub Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101641#M438162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Am studying screen exits scenario. When am studying this scenario am getting a doubt  that when creating the screen with transaction se80 and develop the screen in a particular function group. Normally function group is used for functional modules to store in a same group so that they can share global data. What the purpose of function group while creating the screen in a particular function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my problem will be clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be awarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2007 09:18:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-11T09:18:12Z</dc:date>
    <item>
      <title>Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101641#M438162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Am studying screen exits scenario. When am studying this scenario am getting a doubt  that when creating the screen with transaction se80 and develop the screen in a particular function group. Normally function group is used for functional modules to store in a same group so that they can share global data. What the purpose of function group while creating the screen in a particular function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my problem will be clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be awarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:18:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101641#M438162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T09:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101642#M438163</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;A demo program to create subscreen in your ABAP Program &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;A demo program to create subscreen in your ABAP Program &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This report will display the user last login date and time. &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Subscreen selection 1 : User Name &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                               2 : Last Login Date &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                               3 : Class Belong To &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Written by : SAP Basis, ABAP Programming and Other IMG Stuff &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                   &lt;A href="http://www.sap-img.com" target="test_blank"&gt;http://www.sap-img.com&lt;/A&gt; &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSUBSCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: USR02,       "Logon data&lt;/P&gt;&lt;P&gt;        SSCRFIELDS.  "FIELDS ON SELECTION SCREENS&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SUBSCREEN 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-010.&lt;/P&gt;&lt;P&gt;   SELECT-OPTIONS: USERNAME FOR USR02-BNAME.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SUBSCREEN 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-020.&lt;/P&gt;&lt;P&gt;   SELECT-OPTIONS: LASTLOGI FOR USR02-TRDAT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SUBSCREEN 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 300 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-030.&lt;/P&gt;&lt;P&gt;   SELECT-OPTIONS: CLASSTYP FOR USR02-CLASS.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B3.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;STANDARD SELECTION SCREEN FOR SCROLLING LEFT AND RIGHT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1,&lt;/P&gt;&lt;P&gt;                  FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF TABBED BLOCK SUB FOR 15 LINES,&lt;/P&gt;&lt;P&gt;                  END OF BLOCK SUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;    SELECT * FROM USR02 WHERE BNAME IN USERNAME&lt;/P&gt;&lt;P&gt;                          AND ERDAT IN LASTLOGI&lt;/P&gt;&lt;P&gt;                          AND CLASS IN CLASSTYP.&lt;/P&gt;&lt;P&gt;       WRITE: / 'User ', USR02-BNAME,&lt;/P&gt;&lt;P&gt;                'Last Login Date ', USR02-TRDAT,&lt;/P&gt;&lt;P&gt;                'Last Login Time ', USR02-LTIME,&lt;/P&gt;&lt;P&gt;                'CLASS ', USR02-CLASS.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SCREEN ICON LEFT AND RIGHT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_01 = '@0D@'.&lt;/P&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_02 = '@0E@'.&lt;/P&gt;&lt;P&gt;  SUB-PROG = SY-REPID.&lt;/P&gt;&lt;P&gt;  SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SY-DYNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 100.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 300.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 200.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 200.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 300.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 300.&lt;/P&gt;&lt;P&gt;      IF SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 200.&lt;/P&gt;&lt;P&gt;      ELSEIF SSCRFIELDS-UCOMM = 'FC02'.&lt;/P&gt;&lt;P&gt;        SUB-DYNNR = 100.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sankar M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101642#M438163</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2007-04-11T09:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101643#M438164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that your concern is specefic to Screen Exit scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A screen exit is always bound with a function module exit; if we are creating &lt;/P&gt;&lt;P&gt;additional fields in a standard screen, there should be corresponding abap code&lt;/P&gt;&lt;P&gt;attached to this, to display/edit/validate these field data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hence, screen exits as such will be part of a function group, which will have&lt;/P&gt;&lt;P&gt;atleast a fuction module in it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101643#M438164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T09:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101644#M438165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks for your response. So before we are creating the subscreen we have to know the function exit for that screen exit and we must create subscreen in that function group. The function group name will be provided by the documentation in function exit which we can see this through SMOD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me the reply whether my expecting is correct or wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101644#M438165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T09:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101645#M438166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes Ravi..you are almost in the right direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we go to SMOD transaction, and enter the user exit, choose the radio button&lt;/P&gt;&lt;P&gt;COMPONENTS; you will see the list of exits..screens exit and function module &lt;/P&gt;&lt;P&gt;exit pertaining to the user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select the screen exit..it will take you to screen painter with the subscreen open;&lt;/P&gt;&lt;P&gt;you just need to add the fields in that subscreen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now come back and select the function module exit, an include will be available&lt;/P&gt;&lt;P&gt;where you can enter the corresponding ABAP code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:41:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101645#M438166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T09:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sub Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101646#M438167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thanks for your valuable suggestions. And sorry for delay to award points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 10:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/2101646#M438167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T10:46:19Z</dc:date>
    </item>
  </channel>
</rss>

