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

Capturing SM50 data

Former Member
0 Likes
1,153

Guys,

I want to know can I capture the memory used by the program that is shows in SM50 transaction. I am referring to Memory (Sum private). So then I can draw a graph of it.

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
976

Hi,

Check the program:

RSMON000_ALV - This is the program for SM50.

Check the form:

BUILD_LIST

I belive what you're looking for is:

CALL FUNCTION 'TH_WPINFO'
       EXPORTING
            WITH_CPU   = WITH_CPU
       TABLES
            WPLIST     = WP_TABL
       EXCEPTIONS
            SEND_ERROR = 1
            OTHERS     = 2.

Regards,

Gilberto Li

2 REPLIES 2
Read only

Former Member
0 Likes
977

Hi,

Check the program:

RSMON000_ALV - This is the program for SM50.

Check the form:

BUILD_LIST

I belive what you're looking for is:

CALL FUNCTION 'TH_WPINFO'
       EXPORTING
            WITH_CPU   = WITH_CPU
       TABLES
            WPLIST     = WP_TABL
       EXCEPTIONS
            SEND_ERROR = 1
            OTHERS     = 2.

Regards,

Gilberto Li

Read only

0 Likes
976

Ohhh thanks!!! It was so usefull to me.

bb