<?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 uploading the data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055445#M424246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       i am extracting the data from flat file to internable. can I create itab like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        field(2000) type c,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i am taking the field(2000) type c as whole length of flat file record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is ok regarding performence issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls let me know asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;srinivasarao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2007 03:37:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-12T03:37:52Z</dc:date>
    <item>
      <title>uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055445#M424246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       i am extracting the data from flat file to internable. can I create itab like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        field(2000) type c,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i am taking the field(2000) type c as whole length of flat file record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is ok regarding performence issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls let me know asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;srinivasarao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 03:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055445#M424246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T03:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055446#M424247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find out the maximum length of the record in ur flat file and take that as the length of the field in ur itab..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which FM r u using , use GUI_UPLOAd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 03:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055446#M424247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T03:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055447#M424248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;srinivasarao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  You can do like this.  see the ex;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : s_filename(400),&lt;/P&gt;&lt;P&gt;           I_TEMP(400).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF I_FINALTAB OCCURS 0,&lt;/P&gt;&lt;P&gt;         QMART(3),&lt;/P&gt;&lt;P&gt;         QMNUM LIKE VIQMEL-QMNUM,&lt;/P&gt;&lt;P&gt;         MNCOD(8),&lt;/P&gt;&lt;P&gt;         PSTER TYPE DATUM,&lt;/P&gt;&lt;P&gt;         STAT(11),&lt;/P&gt;&lt;P&gt;         TXT30 LIKE TJ02T-TXT30,&lt;/P&gt;&lt;P&gt;         STRMN(9),&lt;/P&gt;&lt;P&gt;         LTRMN LIKE VIQMEL-LTRMN,&lt;/P&gt;&lt;P&gt;         URCOD(9),&lt;/P&gt;&lt;P&gt;         QMTXT LIKE VIQMEL-QMTXT,&lt;/P&gt;&lt;P&gt;         POST_CODE1 LIKE ADRC-POST_CODE1,&lt;/P&gt;&lt;P&gt;         BZIRK LIKE VBKD-BZIRK,&lt;/P&gt;&lt;P&gt;         KDMAT LIKE VBAP-KDMAT,&lt;/P&gt;&lt;P&gt;       END OF I_FINALTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;   READ DATASET s_filename INTO I_TEMP.&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;     move I_TEMP to I_FINALTAB.&lt;/P&gt;&lt;P&gt;     append I_FINALTAB.&lt;/P&gt;&lt;P&gt;     clear I_FINALTAB.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;CLOSE DATASET s_filename .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. mark if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 05:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-the-data/m-p/2055447#M424248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T05:11:32Z</dc:date>
    </item>
  </channel>
</rss>

