<?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: How to access screen elements from another subscreen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467231#M1252283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved by self&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jul 2009 15:12:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-07T15:12:49Z</dc:date>
    <item>
      <title>How to access screen elements from another subscreen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467228#M1252280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Following is my requirement&lt;/P&gt;&lt;P&gt;I have a tabstrip in which I have a subscreen. Now after working on the subscreen the control moves to another subscreen which contains a table control. Upon a certain condition I need to enable a screen field on the previous subscreen.&lt;/P&gt;&lt;P&gt;Statndard transaction FB70 is used where the GL account(in the table control) is enetered and the Doc currency ( on the first subscreen on the tabstrip) field needs to be enabled after a warning message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions are welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 08:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467228#M1252280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T08:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to access screen elements from another subscreen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467229#M1252281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if you are able to use this FM 'DYNP_VALUES_READ' in your requirment.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA it_dynfield TYPE STANDARD TABLE OF dynpread WITH HEADER LINE.

  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname             = sy-repid
      dynumb             = sy-dynnr
*      translate_to_upper = 'X'
      request            = 'A'
    TABLES
      dynpfields         = it_dynfield.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 08:27:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467229#M1252281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T08:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to access screen elements from another subscreen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467230#M1252282</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;You need to write logic in PBO of the subscreen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : wa LIKE LINE OF tab_tkreq-cols .

LOOP AT&amp;lt;table Control&amp;gt;-cols INTO wa .
   if wa-screen-name CS &amp;lt;field name&amp;gt;.
        wa-input = 1 .
        wa-active = 0 .
  endif.
MODIFY tab_tkreq-cols FROM wa .
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 08:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467230#M1252282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T08:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to access screen elements from another subscreen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467231#M1252283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved by self&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 15:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-access-screen-elements-from-another-subscreen/m-p/5467231#M1252283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T15:12:49Z</dc:date>
    </item>
  </channel>
</rss>

