1

How can I insert rows in a table that is empty,through debug just to see the result of my code?Image

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
User2333
  • 51
  • 2
  • 12

2 Answers2

6

If the internal table can be edited in the current debug context you have two options:

1, In the tool window on the right there's the services menu. You can find table tools there and add a new row:

enter image description here

2, Right click in the table and choose Change Table Content item:

enter image description here

szako
  • 1,271
  • 1
  • 9
  • 12
1

You (or your BASIS-team more likely) should also check your developing permissions in S_DEVELOP authorization object. There is OBJTYPE DEBUG there, which has three different activities for different debugging levels

  • Activity 03: Display
  • Activity 02: Changing values of fields and the function Debugging->Goto statement
  • Activity 01: Displaying in System Programs and Kernel Debugging

As you guess, you should possess Activity 02 in your authorization profile to be able to edit variables.

Suncatcher
  • 10,355
  • 10
  • 52
  • 90