<?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 longtext in text editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245016#M143285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After Save_text call function module COMMIT_TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Mar 2006 10:59:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-21T10:59:13Z</dc:date>
    <item>
      <title>save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245015#M143284</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;i wrote a bdc program to upload long text into MM01 for PO text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it goes something like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF record OCCURS 10, &lt;/P&gt;&lt;P&gt;matnr_001(018), &lt;/P&gt;&lt;P&gt;werks_003(004), &lt;/P&gt;&lt;P&gt;vkorg_004(004), &lt;/P&gt;&lt;P&gt;vtweg_005(002), &lt;/P&gt;&lt;P&gt;maktx_006(500), &lt;/P&gt;&lt;P&gt;END OF record. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;PERFORM upload. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT record. &lt;/P&gt;&lt;P&gt;PERFORM bdc_dynpro USING 'SAPLMGMM' '0060'. &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PERFORM bdc_dynpro USING 'SAPLMGMM' '4040'. &lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_OKCODE' &lt;/P&gt;&lt;P&gt;'=TEAN'. &lt;/P&gt;&lt;P&gt;PERFORM save_data. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM save_data. &lt;/P&gt;&lt;P&gt;l_head-tdid = '0001'. &lt;/P&gt;&lt;P&gt;l_head-tdspras = 'E'. &lt;/P&gt;&lt;P&gt;l_head-tdname = record-matnr_001. &lt;/P&gt;&lt;P&gt;l_head-tdobject = 'MVKE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n = n + 1. &lt;/P&gt;&lt;P&gt;T_LINES-TDLINE = record-maktx_006. &lt;/P&gt;&lt;P&gt;t_lines-tdformat = n. &lt;/P&gt;&lt;P&gt;append t_lines. &lt;/P&gt;&lt;P&gt;clear t_lines. &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;EXPORTING &lt;/P&gt;&lt;P&gt;header = L_HEAD &lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = 'X' &lt;/P&gt;&lt;P&gt;OWNER_SPECIFIED = 'X' &lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;lines = T_LINES &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;ENDFORM. "SAVE_DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem here is: &lt;/P&gt;&lt;P&gt;in the text editor of sales text in MM01 the longtext which i have it in T_LINES is not getting saved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the mistake pls help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 10:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245015#M143284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T10:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245016#M143285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After Save_text call function module COMMIT_TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 10:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245016#M143285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T10:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245017#M143286</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;the Save_text should be&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;header = L_HEAD[]&lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = 'X' &lt;/P&gt;&lt;P&gt;OWNER_SPECIFIED = 'X' &lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;lines = T_LINES &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;ENDFORM. "SAVE_DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 11:02:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245017#M143286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T11:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245018#M143287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John, &lt;/P&gt;&lt;P&gt;put a breakpoint at SAVE_TEXT. run ur program n c the value of l_head-tdname at the point of calling save_text. now goto the screen wherein u wud ve manually entered the long text. there goto the sapscript editor of the text&lt;DEL&gt;&amp;gt;header&lt;/DEL&gt;&amp;gt; there u ll c the name. now u need to c if ur variable (l_head-tdname) matches exactly with this(including leading zeroes).. if not, then it wont be saved here.&lt;/P&gt;&lt;P&gt;hope it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 11:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245018#M143287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T11:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245019#M143288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi bikash&lt;/P&gt;&lt;P&gt; u r right.&lt;/P&gt;&lt;P&gt; l_head-tdname does not match with sapscript header.&lt;/P&gt;&lt;P&gt; How to get the value of tdname which is in the script header to l_head-tdname.&lt;/P&gt;&lt;P&gt;  bcos i had assigned only material code to l_head-tdname.&lt;/P&gt;&lt;P&gt;pls help me.&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 11:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245019#M143288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T11:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245020#M143289</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;John the name of your text should be the code of material, use a fm to convert the material code for input format: CONVERSION_EXIT_MATN1_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT = &amp;lt;MATNR&amp;gt;&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT = &amp;lt;MATNR&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway make sure which is the name of your text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 11:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245020#M143289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T11:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245021#M143290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just chk out wat the header name contains.. if its the leading zeroes that is creating the problem, then do wat Max has specified.&lt;/P&gt;&lt;P&gt;if its a combination of matnr n something else, then u need to analyse it..let us know wats there in ur header so that we can suggest something.&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;if u observe properly, u ll c that for materials with only numbers, leading zeroes will be there before the material....and for materials with alphanumeric value, blank spaces will be present...&lt;/P&gt;&lt;P&gt;field matnr is 18 characters long...so zeroes &amp;amp; blanks r filled accordingly to make up all the 18 characters..&lt;/P&gt;&lt;P&gt;so chk if ur matnr has any alphabets in it...n in that case use this:&lt;/P&gt;&lt;P&gt;l_name(18) = matnr.&lt;/P&gt;&lt;P&gt;l_name+18(4) = plant&lt;/P&gt;&lt;P&gt;l_name+22 = dist channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put l_name as ur tdname now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Bikash  Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 12:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245021#M143290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T12:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245022#M143291</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;the text name in the header of sapscript is very peculiar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some materials &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is a combination of leading zeros, material name, plant and distribution channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but for some other materials it is a combination of &lt;/P&gt;&lt;P&gt;material name, blank space, plant and distribution channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above two combination can occur even for the same material type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very weired.&lt;/P&gt;&lt;P&gt;Thought MAX's solution helped for the first combination it did not help for second combination&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suggest me a solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 13:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245022#M143291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T13:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245023#M143292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am guessing that you have some materials that are alphanumeric and others that are purely numeric. In either case, you have to use the conversion exit call. But just before you do that, please add this additional line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT record-matnr_001 LEFT DELETING LEADING SPACE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 16:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245023#M143292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T16:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245024#M143293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, if you are using the function module, why are you doing a BDC? You cannot do a BDC and call this funciton module in the middle. All you have to do is to call the SAVE_TEXT function module after you fill in the appropriate parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 16:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245024#M143293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T16:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245025#M143294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function SAVE_TEXT is independent of the BDC process - you don't need the BDC logic before you call it.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on your version of SAP the language key might be EN instead of E.  Just use&lt;/P&gt;&lt;P&gt; l_head-tdspras = sy-langu. &lt;/P&gt;&lt;P&gt;to get the right one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The easiest way to verify that you're using the correct ID and OBJECT is to manually change the text in MM02, then use SE16 to view the STXH table.  Query STXH with TDNAME = &amp;lt;your material number&amp;gt;.  Then confirm the values of TDOBJECT and TDID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the history of your text change to be saved you should actually use function BAPI_MATERIAL_SAVEDATA (passing the data in internal table MATERIALLONGTEXT).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 17:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245025#M143294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T17:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245026#M143295</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;I believe the name of text is the key of MVKE, so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATNR, VKORG and VTWEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need only to convert material code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 17:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245026#M143295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T17:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: save longtext in text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245027#M143296</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;I believe the name of text is the key of MVKE, so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATNR, VKORG and VTWEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need only to convert material code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;INPUT = matnr&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;OUTPUT = matnr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE MATNR VKORG VTWEG INTO l_head-tdname&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 17:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-longtext-in-text-editor/m-p/1245027#M143296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T17:23:21Z</dc:date>
    </item>
  </channel>
</rss>

