<?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_text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172121#M460846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wat is the maximum long text that can be uploaded using create_text.can any body send me the documentation about this function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 08:16:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-30T08:16:13Z</dc:date>
    <item>
      <title>create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172121#M460846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wat is the maximum long text that can be uploaded using create_text.can any body send me the documentation about this function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172121#M460846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172122#M460847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;255 char's per line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172122#M460847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172123#M460848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   i think this will help u,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3107083"&gt;&lt;/A&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;Reward points if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172123#M460848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172124#M460849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;we send the text lines through the internal table(in below  &lt;/P&gt;&lt;P&gt;through it_tline table)  so the length of the text can be any thing there is no limit, just you need to append all the text lines of 132 characters to this itab &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could find this code in net. Just go through that...&lt;/P&gt;&lt;P&gt;FUNCTION zcc_updateorder_text. Baically those 2 parameters are TDNAME, TDOBJECT of the Standard text which you can view in So10. Also in SCRIPT EDITER ==&amp;gt; goto--&amp;gt;header&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;TM&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*"----------------------------------------------------------------------
*"*"Interfase local
*" IMPORTING
*" REFERENCE(AUFNR) TYPE AUFK-AUFNR
*"----------------------------------------------------------------------
  DATA: p_orden TYPE aufk-aufnr,
  p_tdname TYPE thead-tdname,
  p_tdid TYPE thead-tdid,
  p_tdobject TYPE thead-tdobject,
  p_header TYPE thead,
  it_tline TYPE STANDARD TABLE OF tline
  WITH HEADER LINE,
  p_function.
 
 
 
  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
       EXPORTING
            input  = aufnr
       IMPORTING
            output = p_orden.
 
  CONCATENATE sy-mandt
  p_orden
  INTO p_tdname.
 
  it_tline-tdline = 'Some Text...'.
  APPEND it_tline.
 
  p_tdid = 'KOPF'.
  p_tdobject = 'AUFK'.
 
  CALL FUNCTION 'CREATE_TEXT'
       EXPORTING
            fid         = p_tdid
            flanguage   = sy-langu
            fname       = p_tdname
            fobject     = p_tdobject
            save_direct = 'X'
            fformat     = '*'
       TABLES
            flines      = it_tline
       EXCEPTIONS
            no_init     = 1
            no_save     = 2
            OTHERS      = 3.
 
ENDFUNCTION.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rk Pasupuleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172124#M460849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172125#M460850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maximum long text that can be uploaded using create_text FM is 132 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Balakrishna.N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172125#M460850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: create_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172126#M460851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no limit on the size of text you send to this FM. Because you need to split the text into lines of ITAB. Each line of itab is of 132 characters. Hence if your text is 164 characters long then itab will contain 2 lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence yo should implement the code to split the text into 132 character lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 08:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text/m-p/2172126#M460851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T08:47:51Z</dc:date>
    </item>
  </channel>
</rss>

