<?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 Interface concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652615#M879749</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 have a tab delimited file i have to upload it into the application server and from there i have to get it into the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i upload the file to the application server then tab is disguished by the character #.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i get that file into the program by using open dataset then i will get the entire line but how to break it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 11:50:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T11:50:53Z</dc:date>
    <item>
      <title>Interface concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652615#M879749</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 have a tab delimited file i have to upload it into the application server and from there i have to get it into the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i upload the file to the application server then tab is disguished by the character #.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i get that file into the program by using open dataset then i will get the entire line but how to break it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:50:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652615#M879749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Interface concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652616#M879750</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;  The special charecter will be stored in the field  cl_abap_char_utilities=&amp;gt;horizontal_tab .So to split the string at this field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_data INTO wa_data.&lt;/P&gt;&lt;P&gt;      SPLIT wa_data-record AT cl_abap_char_utilities=&amp;gt;horizontal_tab INTO wa_input-zplant&lt;/P&gt;&lt;P&gt;                                                                          wa_input-zsloc&lt;/P&gt;&lt;P&gt;                                                                          wa_input-zsupploc&lt;/P&gt;&lt;P&gt;                                                                          wa_input-zspeckey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append wa_input to it_input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652616#M879750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Interface concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652617#M879751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the offset values...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: outrec(200) type c .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE encoding DEFAULT.&lt;/P&gt;&lt;P&gt;  loop at it_final.&lt;/P&gt;&lt;P&gt;    outrec+0(8) = it_final-pernr.&lt;/P&gt;&lt;P&gt;    outrec+8(40) = it_final-nachn.&lt;/P&gt;&lt;P&gt;    outrec+48(40) = it_final-vorna.&lt;/P&gt;&lt;P&gt;    outrec+88(30) = it_final-usrid.&lt;/P&gt;&lt;P&gt;    outrec+118(40) = it_final-usrid_long.&lt;/P&gt;&lt;P&gt;    transfer outrec to p_file.&lt;/P&gt;&lt;P&gt;    clear outrec.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  CLOSE DATASET OUTREC.&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-concept/m-p/3652617#M879751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:56:30Z</dc:date>
    </item>
  </channel>
</rss>

