<?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 attributes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042675#M1500900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a look at FM &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RPY_DYNPRO_READ&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; also. In the table &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELDS_TO_CONTAINERS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; you will find a column &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;. Hopefully its content is sufficient for what you want to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Jul 2010 17:03:22 GMT</pubDate>
    <dc:creator>peter_langner</dc:creator>
    <dc:date>2010-07-17T17:03:22Z</dc:date>
    <item>
      <title>Screen attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042672#M1500897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Given a Program name &amp;amp; screen number, would it be possible to read the screen elements(not from the same program where the screen exists). say screen 2000 exists in prg "test" with 5 elements.... from another program "GetAttributesPrg", is there a way to read all the above mentioned 5 elements by passing the program name &amp;amp; screen number...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jul 2010 07:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042672#M1500897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-17T07:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Screen attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042673#M1500898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think what you need is FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'RPY_DYNPRO_READ_NATIVE'
      exporting
        progname                    = xdynp-prog
        dynnr                       = xdynp-dnum
*       SUPPRESS_EXIST_CHECKS       = ' '
*       SUPPRESS_CORR_CHECKS        = ' '
    importing
        HEADER                      = xdyn_head
        dynprotext                  = xdyn_text
     tables
        fieldlist                   = idyn_fldl
        flowlogic                   = idyn_flow
        params                      = idyn_mcod
*       FIELDTEXTS                  =
     exceptions
        cancelled                   = 1
        not_found                   = 2
        permission_error            = 3
        others                      = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDYN_FLDL contains the list of field (attributes) of the dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jul 2010 09:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042673#M1500898</guid>
      <dc:creator>peter_langner</dc:creator>
      <dc:date>2010-07-17T09:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Screen attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042674#M1500899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Peter for the Input.&lt;/P&gt;&lt;P&gt;is there a way to seperate input fields and labels(&amp;amp; frames). I am interested in only input fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jul 2010 11:22:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042674#M1500899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-17T11:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Screen attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042675#M1500900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a look at FM &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RPY_DYNPRO_READ&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; also. In the table &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELDS_TO_CONTAINERS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; you will find a column &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;. Hopefully its content is sufficient for what you want to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jul 2010 17:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-attributes/m-p/7042675#M1500900</guid>
      <dc:creator>peter_langner</dc:creator>
      <dc:date>2010-07-17T17:03:22Z</dc:date>
    </item>
  </channel>
</rss>

