<?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 create standard text with CREATE_TEXT FM problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443718#M13172</link>
    <description>&lt;P&gt;I have created SO10 text using CREATE_TEXT FM, while in debugging, i found the FM is successfully executed and i could read the text using READ_TEXT FM, but i cannot see the standard text in SO10 transaction.&lt;/P&gt;&lt;P&gt;Why is it so? where is my text stored?&lt;/P&gt;</description>
    <pubDate>Tue, 06 Jun 2017 06:35:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-06-06T06:35:55Z</dc:date>
    <item>
      <title>create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443718#M13172</link>
      <description>&lt;P&gt;I have created SO10 text using CREATE_TEXT FM, while in debugging, i found the FM is successfully executed and i could read the text using READ_TEXT FM, but i cannot see the standard text in SO10 transaction.&lt;/P&gt;&lt;P&gt;Why is it so? where is my text stored?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 06:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443718#M13172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-06-06T06:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443719#M13173</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try to import header from read_text and check whether the header in SO10 is same as the header of read_text ?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 07:00:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443719#M13173</guid>
      <dc:creator>satyapriyanka_vana</dc:creator>
      <dc:date>2017-06-06T07:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443720#M13174</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Are you using COMMIT WORK AND WAIT after create_text FM and save_direct = 'X'.&lt;/P&gt;&lt;P&gt;You can also try &lt;STRONG&gt;CALL FUNCTION 'SAVE_TEXT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 07:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443720#M13174</guid>
      <dc:creator>Chintu6august</dc:creator>
      <dc:date>2017-06-06T07:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443721#M13175</link>
      <description>&lt;P&gt;Hi Paru,&lt;/P&gt;&lt;P&gt;As Chintu said, I think that you have to Add  COMMIT WORK AND WAIT. to your code like in the code bellow:&lt;/P&gt;&lt;P&gt;REPORT ZINET_TEXT01.&lt;/P&gt;&lt;P&gt;
&lt;BR /&gt;
DATA : it_FLINES TYPE STANDARD TABLE OF TLINE.&lt;BR /&gt;
&lt;BR /&gt;
START-OF-SELECTION.&lt;BR /&gt;
&lt;BR /&gt;
APPEND 'BLABLABLABLABNLABLA' TO it_FLINES.&lt;BR /&gt;
APPEND 'BLABLABLABLABNLABLA' TO it_FLINES.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
CALL FUNCTION 'CREATE_TEXT'&lt;BR /&gt;
 EXPORTING&lt;BR /&gt;
 FID = 'ST'&lt;BR /&gt;
 FLANGUAGE = 'E'&lt;BR /&gt;
 FNAME = 'ZINETEST02'&lt;BR /&gt;
 FOBJECT = 'TEXT'&lt;BR /&gt;
* SAVE_DIRECT = 'X'&lt;BR /&gt;
* FFORMAT = '*'&lt;BR /&gt;
 TABLES&lt;BR /&gt;
 FLINES = it_FLINES&lt;BR /&gt;
 EXCEPTIONS&lt;BR /&gt;
 NO_INIT = 1&lt;BR /&gt;
 NO_SAVE = 2&lt;BR /&gt;
 OTHERS = 3&lt;BR /&gt;
 .&lt;BR /&gt;
IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt;
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt;
 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt;
ELSE.&lt;BR /&gt;
 COMMIT WORK AND WAIT.&lt;BR /&gt;
ENDIF.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 08:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443721#M13175</guid>
      <dc:creator>salah_zinet</dc:creator>
      <dc:date>2017-06-06T08:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443722#M13176</link>
      <description>&lt;P&gt;Hi Salah,&lt;/P&gt;&lt;P&gt;Have you tried without COMMIT statement. Because, I didn't use COMMIT statement and still I can view the text lines in the standard text.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 09:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443722#M13176</guid>
      <dc:creator>satyapriyanka_vana</dc:creator>
      <dc:date>2017-06-06T09:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443723#M13177</link>
      <description>&lt;P&gt;Hi Priyanka.&lt;/P&gt;&lt;P&gt;Yes, I tried the FM  CREATE_TEXT  without COMMIT statement and I didn't find the text lines after running the program. &lt;/P&gt;&lt;P&gt;What I know about COMMIT Statement is : &lt;/P&gt;&lt;P&gt;It terminates an &lt;STRONG&gt;SAP LUW&lt;/STRONG&gt; and stores the changes on the data base, ( This means that it applies the changes &lt;STRONG&gt;immediately&lt;/STRONG&gt; to the database ),&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Salah.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 13:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443723#M13177</guid>
      <dc:creator>salah_zinet</dc:creator>
      <dc:date>2017-06-06T13:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: create standard text with CREATE_TEXT FM problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443724#M13178</link>
      <description>&lt;P&gt;The transaction SO10 is only for the long texts which are named "standard texts", i.e. those in table STXH with TDOBJECT = 'TEXT'.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 18:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-standard-text-with-create-text-fm-problem/m-p/443724#M13178</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-06-06T18:50:43Z</dc:date>
    </item>
  </channel>
</rss>

