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

In what table can I find development class of object?

marcin_cholewczuk
Active Contributor
0 Kudos
2,778

Hi Gurus

Where can I find information about development class of CLASS and FUNCTION MODULES? I've tried to look in TADIR, but without success.

I would be grateful for any tips.

BR

Marcin Cholewczuk

1 ACCEPTED SOLUTION
Read only

Former Member
0 Kudos
1,634

You will get the dev.class name from TADIR by giving object name as input. Here the object name will be function group name for FM's and class name for class.

8 REPLIES 8
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Kudos
1,634

Hello,

For Function Modules the table should be TFDIR. For classes have to check

BR,

Suhas

Read only

Former Member
0 Kudos
1,634

Hi

Check this table TDEVC.

Read only

Former Member
0 Kudos
1,634

For class you can get it from Table - TDEVC.

Rani

Read only

venkat_o
Active Contributor
0 Kudos
1,634

Hi Marcin, <li> It would be TMDIR. Thanks Venkat.O

Read only

0 Kudos
1,634

Thank you for replays, however

Tables TDEVC is a list of development classes. This is not connected to my question in any way.

TMDIR holdes some information regarding methods and TFDIR general data about function modules so this is not it.

I've found that to get FM devclass one have to look in table enlfdir to get function group and with it it is possible to check tadir.

About class it's still unknown to me, so this part of question is still open

Read only

Former Member
0 Kudos
1,635

You will get the dev.class name from TADIR by giving object name as input. Here the object name will be function group name for FM's and class name for class.

Read only

RaymondGiuseppi
Active Contributor
0 Kudos
1,634

- Class are in TADIR, if they are actual class, and not generated nor sub-objects of a class

- FM belongs to Function Group which are in TADIR

Programmaticaly you can use FM TR_CHECK_TYPE to get main object (REPS->PROG, FUNC->FUGR, CLSD->CLAS, etc.)

Regards,

Raymond

Read only

0 Kudos
1,634

Strange, I was 100% sure I've checked TADIR for class name. I guess I'm tired Thank you for help.