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: 

CAT2 transaction UserExits

Former Member
0 Kudos

Hi,

I have added some additional fields to the CAT2 transaction's( used for time entries ) Data entry section table control. Now I would like to write some code to populate some of these fields.

Is there any user-exit for this?

I tried with the Exits available but they are not getting triggered when some action is performed after entering the data in the data entry section. (action like ENTER )

For example : If I enter the project number in the corresponding field then the project description should get populated inthe projectdesc field ( which is a display field.)

Regards,

Premalatha

2 REPLIES 2

Former Member
0 Kudos

Hi,

can just specify like what all exits u tried ???

thanks

0 Kudos

you must use

EXIT_SAPLCATS_009

if you fill the DISPTEXT1_EXP with the projectdescription it is passed after pressing return

like

SELECT SINGLE atext FROM t554t
          INTO disptext1_exp
          WHERE awart = i_catsd_imp-awart
            AND moabw = t001p-moabw
            AND sprsl = 'N'.

which passes the description of the awart to the disptext1_exp

kind regards

arthur

Edited by: A. de Smidt on Mar 11, 2009 1:01 PM