<?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: Adding Long text on a network activity in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253340#M1213606</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;   well it seems if i use the commit or the FM it works. now i have a new problem i was updating the text on the Operative network cn22, now i am trying to do the same for the Standard network (cn02) and it is not working. I am using the following info to update the text line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'ROUTING'                 to thead-tdobject.&lt;/P&gt;&lt;P&gt;  move 'PLPO'                       to thead-tdid.&lt;/P&gt;&lt;P&gt;  move 'EN'                           to thead-tdspras.&lt;/P&gt;&lt;P&gt;  move '7000100000400000002000000020' to thead-tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.  i do the FM READ_TEXT, then SAVE_TEXT. Then the FM COMMIT_TEXT. but it does not add these new lines to the long text of the network activity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     thanks scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2009 15:05:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-02T15:05:47Z</dc:date>
    <item>
      <title>Adding Long text on a network activity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253336#M1213602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;  i am uploading a file  and then i am wanting to add long text to a network activity. i have tried the FM EDIT_TEXT_INLINE and SAVE TEXT. here is an example of how i used it. &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          = thead&lt;/P&gt;&lt;P&gt;            insert          = ' '&lt;/P&gt;&lt;P&gt;            savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            lines           = tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'AUFK'                         to thead-tdobject.&lt;/P&gt;&lt;P&gt;  move 'AVOT'                         to thead-tdid.&lt;/P&gt;&lt;P&gt;  move 'EN'                           to thead-tdspras.&lt;/P&gt;&lt;P&gt;  move '700000007084900000002'        to thead-tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'test' to tline-tdline. append tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not getting the text on the long text of the activity ?&lt;/P&gt;&lt;P&gt;anyone have any ideas. .thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 22:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253336#M1213602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T22:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Long text on a network activity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253337#M1213603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you execute FM &lt;STRONG&gt;COMMIT_TEXT&lt;/STRONG&gt; after &lt;STRONG&gt;SAVE_TEXT&lt;/STRONG&gt; ? It's documented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 22:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253337#M1213603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T22:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Long text on a network activity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253338#M1213604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt; thanks for your quick response.&lt;/P&gt;&lt;P&gt; i have a commit work there already. i was adding one test line and it does not show up on the network activity, now when i add a second test line the second line item shows up.    exp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move '*'    to tline-tdformat.        "this does not show up&lt;/P&gt;&lt;P&gt;  move 'test' to tline-tdline.&lt;/P&gt;&lt;P&gt;  append tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move '*'    to tline-tdformat.       " this one does.&lt;/P&gt;&lt;P&gt;  move 'test 2' to tline-tdline.&lt;/P&gt;&lt;P&gt;  append tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it appears i have to do some more research as to why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2009 12:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253338#M1213604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-25T12:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Long text on a network activity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253339#M1213605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to use the particular FM I mentioned. It's different than a database COMMIT.&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, 25 Feb 2009 14:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253339#M1213605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-25T14:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Long text on a network activity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253340#M1213606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;   well it seems if i use the commit or the FM it works. now i have a new problem i was updating the text on the Operative network cn22, now i am trying to do the same for the Standard network (cn02) and it is not working. I am using the following info to update the text line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'ROUTING'                 to thead-tdobject.&lt;/P&gt;&lt;P&gt;  move 'PLPO'                       to thead-tdid.&lt;/P&gt;&lt;P&gt;  move 'EN'                           to thead-tdspras.&lt;/P&gt;&lt;P&gt;  move '7000100000400000002000000020' to thead-tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.  i do the FM READ_TEXT, then SAVE_TEXT. Then the FM COMMIT_TEXT. but it does not add these new lines to the long text of the network activity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     thanks scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 15:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-long-text-on-a-network-activity/m-p/5253340#M1213606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T15:05:47Z</dc:date>
    </item>
  </channel>
</rss>

