2005 Jul 06 5:37 PM
Hi Folks,
Is there any Function module that will covert the external date to internal date Format. To be specific that will determine the external display according to the date format set in the user master. Many thanks for your help.
Regards,
Tim
2005 Jul 06 5:41 PM
Here ya go.
data: new_date type sy-datum.
call function 'CONVERT_DATE_TO_INTERNAL'
exporting
date_external = '07/06/2005'
importing
date_internal = new_date
exceptions
date_external_is_invalid = 1
others = 2.
Regards,
Rich Heilman
2005 Jul 06 5:41 PM
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |