<?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: Using function READ_TXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447647#M1413243</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Create a stucture of TLINE type ( Interface of FM Read text ),then move your data( lrno ) to this and pass tline structure to FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Nov 2009 07:20:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-19T07:20:33Z</dc:date>
    <item>
      <title>Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447645#M1413241</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 am using function read_txt for fetching lorrey no. and the dispatch date based on below criteria:&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          CLIENT                        = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            ID                            = 'Z001'&lt;/P&gt;&lt;P&gt;            LANGUAGE                      = SY-LANGU&lt;/P&gt;&lt;P&gt;            NAME                          = WA_VBRP-VGBEL&lt;/P&gt;&lt;P&gt;            OBJECT                        = 'VBBK'&lt;/P&gt;&lt;P&gt;            TABLES&lt;/P&gt;&lt;P&gt;            LINES                         = lrno&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;            OTHERS                        = 8&lt;/P&gt;&lt;P&gt;     The function I am using is inside a custom BAPI and the lorrey no. and date are of char and dats type. Kindly suggest how should I declare the table " lrno" for fetching the data or do I need to change the types in the structure of the BAPI .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashutosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 07:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447645#M1413241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T07:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447646#M1413242</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;Pass these two filelds in a Local variable and then use that loacl variable in your FM.&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;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 07:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447646#M1413242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T07:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447647#M1413243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Create a stucture of TLINE type ( Interface of FM Read text ),then move your data( lrno ) to this and pass tline structure to FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 07:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447647#M1413243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T07:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447648#M1413244</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;U need to create a table line type from se11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table line type will have structure assigned to it which will be like work area once u take values in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare the internal table as follows:&lt;/P&gt;&lt;P&gt;data: it_tline type tline, wa_tline type tline_structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;Madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 07:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447648#M1413244</guid>
      <dc:creator>Madhurivs23</dc:creator>
      <dc:date>2009-11-19T07:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447649#M1413245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reply given by you is very useful. But I am still not able to get the output. Can you please elaborate with the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447649#M1413245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T08:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447650#M1413246</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;Declare the table as hown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data  begin of lrno occurs 1.&lt;/P&gt;&lt;P&gt;        include structure tline .&lt;/P&gt;&lt;P&gt;data  end   of lrno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ginu Litta Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:19:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447650#M1413246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T08:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using function READ_TXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447651#M1413247</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;In the Exporting parameters, pass the Client also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ginu Litta Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-read-txt/m-p/6447651#M1413247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T08:21:06Z</dc:date>
    </item>
  </channel>
</rss>

