<?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 Screen modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110912#M441178</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;I am designing a table control related with screen exit. It is having 5 fields, among that 4 are only for output and one field is both input and output. when the tcode is va03 or va23 that one field also to be in only display mode. for that i have written the following logic in PBO.&lt;/P&gt;&lt;P&gt;IF sy-tcode EQ va03 OR&lt;/P&gt;&lt;P&gt;      sy-tcode EQ 'VA23'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;       IF screen-name EQ 'I_CUSTOM-FIELD5'8'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;     ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not working. &lt;/P&gt;&lt;P&gt;Can anybody tell me what is the problem and how to ressolve that. If any body having logic please provide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Vivek.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 11:49:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T11:49:38Z</dc:date>
    <item>
      <title>Screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110912#M441178</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;I am designing a table control related with screen exit. It is having 5 fields, among that 4 are only for output and one field is both input and output. when the tcode is va03 or va23 that one field also to be in only display mode. for that i have written the following logic in PBO.&lt;/P&gt;&lt;P&gt;IF sy-tcode EQ va03 OR&lt;/P&gt;&lt;P&gt;      sy-tcode EQ 'VA23'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;       IF screen-name EQ 'I_CUSTOM-FIELD5'8'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;     ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not working. &lt;/P&gt;&lt;P&gt;Can anybody tell me what is the problem and how to ressolve that. If any body having logic please provide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Vivek.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 11:49:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110912#M441178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T11:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110913#M441179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Give the field to modif id group and use this modif id group in your loop at screen .It will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;      IF flag = ' '.&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;      ELSEIF flag = 'X'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 12:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110913#M441179</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2007-04-16T12:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110914#M441180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vivek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Check the field name once by double clicking on that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 . IF sy-tcode EQ 'VA03'  put the single codes here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Debugg the code by puttin break poingt here.Try to cahnge the small letters of &lt;/P&gt;&lt;P&gt;   tcodes to capital.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code debugg will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110914#M441180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110915#M441181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vivek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all search the Function Group for the function exits provided with the Screen exit.In that function group,under Includes,there u will get a list of all Includes used in the transaction 'VA03'.Now from this list u have to select includes &amp;amp; there u have to write ur code i.e.modify screen.&lt;/P&gt;&lt;P&gt;Now where to write the code:&lt;/P&gt;&lt;P&gt;Choose the include with following specifications:&lt;/P&gt;&lt;P&gt;Z 'Function Group name' O(O not zero) 'some no'.&lt;/P&gt;&lt;P&gt;e.g.Say ur Function gr. is XTOB then choose ZXTOBO01.&lt;/P&gt;&lt;P&gt;Reward all helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 10:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/2110915#M441181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T10:30:54Z</dc:date>
    </item>
  </channel>
</rss>

