<?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 Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934477#M941746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Please Give answer.  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A: PBO module include program &lt;/P&gt;&lt;P&gt;B: TOP include program &lt;/P&gt;&lt;P&gt;C: PAI module include program &lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; Subroutine include program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Prajwal K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2008 06:57:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-05T06:57:08Z</dc:date>
    <item>
      <title>Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934477#M941746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Please Give answer.  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A: PBO module include program &lt;/P&gt;&lt;P&gt;B: TOP include program &lt;/P&gt;&lt;P&gt;C: PAI module include program &lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; Subroutine include program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Prajwal K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 06:57:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934477#M941746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T06:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934478#M941747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TOP include&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 07:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934478#M941747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T07:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934479#M941748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vasu &lt;/P&gt;&lt;P&gt;Can You Please Give me Example  code for that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Prajwal K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 07:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934479#M941748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T07:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934480#M941749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prajwal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP inlcude is for Data Declaration.So the data will be globally accessible.It can be either from standard tables or custom tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO - include to handle output values and data can be declared here but will have access only in this include&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI - include to handle events on the screen, data declaration  will have local access other includes cannot access these variables/values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subroutine - include for routines data declaration Local access same as PAI, PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if your requirement is to access the data globally throughout all includes in the program then define the declarations in TOP Inlcude...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to any standard programs.&lt;/P&gt;&lt;P&gt;Ex: SAPLMEGUI - Purchase order display program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Ravi K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 07:12:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3934480#M941749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T07:12:15Z</dc:date>
    </item>
  </channel>
</rss>

