<?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: Regarding row method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637751#M284249</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u plz send me the sample program so i can implement the logic ......&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>Wed, 04 Oct 2006 05:47:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-04T05:47:39Z</dc:date>
    <item>
      <title>Regarding row method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637747#M284245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Any body can send the sample program for row method.&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>Thu, 28 Sep 2006 07:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637747#M284245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T07:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding row method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637748#M284246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maheedhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please elaborate your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 08:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637748#M284246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T08:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding row method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637749#M284247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have the function module to create the assortment module i have to write a wrapper program that will accept the data from the file and create and change the assortment module using this function module.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The file can have the data for multiple assortment modules.  here i have to use the technique of row type where the first character of each row in  the file tells you whether it is a header record or material record or comment text..&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>Thu, 28 Sep 2006 08:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637749#M284247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T08:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding row method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637750#M284248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to create an internal table which holds the data fed to the program by the file. In this internal table, I guess the first field would tell you whether the record is a header or not. Use this code to find out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab.&lt;/P&gt;&lt;P&gt;IF itab-field1+0(1) = 'H'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;row is a header, do something..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ELSEIF itab-field1+0(1) = 'I'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;row is an item, do something else..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 08:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637750#M284248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T08:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding row method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637751#M284249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u plz send me the sample program so i can implement the logic ......&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>Wed, 04 Oct 2006 05:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-row-method/m-p/1637751#M284249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T05:47:39Z</dc:date>
    </item>
  </channel>
</rss>

