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: 

type for date

Former Member
0 Kudos

hi

assume i wont to declare field date like 01.01.2007

what is the best way to do that ?

Regards

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

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

or

Data: Date(10) type c.

Date = '01.01.2007'

Regards

Sudheer

2 REPLIES 2

Former Member
0 Kudos

DECLARE THAT FIELD OF LENGTH 10

Data : v_date(10).

Former Member
0 Kudos

Hi,

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

or

Data: Date(10) type c.

Date = '01.01.2007'

Regards

Sudheer