<?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: Info type screen change in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163656#M1195949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This cannot be done thru coding. Maintain the field required based on the subtype in V_T591C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2009 14:00:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-25T14:00:46Z</dc:date>
    <item>
      <title>Info type screen change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163653#M1195946</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 have to make changes in the screen of 0105 (Communication) Infotype for subtyp MAIL. There are 2 fields USRID &amp;amp; USRID_LONG in 0105 IT, by  default USRID field is being displayed on the screen instead I want to make USRID_LONG field to be displayed on the screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Is this possible through configuration&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2009 10:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163653#M1195946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-10T10:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Info type screen change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163654#M1195947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;just do like this... &lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  USRID like tabname-USRID,&lt;/P&gt;&lt;P&gt;  USRID_LONG like tabname-USRID_LONG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  if USRID_LONG is initial.&lt;/P&gt;&lt;P&gt;   loop at screen.&lt;/P&gt;&lt;P&gt;     if screen-name CS 'USRID'.&lt;/P&gt;&lt;P&gt;       screen-active = 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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code will result in hide the usrid on the screen...initially the field USRID_LONG will visible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kiran Saka on Feb 10, 2009 11:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2009 10:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163654#M1195947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-10T10:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Info type screen change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163655#M1195948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You can do it in AT SELECTION-SCREEN  OUTPUT event looping at SCREEN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN  OUTPUT.
Loop at screen.
if screen-name EQ 'USRID'.
Screen-active = 0.
Modify screen.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2009 11:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163655#M1195948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-10T11:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Info type screen change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163656#M1195949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This cannot be done thru coding. Maintain the field required based on the subtype in V_T591C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 14:00:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-type-screen-change/m-p/5163656#M1195949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-25T14:00:46Z</dc:date>
    </item>
  </channel>
</rss>

