<?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: Checkbox: in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251595#M145142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you specify your requirements clearly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Apr 2006 09:36:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-01T09:36:10Z</dc:date>
    <item>
      <title>Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251593#M145140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi frnd's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had created 6 checkboxs and textboxs with the loop statement.&lt;/P&gt;&lt;P&gt;If the values contained in the internal table is 3 means it will display only 3 checkboxes and textboxes.&lt;/P&gt;&lt;P&gt;The retrived data is displayed using loop at screen statement and also the chckbox is made invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if i select any checkbox ie displayed it is not checked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i select any chkbox it should be selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 09:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251593#M145140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T09:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251594#M145141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you clarify your requirement please? I suppose your requirement is depending on the number of items in the internal table, that many checkboxes and textboxes must be displayed.Am I right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 09:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251594#M145141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T09:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251595#M145142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you specify your requirements clearly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 09:36:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251595#M145142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T09:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251596#M145143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;checkbox1 textbox1&lt;/P&gt;&lt;P&gt;checkbox2 textbox2&lt;/P&gt;&lt;P&gt;checkbox3 textbox3&lt;/P&gt;&lt;P&gt;checkbox4 textbox4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had created this using a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting values for the textbox from the table.&lt;/P&gt;&lt;P&gt;if i had only 3 values the fourth checkbox and textbox should be made invisible.&lt;/P&gt;&lt;P&gt;i made that using.&lt;/P&gt;&lt;P&gt;lines = sy-loopc.&lt;/P&gt;&lt;P&gt;  idx   = sy-stepl + line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF idx GE fill.&lt;/P&gt;&lt;P&gt;    scr-txt = fromtable.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'scr-chk'.&lt;/P&gt;&lt;P&gt;     screen-invisible = 0.&lt;/P&gt;&lt;P&gt;     else.&lt;/P&gt;&lt;P&gt;     screen-invisible = 1.&lt;/P&gt;&lt;P&gt;     modify screen.&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;but after that if i select the checkbox it is not selected.&lt;/P&gt;&lt;P&gt;if i click any checkbox it should be checked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 09:47:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251596#M145143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T09:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251597#M145144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know how u created checkbox and textboxes using a loop.From what I could understand from your code,you are modifying the screen using MODIFY statement only in the else statement.&lt;/P&gt;&lt;P&gt;So try writing like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'scr-chk'.&lt;/P&gt;&lt;P&gt;screen-invisible = 0.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;screen-invisible = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the meantime, can you tell me how you created checkbox and textbox using a loop.It will be nice to learn new things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 10:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251597#M145144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T10:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251598#M145145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... also very unclear to me what you mean, how these checkboxes appear, under what circumstances you want them do disappear and so forth.&lt;/P&gt;&lt;P&gt;But I may have found two bugs in your program section:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at screen.
   if screen-name = 'scr-chk'.   " Is never equal. Screen
                                 " fields are upper case
      screen-invisible = 0.
   else.
      screen-invisible = 1.
      modify screen.             " this belongs after
                                 " then endif, because
                                 " otherwise not processed
   endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes and may some more clarifications?&lt;/P&gt;&lt;P&gt;   Florin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 10:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251598#M145145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251599#M145146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto layout .&lt;/P&gt;&lt;P&gt;create one text and checkbox and select that block.&lt;/P&gt;&lt;P&gt;and select loop from menu and mark endline of loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 10:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251599#M145146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T10:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251600#M145147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sylendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed,&lt;/P&gt;&lt;P&gt;but i cant able to select the checkbox property.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls anybody help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 10:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251600#M145147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T10:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251601#M145148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm... if I had to use a number of checkbox/text-combos that are not predefined at precompile time I would use an ABAP ListViewer object instead, that has two columns where one is a checkbox and the other one is an edit field. With that one you have easily full control of what happends.&lt;/P&gt;&lt;P&gt;I personally have never worked with the LOOP's in the dynpros.&lt;/P&gt;&lt;P&gt;Best wishes,&lt;/P&gt;&lt;P&gt;   Florin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Apr 2006 18:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251601#M145148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-01T18:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251602#M145149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose you are using step loops in your screen for displaying checkboxes and textboxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step loops are rather outdated elements and they have been modified to implement table controls and even ALVs. I suggest you to use either of the two(I would prefer ALV,where you can implement checkboxes as well).&lt;/P&gt;&lt;P&gt;In ALV,all your requirements will be satisfied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 04:38:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251602#M145149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T04:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251603#M145150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have worked with the step loops and same error was coming to me also. It was because I gave Function Code to the check boxes. When I removed the Function Code to the check boxes, it worked fine. Try removing the Function code of the check boxes.It may probably work fine for you also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 07:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251603#M145150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T07:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251604#M145151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sylendra.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;I removed the function code of chkbox it is working,&lt;/P&gt;&lt;P&gt;but if i select one it should go to the next screen then without function code how i can do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 08:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251604#M145151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T08:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251605#M145152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you can individually select the checkbox because all the checkboxes that you have created are the copies of one set of checkboxes and all of them will be having the same set of properties like Function Code, Checked or Unchecked, visible or invisible etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Supposing that you have given the Function code to the check box. The moment u click on one checkbox, the PAI is triggered. But all others are remaining unchecked, so you can't individually check that and so it becomes unchecked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think you should go with ALV, where these requirements can be satisfied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 09:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251605#M145152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T09:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251606#M145153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the points. But it hasn't been added to my Total points. please do the needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 04:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/1251606#M145153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T04:53:19Z</dc:date>
    </item>
  </channel>
</rss>

