<?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 which table has (dynpro) screen fields attributes? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920004#M939312</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;        Is there any FM to find out the screen elements (dynpro not webdynpro) and their attributes ?&lt;/P&gt;&lt;P&gt;       Which table has the information about screen elements and their attributes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to find out all the elements in a screen when i provide the program name and the screen number. I also need to know the element type like 'Text Label' or 'Push Button'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 21:34:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T21:34:47Z</dc:date>
    <item>
      <title>which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920004#M939312</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;        Is there any FM to find out the screen elements (dynpro not webdynpro) and their attributes ?&lt;/P&gt;&lt;P&gt;       Which table has the information about screen elements and their attributes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to find out all the elements in a screen when i provide the program name and the screen number. I also need to know the element type like 'Text Label' or 'Push Button'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 21:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920004#M939312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T21:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920005#M939313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check in SE12 &lt;/P&gt;&lt;P&gt;put D02* an press F4, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U obtain this tables. I hope is helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D020LINF&lt;/P&gt;&lt;P&gt;D020S&lt;/P&gt;&lt;P&gt;D020SINF	&lt;/P&gt;&lt;P&gt;D020T	&lt;/P&gt;&lt;P&gt;D021L	&lt;/P&gt;&lt;P&gt;D021T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 21:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920005#M939313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T21:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920006#M939314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same problem. Actually there is no table that contains these data. The DDs are all structures. but the following code works ok with me, so you can try it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: H LIKE D020S OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: F LIKE D021S OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: E LIKE D022S OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: M LIKE D023S OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: f_wa like line of f.&lt;/P&gt;&lt;P&gt;DATA: e_wa like line of e.&lt;/P&gt;&lt;P&gt;DATA: m_wa like line of m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: begin of screenid,&lt;/P&gt;&lt;P&gt;progid like programid,&lt;/P&gt;&lt;P&gt;screenid like screennumber,&lt;/P&gt;&lt;P&gt;end of screenid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT DYNPRO H F E M ID screenid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the function gets the graphic type of the field feld-gtyp. you also have to declare the structure FELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT F INTO f_wa.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_SCRP_GET_FIELD_TYPE_TEXT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            field                    = f_wa&lt;/P&gt;&lt;P&gt;            text_kind                = 'SHORT'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            field_type_without_modif = feld-gtyp&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            OTHERS                   = 1.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'feld-gtyp: ', feld-gtyp.&lt;/P&gt;&lt;P&gt;  f_wa-type = feld-gtyp.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'f_wa-type: ', f_wa-type.&lt;/P&gt;&lt;P&gt;  INSERT f_wa INTO table screenfields.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screenfields you declare as a table type D021S and you also have to give programid and screennumber as import parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you know how I can get the source code of dynpro modules of a screen.&lt;/P&gt;&lt;P&gt;or where I can find the messages in a program ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 22:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920006#M939314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T22:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920007#M939315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Which table stores the function code of the push buttons belonging to a Screen , not 'Menu'?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 15:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920007#M939315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T15:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920008#M939316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually it is in the field RES1 of table SCREENFIELDS.&lt;/P&gt;&lt;P&gt;It seems this data is not stored in DB tables but you can get it through calls to the kernel. rather complicated. I have worked it out through following backwards the source code logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 02:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920008#M939316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T02:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920009#M939317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi you can check the table&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;D020S (*d020t&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;d020s&lt;/P&gt;&lt;P&gt;d021t&lt;/P&gt;&lt;P&gt;dd30l&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 02:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920009#M939317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T02:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920010#M939318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check these Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TSE02 ---&amp;gt; ABAP/4 Editor user commands&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TSE05 ---&amp;gt; ABAP/4 Editor insert commands&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In each PAI event, the function code, as long as it is not empty, is placed in the system field SYST-UCOMM (SY-UCOMM) and assigned to the OK_CODE field. Empty function codes are placed in neither the SY-UCOMM field nor the OK_CODE field. The function code of a pushbutton is empty if you have not entered it in the corresponding attribute in the Screen Painter. Before you can work with the OK_CODE field, you must assign a name to it in the Screen Painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 03:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920010#M939318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T03:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: which table has (dynpro) screen fields attributes?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920011#M939319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari haran,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My earlier reply to ur another question for the same issue solved your problem, That is use RS_IMPORT_DYNPRO  to get complete screen information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence you can close this thread also.&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;Naveen Veshala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2008 23:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-table-has-dynpro-screen-fields-attributes/m-p/3920011#M939319</guid>
      <dc:creator>former_member265047</dc:creator>
      <dc:date>2008-06-26T23:20:24Z</dc:date>
    </item>
  </channel>
</rss>

