<?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: loop at screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773712#M1118764</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In the tabstrip you have to do loop at table control as below&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 FIELD-SYMBOLS: &amp;lt;cols&amp;gt; LIKE LINE OF &amp;lt;table control name-cols&amp;gt;.
    LOOP AT &amp;lt;table control name-cols&amp;gt; ASSIGNING &amp;lt;cols&amp;gt;.
      CASE &amp;lt;cols&amp;gt;-screen-name.
       WHEN &amp;lt;screen name&amp;gt;.
          &amp;lt;cols&amp;gt;-screen-input = 0.
          &amp;lt;cols&amp;gt;-screen-active = 0.
         MODIFY &amp;lt;table control name-cols&amp;gt;[] FROM &amp;lt;cols&amp;gt;.
     ENDCASE.

   ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  JP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Nov 2008 04:26:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-11T04:26:23Z</dc:date>
    <item>
      <title>loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773711#M1118763</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;  My requirement is I need to deactivate all the fields in  tcode ks02 except User reponsible field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found the Userexit "COOMKS02"  In that I am trying to write a code like loop at screen&lt;/P&gt;&lt;P&gt;however only few of the fields which is main screen able to deactivate. I coudn't able to deactivate&lt;/P&gt;&lt;P&gt;the fields inside the tab strip (In loop at screen it is not coming) for ex. Basic tabstrip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; how to get control over the fields inside the tab strip or Is there any user  exit or badi for to do this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2008 12:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773711#M1118763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-10T12:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773712#M1118764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In the tabstrip you have to do loop at table control as below&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 FIELD-SYMBOLS: &amp;lt;cols&amp;gt; LIKE LINE OF &amp;lt;table control name-cols&amp;gt;.
    LOOP AT &amp;lt;table control name-cols&amp;gt; ASSIGNING &amp;lt;cols&amp;gt;.
      CASE &amp;lt;cols&amp;gt;-screen-name.
       WHEN &amp;lt;screen name&amp;gt;.
          &amp;lt;cols&amp;gt;-screen-input = 0.
          &amp;lt;cols&amp;gt;-screen-active = 0.
         MODIFY &amp;lt;table control name-cols&amp;gt;[] FROM &amp;lt;cols&amp;gt;.
     ENDCASE.

   ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  JP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 04:26:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773712#M1118764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-11T04:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773713#M1118765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi yadav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for reply, How to i loop in a standard screen .it is not allowing me to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other way to do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 10:05:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/4773713#M1118765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-11T10:05:06Z</dc:date>
    </item>
  </channel>
</rss>

