2010 Feb 24 9:55 AM
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
2010 Feb 24 10:19 AM
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.
2010 Feb 24 9:58 AM
Hello,
For Function Modules the table should be TFDIR. For classes have to check
BR,
Suhas
2010 Feb 24 9:59 AM
2010 Feb 24 10:00 AM
2010 Feb 24 10:02 AM
2010 Feb 24 10:17 AM
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
2010 Feb 24 10:19 AM
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.
2010 Feb 24 10:24 AM
- 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
2010 Feb 24 10:26 AM
Strange, I was 100% sure I've checked TADIR for class name. I guess I'm tired Thank you for help.