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: 

CONVERSION_EXIT_INVDT_INPUT dependent on user parameter for date format

Former Member
0 Kudos

Hello ABAP Gurus,

I have this program which uses this CONVERSION_EXIT_INVDT_INPUT.

The problem is when my user profile for date format is changed from MM/DD/YYYY to any other format the program will get an error saying that there is an invalid date format.

I think this FM is dependent on the defined date format for a user.

What can I possibly do with it?

Thank you!

-Onyx

2 REPLIES 2

Former Member
0 Kudos

Hi Onyx,

yes, that function is dependent of the date format of the user.

I don't understand what your doing, but if you want to use the function anyway you'll have to convert the date to the external format. If your date is somewhere in internal format a simple "write l_in_date to l_out_date" should suffice.

Former Member
0 Kudos

Yeah, its true.. the FM is dependent on teh user profile for date format... WRITE statement is just okay.