2012 Feb 21 12:32 PM
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
2012 Feb 21 1:00 PM
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 .
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |