‎2008 Jul 10 11:19 AM
Hi folks,
I need to validate date field in my internal table. I need to check two conditions here.
1. I need to check whether data feild, has all numeric values.
2. whether the data is in correct format. for eg, date with value 32.07.2008 should be shown as a error.
Do we need to perform string operations to do this, or is there any other better alternative to do so. Thanks in advance.
Shyam.
‎2008 Jul 10 11:21 AM
‎2008 Jul 10 11:26 AM
Hi,
1. for this check use this:
if <field> CN '0123456789'.
error.
endif.
2. For this check use this FM: RP_CHECK_DATE.
bye.