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: 

In what table can I find development class of object?

marcin_cholewczuk
Active Contributor
0 Kudos
1,617

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

Former Member
0 Kudos
473

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

SuhaSaha
Advisor
Advisor
0 Kudos
473

Hello,

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

BR,

Suhas

Former Member
0 Kudos
473

Hi

Check this table TDEVC.

Former Member
0 Kudos
473

For class you can get it from Table - TDEVC.

Rani

venkat_o
Active Contributor
0 Kudos
473

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

0 Kudos
473

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

Former Member
0 Kudos
474

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.

raymond_giuseppi
Active Contributor
0 Kudos
473

- 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

0 Kudos
473

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