‎2007 Jun 07 8:25 AM
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
‎2007 Jun 07 8:32 AM
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
‎2007 Jun 07 8:30 AM
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.
‎2007 Jun 07 8:32 AM
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