<?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 Help in editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774945#M334334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;i wrote this code to show editor&lt;/P&gt;&lt;P&gt;i want to show text in the editor and to habe to option to change it and save&lt;/P&gt;&lt;P&gt;but i dont have option to do it.&lt;/P&gt;&lt;P&gt;How can i save the new text?&lt;/P&gt;&lt;P&gt;Maybe you have an example of better editor?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code:&lt;/P&gt;&lt;P&gt;*Create LV_DOCKING&lt;/P&gt;&lt;P&gt;      CREATE OBJECT LV_DOCKING&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      REPID = LV_REPID&lt;/P&gt;&lt;P&gt;      DYNNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;      SIDE = CL_GUI_DOCKING_CONTAINER=&amp;gt;DOCK_AT_BOTTOM&lt;/P&gt;&lt;P&gt;      EXTENSION = '300'&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CNTL_ERROR = 1&lt;/P&gt;&lt;P&gt;      CNTL_SYSTEM_ERROR = 2&lt;/P&gt;&lt;P&gt;      CREATE_ERROR = 3&lt;/P&gt;&lt;P&gt;      LIFETIME_ERROR = 4&lt;/P&gt;&lt;P&gt;      LIFETIME_DYNPRO_DYNPRO_LINK = 5.&lt;/P&gt;&lt;P&gt;    ENDIF .&lt;/P&gt;&lt;P&gt;*Set posion&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_DOCKING-&amp;gt;SET_WIDTH&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        WIDTH = 390.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF LV_EDITOR IS INITIAL.&lt;/P&gt;&lt;P&gt;*Create editor&lt;/P&gt;&lt;P&gt;      CREATE OBJECT LV_EDITOR&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      PARENT = LV_DOCKING&lt;/P&gt;&lt;P&gt;      WORDWRAP_MODE = CL_GUI_TEXTEDIT=&amp;gt;WORDWRAP_AT_FIXED_POSITION&lt;/P&gt;&lt;P&gt;      WORDWRAP_POSITION = 256&lt;/P&gt;&lt;P&gt;      MAX_NUMBER_CHARS = 100000.&lt;/P&gt;&lt;P&gt;    ENDIF .&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_EDITOR-&amp;gt;SET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        TABLE  = LT_TEXTLINES&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_EDITOR-&amp;gt;GET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        TABLE                  = LT_TEXTLINES&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ERROR_DP               = 1&lt;/P&gt;&lt;P&gt;        ERROR_CNTL_CALL_METHOD = 2&lt;/P&gt;&lt;P&gt;        ERROR_DP_CREATE        = 3&lt;/P&gt;&lt;P&gt;        POTENTIAL_DATA_LOSS    = 4&lt;/P&gt;&lt;P&gt;        OTHERS                 = 5.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 10 Dec 2006 11:13:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-10T11:13:02Z</dc:date>
    <item>
      <title>Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774945#M334334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;i wrote this code to show editor&lt;/P&gt;&lt;P&gt;i want to show text in the editor and to habe to option to change it and save&lt;/P&gt;&lt;P&gt;but i dont have option to do it.&lt;/P&gt;&lt;P&gt;How can i save the new text?&lt;/P&gt;&lt;P&gt;Maybe you have an example of better editor?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code:&lt;/P&gt;&lt;P&gt;*Create LV_DOCKING&lt;/P&gt;&lt;P&gt;      CREATE OBJECT LV_DOCKING&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      REPID = LV_REPID&lt;/P&gt;&lt;P&gt;      DYNNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;      SIDE = CL_GUI_DOCKING_CONTAINER=&amp;gt;DOCK_AT_BOTTOM&lt;/P&gt;&lt;P&gt;      EXTENSION = '300'&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CNTL_ERROR = 1&lt;/P&gt;&lt;P&gt;      CNTL_SYSTEM_ERROR = 2&lt;/P&gt;&lt;P&gt;      CREATE_ERROR = 3&lt;/P&gt;&lt;P&gt;      LIFETIME_ERROR = 4&lt;/P&gt;&lt;P&gt;      LIFETIME_DYNPRO_DYNPRO_LINK = 5.&lt;/P&gt;&lt;P&gt;    ENDIF .&lt;/P&gt;&lt;P&gt;*Set posion&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_DOCKING-&amp;gt;SET_WIDTH&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        WIDTH = 390.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF LV_EDITOR IS INITIAL.&lt;/P&gt;&lt;P&gt;*Create editor&lt;/P&gt;&lt;P&gt;      CREATE OBJECT LV_EDITOR&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      PARENT = LV_DOCKING&lt;/P&gt;&lt;P&gt;      WORDWRAP_MODE = CL_GUI_TEXTEDIT=&amp;gt;WORDWRAP_AT_FIXED_POSITION&lt;/P&gt;&lt;P&gt;      WORDWRAP_POSITION = 256&lt;/P&gt;&lt;P&gt;      MAX_NUMBER_CHARS = 100000.&lt;/P&gt;&lt;P&gt;    ENDIF .&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_EDITOR-&amp;gt;SET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        TABLE  = LT_TEXTLINES&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD LV_EDITOR-&amp;gt;GET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        TABLE                  = LT_TEXTLINES&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ERROR_DP               = 1&lt;/P&gt;&lt;P&gt;        ERROR_CNTL_CALL_METHOD = 2&lt;/P&gt;&lt;P&gt;        ERROR_DP_CREATE        = 3&lt;/P&gt;&lt;P&gt;        POTENTIAL_DATA_LOSS    = 4&lt;/P&gt;&lt;P&gt;        OTHERS                 = 5.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774945#M334334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-10T11:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774946#M334335</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;Cant you try the EDITOR-CALL FOR ITAB command. you can set some default text into it and also retrieve the changed text also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774946#M334335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-10T11:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774947#M334336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this call would get you the user entered text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD LV_EDITOR-&amp;gt;GET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;TABLE = LT_TEXTLINES&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;ERROR_DP = 1&lt;/P&gt;&lt;P&gt;ERROR_CNTL_CALL_METHOD = 2&lt;/P&gt;&lt;P&gt;ERROR_DP_CREATE = 3&lt;/P&gt;&lt;P&gt;POTENTIAL_DATA_LOSS = 4&lt;/P&gt;&lt;P&gt;OTHERS = 5.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you seems to already use it. are you having problem in that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774947#M334336</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-10T11:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774948#M334337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this demo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPTEXTEDIT_DEMO_3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:24:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774948#M334337</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-10T11:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774949#M334338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks about the answers&lt;/P&gt;&lt;P&gt;But i didnt undrtsand how i can save the data i wrote in the editor&lt;/P&gt;&lt;P&gt;i dont have save icon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774949#M334338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-10T11:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help in editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774950#M334339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to set PF status in your application for save button and onclick of that you have to use the method explined aboe to get the user entered text and then save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2006 11:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-editor/m-p/1774950#M334339</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-10T11:43:32Z</dc:date>
    </item>
  </channel>
</rss>

