<?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: LRAW Internal table data to Readable internal table conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042793#M1899404</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. You may not ask for samples, documents, links or other material on this site. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which part of my explanation are you not understanding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 19 Apr 2015 11:48:38 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2015-04-19T11:48:38Z</dc:date>
    <item>
      <title>LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042782#M1899393</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;I am looking for some method by which we can convert internal table data of datatype LRAW to readable conversion.Our data is derived from excel data which was placed on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried most of the possible solution on sdn to convert this LRAW data to Readable format but data is appearing like Chinese characters or not readable characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am downloading this LRAW internal table data with help of FM GUI_DOWNLOAD then data gets downloaded correctly but my requirement is to convert LRAW data in readable internal table data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Apr 2015 11:28:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042782#M1899393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-18T11:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042783#M1899394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you share the file which has LRAW data to check and advise accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Apr 2015 12:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042783#M1899394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-18T12:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042784#M1899395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the data seems to be unicode bytes or compressed bytes or encrypted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check the source.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Apr 2015 18:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042784#M1899395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-18T18:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042785#M1899396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data in your database will be the binary data you've loaded. It will have that structure. If you read an ordinary text file as binary, for example, it will have 0x0A and 0x0D bytes for carriage return linefeed. You'll see in the LRAW just the hexadecimal content of the text file. When you convert it to text, you'll get a string of text with the 0x0A and 0x0D displayed as #.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel data is rather more complex than a text file, and you have to write conversion routines. The reason that you can read it in Excel is that Excel takes the binary data and parses it into a readable format, as part of what it does as a program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XLSX format is zipped xml. To read it directly, you'll need to take your LRAW data, unzip it (there are classes for this), and the parse the XML (search for how to do this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XLS format is proprietry. To read that, get the Java source code of &lt;A href="https://poi.apache.org/"&gt;POI&lt;/A&gt;, and rewrite it as ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can search for function modules that convert Excel data into internal tables. If there are any.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 06:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042785#M1899396</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-04-19T06:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042786#M1899397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mathew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please have sample code for downloading .xls or xlsx format file from application server to internal table in readable format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried all the options but it is not working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data is getting translated into chinese characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 06:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042786#M1899397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T06:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042787#M1899398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you share your excel format with sample data so that it can be checked and advise accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 09:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042787#M1899398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042788#M1899399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is a demo - so that you check and learn from it - if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample data (filename.xls)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/687664" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;REPORT&amp;nbsp; ZR_EXCEL_INTERNAL_TABLE&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;TYPE-POOLS &lt;/SPAN&gt;truxs&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;PARAMETERS &lt;/SPAN&gt;p_file &lt;SPAN class="L0S52"&gt;TYPE&amp;nbsp; &lt;/SPAN&gt;rlgrap&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;filename OBLIGATORY&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;TYPES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field1 &lt;SPAN class="L0S52"&gt;type &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;i&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2 &lt;SPAN class="L0S52"&gt;type &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;C &lt;/SPAN&gt;LENGTH &lt;SPAN class="L0S32"&gt;20&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;DATA &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;it_zhpsm &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;ty&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_zhpsm &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;ty&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_type&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;truxs_t_text_data&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ON &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;VALUE-REQUEST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;p_file&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'F4_FILENAME'&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt; program_name&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;syst&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;cprog&lt;BR /&gt; dynpro_number &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;syst&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;dynnr&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;IMPORTING&lt;/SPAN&gt;&lt;BR /&gt; file_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;p_file&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;START-OF-SELECTION&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'TEXT_CONVERT_XLS_TO_SAP'&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt; i_tab_raw_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_type&lt;BR /&gt; i_filename&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;p_file&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;TABLES&lt;/SPAN&gt;&lt;BR /&gt; i_tab_converted_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_zhpsm&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;BR /&gt; conversion_failed&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;loop &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;IT_ZHPSM &lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;WA_ZHPSM&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WRITE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;/ WA_ZHPSM&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;FIELD1&lt;SPAN class="L0S55"&gt;, &lt;/SPAN&gt;WA_ZHPSM&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;FIELD2&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 09:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042788#M1899399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T09:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042789#M1899400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our file is placed on application server that not on presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did this for presentation server but I don't have solution for application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 09:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042789#M1899400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T09:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042790#M1899401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you share your excel format with sample data so that it can be checked and advise accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 10:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042790#M1899401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T10:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042791#M1899402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 10:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042791#M1899402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-19T10:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042792#M1899403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Posting containing email address removed. You may not post email addresses on this site. The sharing privately of information is very much discouraged.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 11:45:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042792#M1899403</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-04-19T11:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042793#M1899404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. You may not ask for samples, documents, links or other material on this site. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which part of my explanation are you not understanding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 11:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042793#M1899404</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-04-19T11:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042794#M1899405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Praveen Singh wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hi Abdul,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Our file is placed on application server that not on presentation server.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I did this for presentation server but I don't have solution for application server.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Praveen&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then rewrite the above code so that it reads from the application server. There is an expectation here that you know the basics of ABAP coding. This is not a simple task. You may be better served handing over to someone more experienced. The concepts required are not something that can be taught in a few forum posts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2015 11:51:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042794#M1899405</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-04-19T11:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042795#M1899406</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;Please find the solution developed by me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://praveensg8.files.wordpress.com/2015/04/reading-excel-file-from-application-server-into-abap-internal-table_1.pdf" title="https://praveensg8.files.wordpress.com/2015/04/reading-excel-file-from-application-server-into-abap-internal-table_1.pdf"&gt;https://praveensg8.files.wordpress.com/2015/04/reading-excel-file-from-application-server-into-abap-internal-table_1.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 12:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042795#M1899406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-24T12:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: LRAW Internal table data to Readable internal table conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042796#M1899407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good stuff. (Though the formatting could do with a bit of work &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/1273/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt; ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 14:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lraw-internal-table-data-to-readable-internal-table-conversion/m-p/11042796#M1899407</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-04-24T14:06:38Z</dc:date>
    </item>
  </channel>
</rss>

