<?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 text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439608#M1412058</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;U need to transfer the text to parameter NOTFULLTXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2009 10:40:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-10T10:40:00Z</dc:date>
    <item>
      <title>Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439606#M1412056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone please explain how to add activity long text in the notification?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently i am using BAPI_ALM_NOTIFY_DATA_ADD&lt;/P&gt;&lt;P&gt;BAPI_ALM_NOTIFY_SAVE&lt;/P&gt;&lt;P&gt;BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is adding a activity but long text is not getting updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krish...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 10:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439606#M1412056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T10:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439607#M1412057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To save the long text you have to use the SAVE_TEXT FM. With the following info:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: ST_THEAD TYPE THEAD.

ST_HEAD-TDOBJECT = 'QMMA'.
ST_HEAD-TDNAME = Your Notification Number.
ST_HEAD-TDID = 'LTXT'.
ST_HEAD-TDSPRAS = SY-LANGU.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 10:38:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439607#M1412057</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-12-10T10:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439608#M1412058</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;U need to transfer the text to parameter NOTFULLTXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 10:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439608#M1412058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T10:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439609#M1412059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought NOTLONGTXT is for Notification Long Text only &amp;amp; activity long text cannot be added with this. Stupid me &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
IT_NOTIFLTXT TYPE STANDARD TABLE OF BAPI2080_NOTFULLTXTE,
WA_NOTIFLTXT TYPE BAPI2080_NOTFULLTXTE.

WA_NOTIFLTXT-OBJTYPE = 'QMMA'.
WA_NOTIFLTXT-OBJKEY = '00000001'.
WA_NOTIFLTXT-TEXT_LINE = 'Your Long Text'.

APPEND WA_NOTIFLTXT TO IT_NOTIFLTXT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 10:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439609#M1412059</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-12-10T10:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439610#M1412060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using one function module it is designed for client specific in that those function modules are included. This long text filed assigned to one function module in that function module Object type, object key, format col and text line fields are there I filled every thing even though it won't fill the activity long text.hope that the problem is clearly understood.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 10:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439610#M1412060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T10:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439611#M1412061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As suggested by Max as well.. You can use  &lt;STRONG&gt;NOTFULLTXT&lt;/STRONG&gt; (Present under TABLES)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare the internal table of type BAPI2080_NOTFULLTXTI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill the values for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJTYPE&lt;/P&gt;&lt;P&gt;OBJKEY&lt;/P&gt;&lt;P&gt;FORMAT_COL&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TEXT_LINE&lt;/STRONG&gt;  132 Chars Only "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append the lines to this internal table then pass it in BAPI &lt;STRONG&gt;BAPI_ALM_NOTIF_DATA_ADD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Take care as same as SAVE_TEXT ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here TEXT_LINE is of length 132 Char...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if your Long text is having more length then split it in 132 chars and then append one by one to internal table and then pass it to BAPI as internal tabl...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 11:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439611#M1412061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439612#M1412062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ilesh Nandaniya, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for answer it is really helped me and I resolved the problem your effort is really appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krish.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 12:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/6439612#M1412062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T12:47:02Z</dc:date>
    </item>
  </channel>
</rss>

