‎2006 Sep 20 2:11 PM
Hi
I wrote a BDC by using WSO1 transaction when iam giving date as 19/20/2006 it is showing 20060920 and it is giving error invalid date format .
Plz tell me which function module i have to use .
Thanks
Maheedhar.T
‎2006 Sep 20 2:15 PM
Use the statement
write date to v_date.
Then use v_date for the bdc.
Regards,
Ravi
‎2006 Sep 20 2:15 PM
Hello Maheedhar
Try to use a CHAR10 field instead of a date field to fill your BDC:
DATA:
ld_date(10) TYPE c.
WRITE date_field TO ld_DATE DD/MM/YYYY.Now use the ld_date field to fill your BDC.
Regards
Uwe
‎2006 Sep 20 2:15 PM
Use the statement
write date to v_date.
Then use v_date for the bdc.
Regards,
Ravi
‎2006 Sep 20 2:17 PM
hi,
use this
FM - > CONVERSION_EXIT_PDATE_OUTPUT
YYYYMMDD -> DD/MM/YYYY
rgds
anver
if helped mark points