<?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: Long texts problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795363#M341759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using FM CREATE_TEXT to create the text?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2006 15:59:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-13T15:59:54Z</dc:date>
    <item>
      <title>Long texts problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795361#M341757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating texts for wbs element, i launch the 'read text' function with the name, language , id and object, and it gives me sy-subrc = 0, i launch bapi_transaction_commit after that, and when i launch read_text it returns me my lines but when i go to cj20n to see them, i can´t see my lines, has anybody had this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 15:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795361#M341757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T15:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Long texts problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795362#M341758</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've found similar problem in another transactions. The text was always there but mostly in an other LANGUAGE. This mostly happens in systems with more languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the language code also, try to log into the system on the other language and the text will appear in CJ20N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 15:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795362#M341758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T15:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Long texts problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795363#M341759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using FM CREATE_TEXT to create the text?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 15:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795363#M341759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T15:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Long texts problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795364#M341760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason is that SAVE_TEXT will create text object but will not update the same in the PRPS table. I had the same problem with long text of project (PROJ table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the BAPI commit do this, this is the only option as far as I have known.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* Update the Language Key
UPDATE prps SET txtsp = sy-langu WHERE PSPNR= wa_project-PSPNR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This you can verify by just creating a long text in CJ20N and check the value of txtsp in PRPS table and creating text using SAVE_TEXT and checking the value of txtsp in PRPS table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kathirvel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 16:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795364#M341760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T16:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Long texts problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795365#M341761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you refering to  SAVE_TEXT or CREATE_TEXT? &lt;/P&gt;&lt;P&gt;If long text added to WBS element using above fm's, it's not going to show up in CJ20n because they don't update field PRPS-TXTSP with language key.&lt;/P&gt;&lt;P&gt;You need to do the table update for the text to show up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 16:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-texts-problem/m-p/1795365#M341761</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-12-13T16:07:09Z</dc:date>
    </item>
  </channel>
</rss>

