<?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: Create_text FM error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162876#M120986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jeetu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 Probably in Dynpro&lt;/P&gt;&lt;P&gt;  the TEXT is have not been defined / customized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The possible errors are  :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID	Text ID invalid&lt;/P&gt;&lt;P&gt;LANGUAGE	Invalid language&lt;/P&gt;&lt;P&gt;NAME	Invalid text name&lt;/P&gt;&lt;P&gt;OBJECT	Invalid text object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jan 2006 04:57:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-03T04:57:38Z</dc:date>
    <item>
      <title>Create_text FM error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162875#M120985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using create_text in a function module which is called from a dynpro project.Whenever the function module runs in R/3 it is working perfectly but when the function module is called from dynpro ,it is throwing&lt;/P&gt;&lt;P&gt;exception NO_INIT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell what could be the possible error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 04:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162875#M120985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T04:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create_text FM error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162876#M120986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jeetu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 Probably in Dynpro&lt;/P&gt;&lt;P&gt;  the TEXT is have not been defined / customized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The possible errors are  :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID	Text ID invalid&lt;/P&gt;&lt;P&gt;LANGUAGE	Invalid language&lt;/P&gt;&lt;P&gt;NAME	Invalid text name&lt;/P&gt;&lt;P&gt;OBJECT	Invalid text object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 04:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162876#M120986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T04:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create_text FM error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162877#M120987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check whether you have defined the parameters correctly or not. While passing values to the FM the type conflict should not occur. If you check the FM you will see another FM in it&lt;/P&gt;&lt;P&gt;  call function 'INIT_TEXT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            id       = fid&lt;/P&gt;&lt;P&gt;            language = flanguage&lt;/P&gt;&lt;P&gt;            name     = fname&lt;/P&gt;&lt;P&gt;            object   = fobject&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            header   = fheader&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            lines    = tlinetab&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            id       = 01&lt;/P&gt;&lt;P&gt;            language = 02&lt;/P&gt;&lt;P&gt;            name     = 03&lt;/P&gt;&lt;P&gt;            object   = 04.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    raise no_init.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here if id, language, name, object. if any of the parameters fails you may get the error. please check the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 04:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-text-fm-error/m-p/1162877#M120987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T04:59:21Z</dc:date>
    </item>
  </channel>
</rss>

