@SANTOSHKY You can create a RUF and write the following custom java code to covert the String date in the required data format:
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
String dateString = format.format( new Date() );
Date date = format.parse ( "2009-12-31" );