Application Development and Automation 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: 
Read only

type for date

Former Member
0 Likes
368

hi

assume i wont to declare field date like 01.01.2007

what is the best way to do that ?

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
344

Hi,

Data: Date() type c value '01.01.2007'.

or

Data: Date(10) type c.

Date = '01.01.2007'

Regards

Sudheer

2 REPLIES 2
Read only

Former Member
0 Likes
344

DECLARE THAT FIELD OF LENGTH 10

Data : v_date(10).

Read only

Former Member
0 Likes
345

Hi,

Data: Date() type c value '01.01.2007'.

or

Data: Date(10) type c.

Date = '01.01.2007'

Regards

Sudheer