<?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 Regarding Text Editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471024#M1252920</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;&lt;/P&gt;&lt;P&gt;I am working on Z-table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on this table i have create one &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module pool programm in this module pool screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have created one Text Editor option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to save this edited text ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this one does  i need to create text objects ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text name ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to carry on ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MOHD..,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2009 09:23:25 GMT</pubDate>
    <dc:creator>abdulgaffarmohd</dc:creator>
    <dc:date>2009-04-20T09:23:25Z</dc:date>
    <item>
      <title>Regarding Text Editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471024#M1252920</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;&lt;/P&gt;&lt;P&gt;I am working on Z-table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on this table i have create one &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module pool programm in this module pool screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have created one Text Editor option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to save this edited text ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this one does  i need to create text objects ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text name ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to carry on ..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MOHD..,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 09:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471024#M1252920</guid>
      <dc:creator>abdulgaffarmohd</dc:creator>
      <dc:date>2009-04-20T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Text Editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471025#M1252921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create text objects from the SE75.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and while saving the text from that modulepool program, use the FM CRETE_TEXT. in that you have to give your created text object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 09:30:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471025#M1252921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T09:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Text Editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471026#M1252922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;use the following to get pointers to your query :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Declaration&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA :  container TYPE REF TO cl_gui_custom_container,
        g_editor TYPE REF TO cl_gui_textedit.
*FIELD-SYMBOLS : &amp;lt;itab&amp;gt; TYPE STANDARD TABLE.
TYPES: BEGIN OF x_texttable,
  line_length(132) TYPE c,
END OF x_texttable.

DATA : g_t_text TYPE TABLE OF x_texttable.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IN PBO&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


  CREATE OBJECT container
    EXPORTING container_name = 'G_CUSTOM'.

  CREATE OBJECT g_editor
    EXPORTING parent = container.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IN PAI&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD g_editor-&amp;gt;get_text_as_r3table
        IMPORTING
          table           = g_t_text
        EXCEPTIONS
          error_dp        = 1
          error_dp_create = 2
          OTHERS          = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mansi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 09:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-text-editor/m-p/5471026#M1252922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T09:32:46Z</dc:date>
    </item>
  </channel>
</rss>

