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: 

there is a field GDATU in table TCURR.. what is the format in which date in

Former Member
0 Kudos

there is a field GDATU in table TCURR.. what is the format in which date in this field is stored. How do i convert it to sy-datum format.

3 REPLIES 3

Former Member
0 Kudos

Hi Rama,

Try this.

Data : Temp like Sy-datum,

Date1 like TCURR-GDATU.

Select the value from DB table and store the value in Date1.

Then,

Temp = Date1.

Thanks.

Former Member
0 Kudos

hi Rama Krishna,

GDATU is stored as inverted format in TCURR table .

use the Conversion routine CONVERSION_EXIT_INVDT_OUTPUT to convert that date into sy-datum format.

<b>Reward points if useful</b>

Cheers,

Chandra

Former Member
0 Kudos

Hi,

The Field GDATU in Table TCURR is stored in Format '<b>YYYY-MM-DD</b>'.

The Format is same like the SY-.DATUM. So no need to convert it into SY-DATUM Format.

Regards,

Padmam.