Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to debug an internal table in ecatt scripts

Former Member
0 Likes
1,021

how to debug an internal table in ecatt scripts

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
936

Hello Sumiti,

Could you please be a little more explicit?

What do you want to do?

You can debug an ecatt script and see the content of your table. (create a breakpoint in your script or directly start it in the debugger). Then double click on your parameter/table and you will see it and be able to edit it.

Regards,

Walter

7 REPLIES 7
Read only

Former Member
0 Likes
937

Hello Sumiti,

Could you please be a little more explicit?

What do you want to do?

You can debug an ecatt script and see the content of your table. (create a breakpoint in your script or directly start it in the debugger). Then double click on your parameter/table and you will see it and be able to edit it.

Regards,

Walter

Read only

0 Likes
936

actually we have made the code.BUt we are unable to check whether the internal table is populated or not.

in order to correct our output i want to know that how can i check the contents of internal table in an ecatt script

Read only

0 Likes
936

It's like the normal debugger:

In the script, set a breakpoint at the point where you table should be populated (select a line in your code and click on the breakpoint icon or ctrl + shift + F12) then start the script. When the breakpoint is reached, the debugger will start and you can see the content of your table.

Read only

0 Likes
936

thanks a lot for the reply

Read only

0 Likes
936

Hello Sumiti,

Could you please then mark the post as answered if it answered your question?

Thanks,

Walter

Read only

Former Member
0 Likes
936

Hey ,

I have Created few Parameters as Variables.

I have Declared the Internal table within the Editor in ECATT.

I need 2 Know the Values in My Internal Table.

is there a way as to How i Can Include the Declared Internal table in the Parameter place.

So That i Could See whts Actually getting populated in my Internal Table.

Thanks Awaiting,

Essam

Read only

0 Likes
936

Hi,

In the editor itself , you can write,

ABAP.

BREAK <username>

ENDABAP.

And check your internal table values .

Also, I think, in the parameters you can add your internal table with type Local (V) or exporting (E), when you define your table in the editor .

Thanks

Seema