"Table Cell Scope" activity and indicate a cell element in the SAP

Hi ,

I encounter the error “This control does not support Table Cell Scope activity.” I’ve attempted the solutions provided in similar discussions, such as changing the theme of SAP and ensuring that scripting is enabled in SAP, but the issue persists. How can I resolve this?

Hi @srikaran1289 ,

wish this helps u out

Regards
Sandy

Hi @sandyarpa767 ,

I have followed all the steps and seems to be still facing the issue .

In That case identify the selector and change it dynamically and loop through the steps

Can u explain in bit detailed way @sandyarpa767

Yes sure @srikaran1289 ,

Detailed Steps:

  1. Define Variables:
  • rowIndex (Int32) = 0
  • columnIndex (Int32) = 0
  • totalRows (Int32) = 10 ’ Adjust based on your table’s row count
  • totalColumns (Int32) = 5 ’ Adjust based on your table’s column count
  • cellSelector (String) = “”
  1. Nested Loops:
  • Use a nested “For Each” loop to iterate through rows and columns.
  • For the outer loop, use Enumerable.Range(0, totalRows).
  • For the inner loop, use Enumerable.Range(0, totalColumns).
  1. Dynamic Selector:
  • Create a dynamic selector template and replace the placeholders with the rowIndex and columnIndex variables.
  1. **Type Into Activity / Get text to get the values **:
  • Use the "Type Into/ get text " activity with the dynamic selector to interact with the table cells.

Regards
Sandy

1 Like

Let me try if this approach works

Please mark this as solution if the approach works

Regards
Sandy

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.