<?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: Increase the variable count.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262021#M1632203</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;...This is still very unclear!... Tell me if I understood this correctly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- You have a list of checboxes (28)&lt;/P&gt;&lt;P&gt;- Each checkbox correspond to a host name (assumption based on your internal table)&lt;/P&gt;&lt;P&gt;- You want to remove the entries that correspond to the unchecked checkboxes from an internal table&lt;/P&gt;&lt;P&gt;- That internal table has a unique key which is the host name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the idea, well yes it's possible...otherwise, please elaborate &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Oct 2011 19:51:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-05T19:51:43Z</dc:date>
    <item>
      <title>Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262018#M1632200</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;I have 28 variables from var1 to var28.&lt;/P&gt;&lt;P&gt;I do not want to check the value of each variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do it in "DO n TIME ......... ENDDO" loop using fiedl symbols.&lt;/P&gt;&lt;P&gt;I used concatenate to make a variable name but how to check its value and compare it with anothe field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried but no luck so far.&lt;/P&gt;&lt;P&gt;Please let me know if it is possible by any method.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;SC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 17:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262018#M1632200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T17:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262019#M1632201</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;This is not very clear &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;When you say &lt;EM&gt;variable&lt;/EM&gt; are you talking about an internal table column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and compare it with anothe field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which field? can you give us more details?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 17:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262019#M1632201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T17:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262020#M1632202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 28 variables from var1 to var28.&lt;/P&gt;&lt;P&gt;Each is assigned a check box. Each check box has its value also in form a title, whcih is also in 28 variable (title1 ....title28).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a internal table with some rows. Not all checkboxes will be checked.&lt;/P&gt;&lt;P&gt;I want to delete some entries from the internal table based on checked boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do it dynamically in a loop without checking 28 times explicitly for each variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying this but not working - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: var1(20),&lt;/P&gt;&lt;P&gt;       var2 type i,&lt;/P&gt;&lt;P&gt;       var3(2).&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;cf&amp;gt; TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  do 28 times.&lt;/P&gt;&lt;P&gt;    var3 = sy-index.&lt;/P&gt;&lt;P&gt;    concatenate 'title' var3 into var1.&lt;/P&gt;&lt;P&gt;    assign var4 to &amp;lt;cf&amp;gt;.&lt;/P&gt;&lt;P&gt;    read table serlst with key zhost = &amp;lt;cf&amp;gt;.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 17:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262020#M1632202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T17:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262021#M1632203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;...This is still very unclear!... Tell me if I understood this correctly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- You have a list of checboxes (28)&lt;/P&gt;&lt;P&gt;- Each checkbox correspond to a host name (assumption based on your internal table)&lt;/P&gt;&lt;P&gt;- You want to remove the entries that correspond to the unchecked checkboxes from an internal table&lt;/P&gt;&lt;P&gt;- That internal table has a unique key which is the host name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the idea, well yes it's possible...otherwise, please elaborate &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 19:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262021#M1632203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T19:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262022#M1632204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below code to access variables title1, title2....title28 values in Do loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: var1 TYPE c LENGTH 20,
      var2 TYPE i,
      var3 TYPE c LENGTH 2.

FIELD-SYMBOLS: &amp;lt;cf&amp;gt; TYPE c.

  DO 28 TIMES.
    var3 = sy-index.
    CONCATENATE 'title' var3 INTO var1.
    ASSIGN (var1) TO &amp;lt;cf&amp;gt;.
    IF sy-subrc EQ 0.
      READ TABLE serlst WITH KEY zhost = &amp;lt;cf&amp;gt;.
      IF sy-subrc = 0.

      ENDIF.
    ENDIF.
  ENDDO.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 19:51:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262022#M1632204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T19:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262023#M1632205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked like a charm Suman. I did not know how to trap the value of a variable.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;SC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 20:20:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262023#M1632205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T20:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Increase the variable count....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262024#M1632206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should have start this thread by the end! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have fun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 20:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-variable-count/m-p/8262024#M1632206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T20:24:44Z</dc:date>
    </item>
  </channel>
</rss>

