<?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: Va02 long text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747388#M1582379</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kota &lt;/P&gt;&lt;P&gt;just check the sub screen n the code were its being created ( text ) and woul be having a method wer its using &lt;/P&gt;&lt;P&gt;SET_READONLY_MODE   or SET_TEXT_AS_STREAM .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 May 2011 10:46:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-13T10:46:54Z</dc:date>
    <item>
      <title>Va02 long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747386#M1582377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement like i need to disable terms of payments long text  if long text is available.&lt;/P&gt;&lt;P&gt;I know how to read that  long text by using read_text function module but i dont know if text is there how to make the long text filed in non editable mode.Please let me know your views.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2011 06:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747386#M1582377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-30T06:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Va02 long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747387#M1582378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one help me ihow to make text editor non editabel mode if text exist in va02 &lt;DEL&gt;&amp;gt; header&lt;/DEL&gt;-&amp;gt;text tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kota on May 13, 2011 3:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 09:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747387#M1582378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-07T09:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Va02 long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747388#M1582379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kota &lt;/P&gt;&lt;P&gt;just check the sub screen n the code were its being created ( text ) and woul be having a method wer its using &lt;/P&gt;&lt;P&gt;SET_READONLY_MODE   or SET_TEXT_AS_STREAM .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 10:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747388#M1582379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-13T10:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Va02 long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747389#M1582380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kota,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This i did  for vl02n. I am not sure about va02. Just check this you may get an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) PERFORM TEXT_CONTROL_EINGABEBEREIT 2) Go to this subroutine and then Program u2013&amp;gt; Enhance 3)Edit -&amp;gt;Enhancement Operations -&amp;gt; Show implicit enhancement Options  4) There is a form text_control_eingaberit.&lt;/P&gt;&lt;P&gt;5)  Include name LV70TFT3  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENHANCEMENT 4  ZTEXT_MODIF_BLOCK.    "active version&lt;/P&gt;&lt;P&gt;call method gv_text_editor-&amp;gt;set_readonly_mode&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;              readonly_mode = gv_text_editor-&amp;gt;true&lt;/P&gt;&lt;P&gt;         exceptions&lt;/P&gt;&lt;P&gt;              error_cntl_call_method = 1&lt;/P&gt;&lt;P&gt;              invalid_parameter      = 2&lt;/P&gt;&lt;P&gt;              others                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDENHANCEMENT.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This i did for vl02n. Check in this for va02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 May 2011 03:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va02-long-text/m-p/7747389#M1582380</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-05-14T03:29:44Z</dc:date>
    </item>
  </channel>
</rss>

