<?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 LOOP At SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076002#M729363</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;Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I think u have a filed of size one of type c&lt;/P&gt;&lt;P&gt;  in u r internal table as u allowing check box to place so tht will be filled with X when ever u checked it it gets filled with X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so write u r loop at screen accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZZZZZZZZZZZ REWARD IF USEFUL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Nov 2007 10:56:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-30T10:56:40Z</dc:date>
    <item>
      <title>Regarding LOOP At SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3075999#M729360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have a requirement like this ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   My report will have a output starting with a check box.&lt;/P&gt;&lt;P&gt;  i want to read all those selected check box records into another internal table, how can i do this ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Plz help ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 10:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3075999#M729360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-30T10:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding LOOP At SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076000#M729361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use At Line selection&lt;/P&gt;&lt;P&gt;and read each and every line...if the line starts with 'X', that means the checkbox is selected, then this record can be passed into another internal table..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 10:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076000#M729361</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2007-11-30T10:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding LOOP At SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076001#M729362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETER: p_fname TYPE c as check box MODIF ID md1,&lt;/P&gt;&lt;P&gt;for all check boxes assign MODIF ID md1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ c_md1.&lt;/P&gt;&lt;P&gt;        move screen-name to itab-name.&lt;/P&gt;&lt;P&gt;       assign &amp;lt;FS&amp;gt; to itab-name.&lt;/P&gt;&lt;P&gt;       itab-value = &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;      append itab    .&lt;/P&gt;&lt;P&gt;      clear itab.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 10:47:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076001#M729362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-30T10:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding LOOP At SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076002#M729363</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;Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I think u have a filed of size one of type c&lt;/P&gt;&lt;P&gt;  in u r internal table as u allowing check box to place so tht will be filled with X when ever u checked it it gets filled with X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so write u r loop at screen accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZZZZZZZZZZZ REWARD IF USEFUL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 10:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-loop-at-screen/m-p/3076002#M729363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-30T10:56:40Z</dc:date>
    </item>
  </channel>
</rss>

