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

Z-Userexits,tables,programs

kiran_k8
Active Contributor
0 Likes
2,153

Hi Folks,

1.What is the best way to find the ztable that are available in Production?

SE12 and Z* ?

2.What is the best way to find the zprograms that are available in Production?

SE38 - Z* ?

3.What is the best way to find the Userexits that have been modified and moved to Production?

I want to have a prorper documentation of the all above and if any other that you suggest so that the future development team can get a better understanding or alteast a birds eye view of what all the current development team has done.

Any suggestions regarding the same are welcome.

K.Kiran.

1 ACCEPTED SOLUTION
Read only

Former Member
1,074

Hi

From the Table TADIR in Production you can find the tables and programs.

from SE16

execute the table

enter Object Type TABL

Object name Z*

execute, you will get all tables

similarly enter object type PROG

Object name Z*

execute, you will get all Z programs

enter Object Type CMOD

Object name Z*

execute, you will get all User exits

Reward points if useful

Regards

Anji

Message was edited by:

Anji Reddy Vangala

8 REPLIES 8
Read only

Former Member
1,075

Hi

From the Table TADIR in Production you can find the tables and programs.

from SE16

execute the table

enter Object Type TABL

Object name Z*

execute, you will get all tables

similarly enter object type PROG

Object name Z*

execute, you will get all Z programs

enter Object Type CMOD

Object name Z*

execute, you will get all User exits

Reward points if useful

Regards

Anji

Message was edited by:

Anji Reddy Vangala

Read only

0 Likes
1,074

Anji,

Everything is fine but in CMOD when I give Z* and press f4 it is showing just a few list of exits,does that mean it is the list of exits that are modified and now in production ?

K.Kiran.

Read only

0 Likes
1,074

Hi

CMOD objects in TADIR is the PROJECTs which we create in CMOD tcode

Search for the Enhancments used in that projects

As you know we have to implement the enhancement(user exit) in a project and to use.

So it gives the project name, from which we come to know the enhancments/exits.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
1,074

Hi.

SE12 und SE38 will do for tables and programms.

Consider SE24 for classes as well.

User exits you can have a look at CMOD for the userexits

and use transaction SE19 for customer BADI implementations.

Regards,

Timo.

Read only

Former Member
0 Likes
1,074

Hi,

if you know a specific development class for production you could use table TADIR (use transaction SE11 or SE16) and enter the development class. You'll get an overview of the objects.

PGMID 'LIMU' and OBJECT 'REPS' are e.g. reports; LIMU and TABD are table definitions.

Regards

Nicola

Read only

Former Member
0 Likes
1,074

See for all in one the solution is :

all the modules have not more than 1 Package that is development class ..

so you development systmen will have one package .....

similarry for production the same ... for testing the same .../

goto SE80 .... Put packge and package name ... so that it will display all objects in the list left side .... by drilling it .... objects will be listed ..

dictionay

data element

domains

programs -> <b>You can see all the porgrams with text description</b>

includes

subroutines

function groups -> here also you can see the Fun groups

function modules -> <b>here the user exit function modules with some different naming conversion so easyly identified because user exit FM has the program name also in the in the name of the FM .</b>transcation code.

reward points if it is usefull ...

girish

Read only

Former Member
0 Likes
1,074

Hi!

Whatever the programs and tables that are available are stored in control tables.

I am not sure of the table names..

Just try

TADIR

TFDIR .... for programs and tables. Go into the contents and search with Z as first letter as per ur requirement.

Whatever the user-exits are there, they get stored in the following tables

MODSAP,MODACT,MODATTR...

Reward if found usefull.....

Read only

0 Likes
1,074

Ali,

Thanks for letting me know these 3 tables which are very new to me.

1.But will I be able to get the userexits if I had written any for a particular tcode?

2.Does the list it is showing are the exits that the previous development team has written or just showing the all the available userexits for all the tcodes?

K.Kiran.