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

Where does an ABAP class store?

Former Member
0 Likes
3,204

When you create a global ABAP class, the abap class is stored into database. Can anybody tell me which table the class store?

Thanks!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,184

HI,

class name and the other info will be stored in the table SEOCLASS and view VSEOCLASS.

rgds,

bharat.

When you create a global ABAP class, the abap class is stored into database. Can anybody tell me which table the class store?

Thanks!

5 REPLIES 5
Read only

Former Member
0 Likes
2,184

Hi,

Check the tables seoclass,KLAH.

Regards

Kiran Sure

Read only

Former Member
0 Likes
2,184

Hi

You can find ABAP Global Class in

TDEVC Table.

Rewards Points if useful.

Regards

Nikunj Shah

Read only

Former Member
0 Likes
2,185

HI,

class name and the other info will be stored in the table SEOCLASS and view VSEOCLASS.

rgds,

bharat.

Read only

0 Likes
2,184

Thanks for your reply. We can find meta data about a class using table SEOCLASS and view VSEOCLASS.

My question is like this :

Suppose I have a method of a class:

method GET_SYS_INFO.

result = 'hello world'.

endmethod.

The script above is also stored in database, where can I find this script?

Thanks!

Read only

0 Likes
2,184

Hi Freddy,

check FM SEO_METHOD_GET_SOURCE.

Pass the following parameters,

SEOCPDKEY-CLSNAME (Class Name)and SEOCPDKEY-CPDNAME (Method Name)

STATE = I or A.

Hope this helps

Thanks

Lakshman

Edited by: Lakshman Tandra on May 13, 2008 1:09 PM