<?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>Question Re: GetCell method error, how can I avoid it? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555242#M4707516</link>
    <description>&lt;P&gt;No, this cannot happen. These rows fill up the page which means they always come at the end.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Dec 2021 06:47:29 GMT</pubDate>
    <dc:creator>FrankKrauseGUI</dc:creator>
    <dc:date>2021-12-16T06:47:29Z</dc:date>
    <item>
      <title>GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaq-p/12555237</link>
      <description>&lt;P&gt;Hi, I want to get the text of cell from a table.&lt;/P&gt;
  &lt;P&gt;When I try to GetCell(2,0), and error happended. I know this cell is read-only and cannot even be focused. &lt;/P&gt;
  &lt;P&gt;But I don't know which cells are read-only.&lt;/P&gt;
  &lt;P&gt;So, can you give me some suggestions? &lt;/P&gt;
  &lt;P&gt;Any suggestions would be appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2004517-ca491882-5823-4845-b9bc-c04da8f7e186.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 09:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaq-p/12555237</guid>
      <dc:creator>former_member779127</dc:creator>
      <dc:date>2021-12-04T09:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555238#M4707512</link>
      <description>&lt;P&gt;I mean how to avoid this error in a loop.&lt;/P&gt;&lt;P&gt;```python&lt;/P&gt;&lt;P&gt;for i in range(10):&lt;/P&gt;&lt;P&gt;    cell = table.GetCell(i, 0)&lt;/P&gt;&lt;P&gt;# I dont know which cell can be get...&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 13:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555238#M4707512</guid>
      <dc:creator>former_member779127</dc:creator>
      <dc:date>2021-12-04T13:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555239#M4707513</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;these rows are quite special. The server adds them for paging reasons and SAP GUI itself does not have a property to find out how many such rows exist. Nor does SAP GUI know this number unless you paged to the last page of the table.&lt;/P&gt;&lt;P&gt;However, you can find out the number of such rows yourself by getting the collection of rows and then checking for each of the rows whether the collection of children of this row is greater than 0. If the collection does not contain anything, you have such a special row.&lt;/P&gt;&lt;P&gt;Best regars,&lt;BR /&gt;Frank&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 12:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555239#M4707513</guid>
      <dc:creator>FrankKrauseGUI</dc:creator>
      <dc:date>2021-12-15T12:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555240#M4707514</link>
      <description>&lt;P&gt;Documentation: &lt;A href="https://help.sap.com/viewer/product/sap_gui_for_windows/latest/en-US?q=GuiTableControl"&gt;GuiTableControl object&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I tried to explain &lt;A href="https://stackoverflow.com/questions/68685911/reading-text-in-va02-table-control"&gt;here&lt;/A&gt; (Stack Overflow) how to go through the lines of a table control, you may find properties like VisibleRowCount and more.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 16:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555240#M4707514</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-12-15T16:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555241#M4707515</link>
      <description>&lt;P&gt;Excuse me, will this situation appear that the first row is available and the second row is special and the third row is available? &lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 06:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555241#M4707515</guid>
      <dc:creator>former_member779127</dc:creator>
      <dc:date>2021-12-16T06:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: GetCell method error, how can I avoid it?</title>
      <link>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555242#M4707516</link>
      <description>&lt;P&gt;No, this cannot happen. These rows fill up the page which means they always come at the end.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 06:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/getcell-method-error-how-can-i-avoid-it/qaa-p/12555242#M4707516</guid>
      <dc:creator>FrankKrauseGUI</dc:creator>
      <dc:date>2021-12-16T06:47:29Z</dc:date>
    </item>
  </channel>
</rss>

