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

BDC UPDATED

Former Member
0 Likes
389

HI,

WHILE UPDATED OR MODIFYING RECORD IN CASE OF BACK GROUND SCHEDULLING WE GET ERROR I MEAN FOR DATE ANY PROCESS TO OVER COME (INVALID DATE)

FLAT FILE DATA IS DDMMYYYY THIS NOT TAKING .UPDATION AND MODI IS NOT HAPPENNING

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
368

Hi,

you need to convert the date to the User format, lets say your date field is DATE1,

then create the second field DATE2.

Date: DATE2(10) type c.

Write: DATE1 to DATE2.

so here the DATE2 will have the User format, so use this DATE2 field in your program

Regards

Sudheer

2 REPLIES 2
Read only

amit_khare
Active Contributor
0 Likes
368

While writing BDC for that just convert date to internal format before assigning it to BDC table.

Since different users may have different date formats so its a better practice to conver date to internal formats.

Same is true for Quantity & currency fields also.

Regards,

Amit

Reward all helpful replies.

Read only

Former Member
0 Likes
369

Hi,

you need to convert the date to the User format, lets say your date field is DATE1,

then create the second field DATE2.

Date: DATE2(10) type c.

Write: DATE1 to DATE2.

so here the DATE2 will have the User format, so use this DATE2 field in your program

Regards

Sudheer