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: 

Capturing SM50 data

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

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

bb