<?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: Make some fields in transaction VF02 editable... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773927#M1118792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess I have no choice but to modify the standard. We are currently using version 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2008 01:17:42 GMT</pubDate>
    <dc:creator>aris_hidalgo</dc:creator>
    <dc:date>2008-11-06T01:17:42Z</dc:date>
    <item>
      <title>Make some fields in transaction VF02 editable...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773923#M1118788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some requirements wherein I have to make 2 fields editable particularly(XBLNR and ZUONR). I&lt;/P&gt;&lt;P&gt;tried using transaction variant but it does not help. What are other ways to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and take care!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Viraylab on Nov 5, 2008 7:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773923#M1118788</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2008-11-05T10:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Make some fields in transaction VF02 editable...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773924#M1118789</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 believe u need to change the dynpro, u can't do it by trx variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 11:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773924#M1118789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T11:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Make some fields in transaction VF02 editable...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773925#M1118790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. This is for both VF01 and VF02. Also, if you know any EXIT or BADI that might help me with my requirement please let me know. I was searching the forums and testing out different exits/badis to no avail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 11:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773925#M1118790</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2008-11-05T11:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Make some fields in transaction VF02 editable...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773926#M1118791</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;There's no EXIT or BADI: because SAP don't want the user can change them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to change the routine FORM FELDAUSWAHL_SONDERREGELN defined in the include MV60AF0F_FELDAUSWAHL_SONDERREG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need a piece of code like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF T180-TRTYP &amp;lt;&amp;gt; 'A'.
    IF SCREEN-NAME = 'VBRK-XBLNR' OR
        SCREEN-NAME = 'VBRK-ZUONR'.
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
   ENDIF.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should place that modification at the end of routine MV60AF0F_FELDAUSWAHL_SONDERREG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using a release equal or greater than 5, u can create an enanchement, else u need to obtain the access key by your OSS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway remember the information placed on those fields will be transfered to account document: so are you sure u want to allow the user can change them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 12:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773926#M1118791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T12:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Make some fields in transaction VF02 editable...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773927#M1118792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess I have no choice but to modify the standard. We are currently using version 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 01:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-some-fields-in-transaction-vf02-editable/m-p/4773927#M1118792</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2008-11-06T01:17:42Z</dc:date>
    </item>
  </channel>
</rss>

