<?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: Dynpro Screen-Active in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754732#M2022042</link>
    <description>&lt;P&gt;The default value is the value defined in the dynpro definition, also active isn't an actual field. &lt;/P&gt;&lt;P&gt;We can technically add a field in dynpro painter with input and output unchecked and invisible checked - very rare, I did it twice in the last 20+ years, two and three fields were defined at the same location, but only one active at a time of course &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Sep 2023 10:07:30 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2023-09-28T10:07:30Z</dc:date>
    <item>
      <title>Dynpro Screen-Active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754729#M2022039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;i have an Dynpor with three Frames, field with differnet Input Field. some of the Elements are grouped in two different Screen-group1 Value &lt;/P&gt;
  &lt;P&gt;In the PBO both Screengroups are not active, which works fine.&lt;/P&gt;
  &lt;P&gt;After a Input in Field, I switch one Screengroup to active.&lt;/P&gt;
  &lt;P&gt; LOOP AT SCREEN.&lt;BR /&gt;* Detailrahmen einblenden&lt;BR /&gt; IF screen-group1 = 'DET'.&lt;BR /&gt; screen-active = 1.&lt;BR /&gt; MODIFY SCREEN.&lt;BR /&gt; ENDIF.&lt;BR /&gt; ENDLOOP.&lt;/P&gt;
  &lt;P&gt;My Problem is that the second Screengroup appears as active, which is in that moment not correct.&lt;/P&gt;
  &lt;P&gt;Any help?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 07:33:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754729#M2022039</guid>
      <dc:creator>andreas_hartmann8</dc:creator>
      <dc:date>2023-09-28T07:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpro Screen-Active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754730#M2022040</link>
      <description>&lt;P&gt;You have to loop in the PBO for the three groups and define/set/use some variable/attributes to memorize which groups are arctive&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
  CASE screen-group1.
    WHEN 'DET'
      IF main_class=&amp;gt;det_active = abap_true.
        screen-active = 1.
      ELSE.
        screen-active = 0.
      ENDIF.
    WHEN 'XYZ'
  "...
  ENDCASE.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Sep 2023 08:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754730#M2022040</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-09-28T08:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpro Screen-Active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754731#M2022041</link>
      <description>&lt;P&gt;active = 1 is the default value &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 08:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754731#M2022041</guid>
      <dc:creator>holm</dc:creator>
      <dc:date>2023-09-28T08:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpro Screen-Active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754732#M2022042</link>
      <description>&lt;P&gt;The default value is the value defined in the dynpro definition, also active isn't an actual field. &lt;/P&gt;&lt;P&gt;We can technically add a field in dynpro painter with input and output unchecked and invisible checked - very rare, I did it twice in the last 20+ years, two and three fields were defined at the same location, but only one active at a time of course &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 10:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754732#M2022042</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-09-28T10:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpro Screen-Active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754733#M2022043</link>
      <description>&lt;P&gt;It's active by default. You must deactivate explicitly (screen-active = '0').&lt;/P&gt;&lt;P&gt;Use the backend ABAP Debugger &amp;gt; Dynpro tool to see the exact SCREEN values of each field.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 13:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpro-screen-active/m-p/12754733#M2022043</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-09-28T13:49:24Z</dc:date>
    </item>
  </channel>
</rss>

