cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi,

I am developing a webdynpro application. In this I want a field to contain Date and Time values. I tried by declaring it as Date field. But I am unable to enter time into this. Is there a way to enter both Time and Date.

Please let me know the solution.

Thanks and Regards,

D.NagaSurendra.

0 Likes
View Entire Topic
Former Member
0 Likes

Hi Surendra,

The reply given by mukesh is the correct one.

-Anilkumar

Former Member
0 Likes

Hi,

I am using the field from Component Controller. I have set the field as date. But I am not able to set the format to it. Where I need to set the format. Please let me know.

Regards,

D.NagaSurendra.

Former Member
0 Likes

Hi Surendra,

You need to override the default toString() method of java.sql.Date. Use the following code -

Date date = new Date(System.currentTimeMillis())

{

public String toString()

{

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd G HH:mm:ss");

return dateFormat.format(this);

}

};

wdContext.currentConextElement.setMyDate(date);

In a much better way you can use same funtionality in caliculated attribute.

Message was edited by:

Abhilash gampa

Former Member
0 Likes

hi

Surender there is a class in Java as TimeStamp use it as:

Timestamp frmTime = new Timestamp(2006-1900, 10, 13, 19, 0, 0, 0);

Here Date start from 0 and you have to minus 1900 from the year.

Regards

Nidhideep