‎2006 Jun 23 11:35 AM
‎2006 Jun 23 11:38 AM
‎2006 Jun 23 11:38 AM
‎2006 Jun 23 11:40 AM
‎2006 Jun 23 11:41 AM
Try re-recording the bdc.. If it is not a mandatory field you need not fill it.
Try this.
if w_ausbs ne '00000000'.
PERFORM bdc_field USING 'VIQMEL-AUSBS' w_ausbs.
else.
CLEAR w_ausbs.
PERFORM bdc_field USING 'VIQMEL-AUSBS' w_ausbs.
endif.
This code converts all the zeros to spaces.
data : n type d value 00000000.
data : c(10) type c.
data : x type i value 1 ,
y type i value 0.
c = n.
while c+y(x) ne space.
c+y(x) = space.
y = y + 1.
if y = 8 .
exit.endif.
endwhile.
‎2006 Jun 23 11:43 AM
HI,
in BDC you need to give the User date format .. to do this
lets say if your date is in field <b>DATE1</b>
Data: date2 like sy-datum,
date3(10).
move: date1 to date2.
write: date2 to date3.
so that write3 field will have the end user date format...
Hope this solves your Problem
Thanks
Sudheer
‎2006 Jun 23 11:45 AM
hi
Please check the link.
www.sappoint.com/abap/bdcconcept.pdf
www.sap-img.com/abap/learning-bdc-programming.htm
www.sap-img.com/abap/question-about-bdc-program.htm
www.sapdevelopment.co.uk/bdc/bdchome.htm
www.planetsap.com/bdc_main_page.htm
Also check the similar
Hope you will find it useful.
Regards,
Richa