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

Read Development Class

Former Member
0 Likes
1,323

Hi all,

today is not my day :(. Getting crazy. Im searching for a Function group or something like that for getting a list of all Classes and Attributes which are in a special Development Class.

But didnt find anything at all :(.

Maybe someone of you can help me.

greetings

Moritz

5 REPLIES 5
Read only

Former Member
0 Likes
1,081

Hi Moritz,

Hope this helps.

Download Program from a Development Class:

First check in tadir that the given package is valid

SELECT SINGLE devclass FROM tadir INTO ws_devclass WHERE devclass = p_devcls.

Select all the records from TADIR table where OBJECT = 'FUGR' and PGMID = 'R3TR '.

In this way u can get all the FUnction group for that package.

For getting the function module under the function module use the FM RS_FUNCTION_POOL_CONTENTS to get all the function module under the Function group.

Usign the table tfdir get the program name of the Function module.

Using the FM 'GET_INCLUDETAB' get all the includes

for that PRogram name.

Loop at the internal table which you got from the function module.

Use the READ REPORT prog INTO itab.

Download the contents to the place where you want.

DOWNLOAD PROGRAM ==============

http://www.sap-img.com/abap/download-and-upload-your-abap-program.htm

visit http://www.dalestech.com

Can check these links also.

http://sap.ittoolbox.com/code/archives.asp?d=1623&a=s&i=10

http://www.members.tripod.com/abap4/Upload_and_Download_ABAP_Source_Code.html

http://www.geocities.com/rmtiwari/Resources/Utilities/WebViewer.html

http://sap.ittoolbox.com/code/archives.asp?d=3333&a=s&i=10

http://www.sap-img.com/abap/download-and-upload-your-abap-program.htm

Download program and Classes.Download program and Classes.

ZREPTRAN_46C appears to allow downloading of classes

http://www.xaption.de/downloads/developer/index.php?Xaption=cd4ab5a11a5c26d34de38ed675bb6541

http://wiki.ittoolbox.com/index.php/Code:Download_and_upload_OO_ABAP_class_in_XML_format

<b>Reward points if this helps.

Manish</b>

Read only

0 Likes
1,081

okay i will go through all of this.

But i think the hole thing is a little bit overloaded! I dont want to download any programs or stuff. I need a list in a gui of all Classes and Attributes which are in a special Development Class.

But maybe something that helps is in the code you give me.

greetings

Moritz

Read only

Former Member
0 Likes
1,081

Hi,

The table which stores all the development classes is TDEVC. So find all the objects in a development class you can go to SE80 and pass the development class and find the objects. Go to SE80->Program->other object->More->give dev class-> and then click on the display object list button. That will give u all the objects in the specific dev class, be it class library, programs, etc...

Pls reward points if found useful.

Read only

Former Member
0 Likes
1,081

If you want to download all the objects in a development class use RS_GET_OBJECTS_OF_DEVCLASS function module.

Pls reward if found useful.

Read only

0 Likes
1,081

Thanks to all i will get it working now ... hopefully ;D. But all tips were very usefull and i got informations where i can go on trying ;).

Thx a lot