<?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: SAVE_TEXT function module for text editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296472#M788897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi juzme,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes you can do the changes.please go for the details i give to you and dont forget to reward me the points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually, the system implicitly calls the function module SAVE_TEXT if you leave the editor choosing Save, provided the text is stored in the text file according to the allocated text object. To deactivate this call, use the parameter SAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have used fm commit_text too after that. &lt;/P&gt;&lt;P&gt;Here is the sample code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move '000103169498' to head1-tdname." Its hard coded for current use &lt;/P&gt;&lt;P&gt;move 'EN' to head1-tdspras. &lt;/P&gt;&lt;P&gt;move 'LTXT' to head1-tdid. &lt;/P&gt;&lt;P&gt;move 'QMEL' to head1-tdobject. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'SAVE_TEXT' &lt;/P&gt;&lt;P&gt;exporting &lt;/P&gt;&lt;P&gt;client = sy-mandt &lt;/P&gt;&lt;P&gt;header = head1 &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INSERT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SAVEMODE_DIRECT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OWNER_SPECIFIED = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LOCAL_CAT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FUNCTION* NEWHEADER tables &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lines = lines " lines have single entry as some text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exceptions &lt;/P&gt;&lt;P&gt;id = 1 &lt;/P&gt;&lt;P&gt;language = 2 &lt;/P&gt;&lt;P&gt;name = 3 &lt;/P&gt;&lt;P&gt;object = 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;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;[or] try this...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the important parameters that are discussed in the previous question of reading texts. We will need the same parameters for saving the text as well. The function modules that you can use for this will be SAVE_TEXT followed by COMMIT_TEXT. The parameters play a very important roles as you might not see the saved text in the standard transaction if you give wrong parameter values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT' EXPORTING*   CLIENT                = SY-MANDT   HEADER                =*   INSERT                = ' '*   SAVEMODE_DIRECT       = ' '*   OWNER_SPECIFIED       = ' '*   LOCAL_CAT             = ' '* IMPORTING*   FUNCTION              =*   NEWHEADER             = TABLES   LINES                 =* EXCEPTIONS*   ID                    = 1*   LANGUAGE              = 2*   NAME                  = 3*   OBJECT                = 4*   OTHERS                = 5         .IF SY-SUBRC &amp;lt;&amp;gt; 0.* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.ENDIF.CALL FUNCTION 'COMMIT_TEXT'* EXPORTING*   OBJECT                = '&lt;STRONG&gt;'&lt;/STRONG&gt;   NAME                  = '&lt;STRONG&gt;'&lt;/STRONG&gt;   ID                    = '&lt;STRONG&gt;'&lt;/STRONG&gt;   LANGUAGE              = '&lt;STRONG&gt;'&lt;/STRONG&gt;   SAVEMODE_DIRECT       = ' '*   KEEP                  = ' '*   LOCAL_CAT             = ' '* IMPORTING*   COMMIT_COUNT          =* TABLES*   T_OBJECT              =*   T_NAME                =*   T_ID                  =*   T_LANGUAGE            =&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jan 2008 10:19:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-21T10:19:44Z</dc:date>
    <item>
      <title>SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296468#M788893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I come across the SAVE_TEXT is a function that allow us to save what is inside the text editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know if you got any codes example to implement this SAVE_TEXT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I suppose to make any changes to my text editor codes as below?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;MODULE STATUS_9000 OUTPUT.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SCREEN_9000'.&lt;/P&gt;&lt;P&gt;SET TITLEBAR 'TITLE_9000'.&lt;/P&gt;&lt;P&gt;  IF CODE_EDITOR IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT CODE_EDITOR_CONTAINER&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;         CONTAINER_NAME = 'GEN_CODE'&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;&lt;/P&gt;&lt;P&gt;         CREATE OBJECT CODE_EDITOR&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        PARENT = CODE_EDITOR_CONTAINER&lt;/P&gt;&lt;P&gt;        WORDWRAP_MODE =&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CL_GUI_TEXTEDIT=&amp;gt;WORDWRAP_OFF&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          CL_GUI_TEXTEDIT=&amp;gt;WORDWRAP_AT_FIXED_POSITION&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CL_GUI_TEXTEDIT=&amp;gt;WORDWRAP_AT_WINDOWBORDER&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        WORDWRAP_POSITION = G_EDITOR_LENGTH&lt;/P&gt;&lt;P&gt;        WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=&amp;gt;TRUE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "STATUS_9002 OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 09:48:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296468#M788893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T09:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296469#M788894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://erpgenie.com/abaptips/content/view/94/33/" target="test_blank"&gt;http://erpgenie.com/abaptips/content/view/94/33/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 09:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296469#M788894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T09:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296470#M788895</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;U can do the changes for ur text. before that u should know ur text ID, text object name, language,  then all the parameters u have to pass to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for getting text ,text object name, language u have to doule click on ur text then u will get all  the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward me a points if it is use full answer.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 10:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296470#M788895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T10:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296471#M788896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structure -&amp;gt;&lt;/P&gt;&lt;P&gt;Function call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING CLIENT = SY-MANDT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HEADER = ?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OWNER_SPECIFIED = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING FUNCTION = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEWHEADER = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES LINES = ?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS ID =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGUAGE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECT =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/d6/0db8ef494511d182b70000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/d6/0db8ef494511d182b70000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 10:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296471#M788896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T10:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296472#M788897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi juzme,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes you can do the changes.please go for the details i give to you and dont forget to reward me the points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually, the system implicitly calls the function module SAVE_TEXT if you leave the editor choosing Save, provided the text is stored in the text file according to the allocated text object. To deactivate this call, use the parameter SAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have used fm commit_text too after that. &lt;/P&gt;&lt;P&gt;Here is the sample code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move '000103169498' to head1-tdname." Its hard coded for current use &lt;/P&gt;&lt;P&gt;move 'EN' to head1-tdspras. &lt;/P&gt;&lt;P&gt;move 'LTXT' to head1-tdid. &lt;/P&gt;&lt;P&gt;move 'QMEL' to head1-tdobject. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'SAVE_TEXT' &lt;/P&gt;&lt;P&gt;exporting &lt;/P&gt;&lt;P&gt;client = sy-mandt &lt;/P&gt;&lt;P&gt;header = head1 &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INSERT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SAVEMODE_DIRECT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OWNER_SPECIFIED = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LOCAL_CAT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FUNCTION* NEWHEADER tables &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lines = lines " lines have single entry as some text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exceptions &lt;/P&gt;&lt;P&gt;id = 1 &lt;/P&gt;&lt;P&gt;language = 2 &lt;/P&gt;&lt;P&gt;name = 3 &lt;/P&gt;&lt;P&gt;object = 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;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;[or] try this...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the important parameters that are discussed in the previous question of reading texts. We will need the same parameters for saving the text as well. The function modules that you can use for this will be SAVE_TEXT followed by COMMIT_TEXT. The parameters play a very important roles as you might not see the saved text in the standard transaction if you give wrong parameter values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT' EXPORTING*   CLIENT                = SY-MANDT   HEADER                =*   INSERT                = ' '*   SAVEMODE_DIRECT       = ' '*   OWNER_SPECIFIED       = ' '*   LOCAL_CAT             = ' '* IMPORTING*   FUNCTION              =*   NEWHEADER             = TABLES   LINES                 =* EXCEPTIONS*   ID                    = 1*   LANGUAGE              = 2*   NAME                  = 3*   OBJECT                = 4*   OTHERS                = 5         .IF SY-SUBRC &amp;lt;&amp;gt; 0.* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.ENDIF.CALL FUNCTION 'COMMIT_TEXT'* EXPORTING*   OBJECT                = '&lt;STRONG&gt;'&lt;/STRONG&gt;   NAME                  = '&lt;STRONG&gt;'&lt;/STRONG&gt;   ID                    = '&lt;STRONG&gt;'&lt;/STRONG&gt;   LANGUAGE              = '&lt;STRONG&gt;'&lt;/STRONG&gt;   SAVEMODE_DIRECT       = ' '*   KEEP                  = ' '*   LOCAL_CAT             = ' '* IMPORTING*   COMMIT_COUNT          =* TABLES*   T_OBJECT              =*   T_NAME                =*   T_ID                  =*   T_LANGUAGE            =&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 10:19:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296472#M788897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T10:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296473#M788898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;before saving the text,check the save mode in table TTXOB for the TDOBJECT u have used.If it is D,then u have to use&lt;/P&gt;&lt;P&gt;FMs- SAVE_TEXT to save&lt;/P&gt;&lt;P&gt;COMMIT_TEXT to update in DB.&lt;/P&gt;&lt;P&gt;If save mode is V,u have to use&lt;/P&gt;&lt;P&gt;INTTAB_SAVE_TEXT and&lt;/P&gt;&lt;P&gt;INTTAB_COMMIT_TEXT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For both to read u can use the FM- READ_TEXT to read the saved text later&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 10:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296473#M788898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T10:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT function module for text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296474#M788899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then may I know where should I put the SAVE_TEXT function? I still don't really understand how are the parameters used in this function. Can someone explain it more clearly to me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2008 01:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text-function-module-for-text-editor/m-p/3296474#M788899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-22T01:04:34Z</dc:date>
    </item>
  </channel>
</rss>

