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

Reg : Enhancement for CAT7 Tcode

Former Member
0 Likes
908

Hi,

I have to validate the date field for the selection screen. So for that I am using the userexit "EXIT_SAPLCATS_002 ". I dont understand why it is not triggering at the selection screen. I have created a project and assigned this userexit to the project and activated it also.

Anyone know about this. Please Help

Thanks,

Jhings

Hi,

I have to validate the date field for the selection screen. So for that I am using the userexit "EXIT_SAPLCATS_002 ". I dont understand why it is not triggering at the selection screen. I have created a project and assigned this userexit to the project and activated it also.

Anyone know about this. Please Help

Thanks,

Jhings

1 REPLY 1
Read only

Former Member
0 Likes
634

you can create implicit enhancement.


1 open tcode cat7
2 navigate to STATUS and double click on program RCATSTCO.
3 open below include 
* selection and global data
INCLUDE RCATSTCOTOP.
4 click on spiral icon.
5 goto EDIT ->enhancement options ->show implicit enhancement options.

it will showyou arrow on the extreme left. and on comments right click and select enhancements ->create.

enter implicit enhancement name
 putthe code in enhancement section:
ENHANCEMENT 1  ZENHANCE_IMP_CAT7.    "active version
AT SELECTION-SCREEN.
  DATA C TYPE CHAR30.
  BREAK BTDDEV1.
  IF P_DATE-LOW EQ SY-DATUM.
    CONCATENATE 'you have entered date' SY-DATUM INTO C
    SEPARATED BY SPACE.
    MESSAGE C TYPE 'I'.
    ENDIF.
ENDENHANCEMENT.

revert back if problem not solved .