<?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: Problem with text editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918141#M1147829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Have used the Class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this it will help to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      g_text_container       TYPE REF TO cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;      g_text_editor          TYPE REF TO cl_gui_textedit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATE OBJECT g_text_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        container_name = 'EMAIL_BOX'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CREATE OBJECT g_text_editor&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;         parent = g_text_container&lt;/P&gt;&lt;P&gt;         wordwrap_mode = cl_gui_textedit=&amp;gt;wordwrap_at_fixed_position&lt;/P&gt;&lt;P&gt;         wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD g_text_editor-&amp;gt;set_toolbar_mode&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        toolbar_mode = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD g_text_editor-&amp;gt;set_statusbar_mode&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        statusbar_mode = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this u need to craete a screen se 51.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Dec 2008 13:44:40 GMT</pubDate>
    <dc:creator>tarangini_katta</dc:creator>
    <dc:date>2008-12-08T13:44:40Z</dc:date>
    <item>
      <title>Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918136#M1147824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am displaying a network graphics screen. Now in 1 of the user-command i want to display a  text editor in a popup. I used CALL FUNCTION 'TERM_CONTROL_EDIT' . But when the editor is coming it is actually not a editor just a pop-up window, and i cannot write anything in that.I dont understand where the problem is.Cant i call a text editor as a popup in default screen 1000 (used by sap to generate network graphics)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918136#M1147824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T13:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918137#M1147825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'TERM_CONTROL_EDIT'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   TITEL                = P_title&lt;/P&gt;&lt;P&gt;   LANGU                = 'E'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    TEXTLINES            = int_text&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   USER_CANCELLED       = 1&lt;/P&gt;&lt;P&gt;   OTHERS               = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit a table of text with a very nice text editor. Just call TERM_CONTROL_EDIT and supply with the function with a table of text. Table entries are modified in the editor after clicking "ok".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918137#M1147825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918138#M1147826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing the same thing but still the popup which is coming up is empty...no text editor where i could wirte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918138#M1147826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T13:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918139#M1147827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Priya...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which version of SAP are you using..??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918139#M1147827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T13:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918140#M1147828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ECC6&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918140#M1147828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T13:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918141#M1147829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Have used the Class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this it will help to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      g_text_container       TYPE REF TO cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;      g_text_editor          TYPE REF TO cl_gui_textedit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATE OBJECT g_text_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        container_name = 'EMAIL_BOX'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CREATE OBJECT g_text_editor&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;         parent = g_text_container&lt;/P&gt;&lt;P&gt;         wordwrap_mode = cl_gui_textedit=&amp;gt;wordwrap_at_fixed_position&lt;/P&gt;&lt;P&gt;         wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD g_text_editor-&amp;gt;set_toolbar_mode&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        toolbar_mode = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD g_text_editor-&amp;gt;set_statusbar_mode&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        statusbar_mode = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this u need to craete a screen se 51.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 13:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text-editor/m-p/4918141#M1147829</guid>
      <dc:creator>tarangini_katta</dc:creator>
      <dc:date>2008-12-08T13:44:40Z</dc:date>
    </item>
  </channel>
</rss>

