<?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 SRM-HIDING SOME FIELDS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783263#M337460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI ALL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I AM USING BBP_CUF_BADI_2 for hiding fields but still its displaying pls give solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following code i written as&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF wa_et_fields-fieldname = 'ZECO_REJ' or wa_et_fields-fieldname = 'ZTC_REJ'.&lt;/P&gt;&lt;P&gt;              IF is_header-process_type = 'Z3EB'.&lt;/P&gt;&lt;P&gt;            wa_et_fields-xdisplay = '  '.&lt;/P&gt;&lt;P&gt;            wa_et_fields-xinput = '  '.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to hide the check box zeco_rej&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jan 2007 13:10:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-03T13:10:32Z</dc:date>
    <item>
      <title>SRM-HIDING SOME FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783263#M337460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI ALL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I AM USING BBP_CUF_BADI_2 for hiding fields but still its displaying pls give solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following code i written as&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF wa_et_fields-fieldname = 'ZECO_REJ' or wa_et_fields-fieldname = 'ZTC_REJ'.&lt;/P&gt;&lt;P&gt;              IF is_header-process_type = 'Z3EB'.&lt;/P&gt;&lt;P&gt;            wa_et_fields-xdisplay = '  '.&lt;/P&gt;&lt;P&gt;            wa_et_fields-xinput = '  '.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to hide the check box zeco_rej&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 13:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783263#M337460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T13:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: SRM-HIDING SOME FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783264#M337461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lakshmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i understud   is you are trying to modify the screen dynamically at runtime.&lt;/P&gt;&lt;P&gt;Normally for modifying  the screen we loop at the  screen and check for the element to enable or disable and we need to write the statement 'Modify Screen'.then only the screen gets modified.&lt;/P&gt;&lt;P&gt;just check out this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;        if screen-name = 'PUS'.&lt;/P&gt;&lt;P&gt;          screen-invisible = 1.&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;hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 14:09:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783264#M337461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T14:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: SRM-HIDING SOME FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783265#M337462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Laxmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To display or hide customisied fields in SRM we will be using method 'MODIFY_SCREEN' of  badi 'BBP_CUF_BADI_2'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to note 672960 - "User-defined fields 2" For more detailed instructions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see the below link&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2819741"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Andy V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 14:24:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/srm-hiding-some-fields/m-p/1783265#M337462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T14:24:43Z</dc:date>
    </item>
  </channel>
</rss>

