Application Development 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: 

evaluate the content of variables

Former Member
0 Kudos

Dear Experts,

is it possible to evaluate the content of variables (values) from a report (program, function module) with transaction SE30.

Kind Regards

Marco M.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Marco,

SE30 will not expose values of variables. SE30's intent is to review performance in the ABAP run-time and on the DB side (at a high level).

The debugger or custom code written in the report's source (to expose the variables in question) would be your options.

9 REPLIES 9

former_member201275
Active Contributor
0 Kudos

I think you want to try debugging rather?

0 Kudos

that means clearly it is not possible?

Regards

Marco

Former Member
0 Kudos

Marco,

SE30 will not expose values of variables. SE30's intent is to review performance in the ABAP run-time and on the DB side (at a high level).

The debugger or custom code written in the report's source (to expose the variables in question) would be your options.

0 Kudos

Thx for this answer.

Is debuggerthe only one way to expose the variables in SAP?

Regards

Marco

0 Kudos

Hi,

SE30 is just for performance analysis.

USe sap debugger for checking on the variable values during programme execution.

0 Kudos

Marco,

A short dump will expose some variables that can be reviewed through ST22.

But if the program is not dumping, then the only way yo expose them to write code to show their values.

SE30 is intented to "performance tune" a completed and properly executing program.

0 Kudos

Marco,

>

.... then the only way yo expose them to write code to show their values.

How is this possible?

Regards

Marco

0 Kudos

Marco,

Is this a custom (Y or Z) program or a standard SAP program?

0 Kudos

Marco,

Also - why are you needing to know the values? Is the program not performing at a fast enough speed for you? Or something else?

SE30 will only show you how much time is spent in each piece of code (function modules, Performs, etc) and how many times a SELECT SINGLE is called, etc.