<?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: read_text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200527#M762788</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;Select the QMNUM from QMEL table and store in local variable. Then pass the variable into the FM name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or u need any other requirement in this reg?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2007 11:59:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-07T11:59:15Z</dc:date>
    <item>
      <title>read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200526#M762787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling one function module (read_text) to read long text.&lt;/P&gt;&lt;P&gt;I want to pass the value of qmel-qmnum into the function module for the parameter NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest me how can I do it ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For useful answers reward will be given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 11:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200526#M762787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200527#M762788</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;Select the QMNUM from QMEL table and store in local variable. Then pass the variable into the FM name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or u need any other requirement in this reg?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 11:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200527#M762788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T11:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200528#M762789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  zlv_tdname TYPE TDOBNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;   EXPORTING INPUT = qmel-qmnum&lt;/P&gt;&lt;P&gt;   IMPORTING OUTPUT = zlv_tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 12:00:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200528#M762789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T12:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200529#M762790</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;Do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'READ_TEXT'
  EXPORTING
   CLIENT                        = SY-MANDT
    id                            = 'LTXT'
    language                      = 'EN'
    name                          = &amp;lt;QN Number with leading zeros&amp;gt; " Use Conversion Exit on this field before populating with FM CONVERSION_EXIT_ALPHA_INPUT/OUTPUT
    object                        = 'QMEL'
  tables
    lines                         = tlines
 EXCEPTIONS
   ID                            = 1
   LANGUAGE                      = 2
   NAME                          = 3
   NOT_FOUND                     = 4
   OBJECT                        = 5
   REFERENCE_CHECK               = 6
   WRONG_ACCESS_TO_ARCHIVE       = 7
   OTHERS                        = 8
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 12:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200529#M762790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T12:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200530#M762791</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;  both are character type fields, what is difficulty u r faceing in passing directly of passing through other variable, kindly clarify&lt;/P&gt;&lt;P&gt;data : s1 type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   s1= qmel-qmnum &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass s1 to functionmodule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 12:06:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/3200530#M762791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T12:06:49Z</dc:date>
    </item>
  </channel>
</rss>

