<?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: Screen fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159886#M456753</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;U have to &amp;lt;b&amp;gt;award points for useful answers&amp;lt;/b&amp;gt; and u have to mention it as solved if ur question is solved. Dont forget. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 May 2007 10:51:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-07T10:51:55Z</dc:date>
    <item>
      <title>Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159881#M456748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any table where we can get all the fields used in the Screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:47:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159881#M456748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159882#M456749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table is SCREEN but at runtime only u will get.&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;prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159882#M456749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159883#M456750</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;Use the below code, u will get all the fields present on the screen and all of its attributes also. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO u will get the table 'Screen_itab' filled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF STRUCT,&lt;/P&gt;&lt;P&gt;                     NAME(132),&lt;/P&gt;&lt;P&gt;                     GROUP1(3),&lt;/P&gt;&lt;P&gt;                     GROUP2(3),&lt;/P&gt;&lt;P&gt;                     GROUP3(3),&lt;/P&gt;&lt;P&gt;                     GROUP4(3),&lt;/P&gt;&lt;P&gt;                     REQUIRED,&lt;/P&gt;&lt;P&gt;                     INPUT,&lt;/P&gt;&lt;P&gt;                     OUTPUT,&lt;/P&gt;&lt;P&gt;                     INTENSIFIED,&lt;/P&gt;&lt;P&gt;                     INVISIBLE,&lt;/P&gt;&lt;P&gt;                     LENGTH TYPE X,&lt;/P&gt;&lt;P&gt;                     ACTIVE,&lt;/P&gt;&lt;P&gt;                     DISPLAY_3D,&lt;/P&gt;&lt;P&gt;                     VALUE_HELP,&lt;/P&gt;&lt;P&gt;                     REQUEST,&lt;/P&gt;&lt;P&gt;                     COLOR(4) TYPE I,&lt;/P&gt;&lt;P&gt;       END OF STRUCT.&lt;/P&gt;&lt;P&gt;DATA Screen_itab TYPE TABLE OF STRUCT WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;Screen_itab = SCREEN.&lt;/P&gt;&lt;P&gt;APPEND Screen_itab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 08:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159883#M456750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T08:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159884#M456751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check FM DYNPRO_FIELD_GET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lakshman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 08:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159884#M456751</guid>
      <dc:creator>Lakshmant1</dc:creator>
      <dc:date>2007-04-20T08:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159885#M456752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In &amp;lt;b&amp;gt;Debugging&amp;lt;/b&amp;gt; the program you can see the All Screen fields in Screen Table,and their Attributes also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 08:58:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159885#M456752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T08:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159886#M456753</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;U have to &amp;lt;b&amp;gt;award points for useful answers&amp;lt;/b&amp;gt; and u have to mention it as solved if ur question is solved. Dont forget. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 10:51:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-fields/m-p/2159886#M456753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T10:51:55Z</dc:date>
    </item>
  </channel>
</rss>

