<?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: edit_text in sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618819#M871785</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl explain me with one example on read_text, save_text, edit_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vamsykrishna.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good explaination good ponits&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Mar 2008 10:51:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-20T10:51:33Z</dc:date>
    <item>
      <title>edit_text in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618816#M871782</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;&lt;/P&gt;&lt;P&gt;How we can include custom Text in sap script. &lt;/P&gt;&lt;P&gt;and how we can use FM's Edit_text, Create_text, read_text etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vamsykrishna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 10:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618816#M871782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T10:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: edit_text in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618817#M871783</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;EDIT_TEXT&lt;/P&gt;&lt;P&gt;This function module calls the fullscreen editor. You can use the editor functions to edit the text lines. The system sets the editor interface according to the interface specification in the text object.&lt;/P&gt;&lt;P&gt;Usually, the system implicitly calls the function module SAVE_TEXT if you leave the editor choosing Save, provided the text is stored in the text file according to the allocated text object. To deactivate this call, use the parameter SAVE.&lt;/P&gt;&lt;P&gt;If the field TDFORMAT in the text header contains SPACE, the system calls the SAPscript Editor. Otherwise, it calls the function module EDIT_TEXT_FORMAT_xxx where xxx is the contents of the field TDFORMAT. This function module then calls the editor required for the specified text format. Which of the parameters passed with EDIT_TEXT the system evaluates, depends on this interface module and the called word processing program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ_TEXT&lt;/P&gt;&lt;P&gt;READ_TEXT provides a text for the application program in the specified work areas.&lt;/P&gt;&lt;P&gt;The function module reads the desired text from the text file, the text memory, or the archive. You must fully specify the text using OBJECT, NAME, ID, and LANGUAGE. An internal work area can hold only one text; therefore, generic specifications are not allowed with these options.&lt;/P&gt;&lt;P&gt;After successful reading, the system places header information and text lines into the work areas specified with HEADER and LINES.&lt;/P&gt;&lt;P&gt;If a reference text is used, SAPscript automatically processes the reference chain and provides the text lines found in the text at the end of the chain. If an error occurs, the system leaves the function module and triggers the exception REFERENCE_CHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 10:25:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618817#M871783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T10:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: edit_text in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618818#M871784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to include a text in SAP-Script, you need following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/:  INCLUDE TESTTEXT OBJECT TEXT ID ST LANGUAGE &amp;amp;NAST-SPRAS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will include a SO10 Standard text "TESTTEXT" in the corresponding lagnuage in your form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in SAP-Script you can not use statements like call funtion: edit_text, read_text, save_text, commit_text, delete_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to do so you need to jump off to an external perform like following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/:   Perform edit_text in program YSD_PERFORM&lt;/P&gt;&lt;P&gt;/:   USING &amp;amp;NAST-SPRAS&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;VARIABLE&amp;amp;&lt;/P&gt;&lt;P&gt;/:   ENDPERFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your external form routine you can then use all of the above named statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 10:39:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618818#M871784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T10:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: edit_text in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618819#M871785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl explain me with one example on read_text, save_text, edit_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vamsykrishna.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good explaination good ponits&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 10:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text-in-sapscript/m-p/3618819#M871785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T10:51:33Z</dc:date>
    </item>
  </channel>
</rss>

