<?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: logic needed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301169#M790302</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;Hope u are writing the foll piece of code in PBO module of the screen................if not put it in PBO....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( flg = 'C' ).&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even now if its not working keep a brk-pt in &lt;STRONG&gt;if ( flg = 'C' ).&lt;/STRONG&gt; statement and check if flg = 'C'.  also check the screen names........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Will.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 02 Feb 2008 08:38:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-02T08:38:01Z</dc:date>
    <item>
      <title>logic needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301166#M790299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ON SREEEN i have few input/output fields &amp;amp; a table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my requirenment is on display&lt;/P&gt;&lt;P&gt;both of these convert into disable mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m doing this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if ( flg = 'C' ).&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if ( screen-name = 'WA_ZISUSLIP-WERKS'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-SNO'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-MATNR'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-MAKTX'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-SNO'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-MEINS'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-MENGE'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-MENGEISU'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-LGPBE'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-TEXT'&lt;/P&gt;&lt;P&gt;        or screen-name = 'WA_ZISUSLIP-REMARKS').&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;werks is input/output fields &lt;/P&gt;&lt;P&gt;rest others are in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this its converting all table control grey(input diable) but nt works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to convert works to disable mode.&lt;/P&gt;&lt;P&gt;Plz guide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2008 07:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301166#M790299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-02T07:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: logic needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301167#M790300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you just assign a screen group for these fields.&lt;/P&gt;&lt;P&gt;and try the the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( flg = 'C' ).&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF screen-group1 = '&amp;lt;GRP1&amp;gt;' .&lt;/P&gt;&lt;P&gt;          screen-input = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;GRP1&amp;gt; is the group aasigned for these fields(group1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rengith Skariah on Feb 2, 2008 9:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2008 08:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301167#M790300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-02T08:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: logic needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301168#M790301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THNAKS &lt;/P&gt;&lt;P&gt;Anyways my problem was resolved as i included werksin same table control loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as soon as i declared outside the loop error was resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2008 08:21:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301168#M790301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-02T08:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: logic needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301169#M790302</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;Hope u are writing the foll piece of code in PBO module of the screen................if not put it in PBO....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( flg = 'C' ).&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even now if its not working keep a brk-pt in &lt;STRONG&gt;if ( flg = 'C' ).&lt;/STRONG&gt; statement and check if flg = 'C'.  also check the screen names........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Will.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2008 08:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed/m-p/3301169#M790302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-02T08:38:01Z</dc:date>
    </item>
  </channel>
</rss>

