<?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: input required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219266#M476307</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After uploading the data into the internal table....itab1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the number of records in ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is 1. ---&amp;gt; Then it has only the header information.&lt;/P&gt;&lt;P&gt;if it is &amp;gt; 2 ---&amp;gt; Then the table have header and some detailed information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use DELETE ITAB1 INDEX 1. This will delete the first record in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 09:40:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T09:40:57Z</dc:date>
    <item>
      <title>input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219260#M476301</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; My upload file format is as follows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Customer Number   Name          City     Country  Phone   -&amp;gt; This is the format&lt;/P&gt;&lt;P&gt;123                        Maheed       Hyd     India      12344&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am uploading i dont have any issues. in debug mode i saw it is inserting header also. this is i dont want. so what i did is i keep * before customer number&lt;/P&gt;&lt;P&gt;then how to write the logic to delete the header. i want only line items need to upload. this is my flat file format .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;maheedhar.t&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219260#M476301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219261#M476302</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;Use  &lt;/P&gt;&lt;P&gt;LOOP AT itab INTO wa_itab FROM 2.&lt;/P&gt;&lt;P&gt;processing.....&lt;/P&gt;&lt;P&gt;endloop.&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;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219261#M476302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219262#M476303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after uploading to internal table just delete the first line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ITAB INDEX 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219262#M476303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219263#M476304</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;You need not keep a start in the file..coz it will not be considered as a comment instead&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you are having your header as the first record..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read table itab into wa index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete table itab from wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will delete the first row..and so you will not have the data any more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219263#M476304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219264#M476305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you will always have the header line then you can &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete itab index 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219264#M476305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219265#M476306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  u read the contents of the file into some variable v_rec(30)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then check the condition.&lt;/P&gt;&lt;P&gt;if v_rec(1)  &amp;lt;&amp;gt; '*'.&lt;/P&gt;&lt;P&gt;then split the v_rec into itab fields....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:39:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219265#M476306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: input required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219266#M476307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After uploading the data into the internal table....itab1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the number of records in ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is 1. ---&amp;gt; Then it has only the header information.&lt;/P&gt;&lt;P&gt;if it is &amp;gt; 2 ---&amp;gt; Then the table have header and some detailed information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use DELETE ITAB1 INDEX 1. This will delete the first record in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-required/m-p/2219266#M476307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:40:57Z</dc:date>
    </item>
  </channel>
</rss>

