‎2008 Jun 02 5:29 AM
Hi Experts
When i do BDC, am getting the error as follows,
Data objects in a Unicode program are not convertible.
What could be the reason actually,
Can anyone suggest me.
Thanks in advance.
Regards
Rajaram
‎2008 Jun 02 8:09 AM
May be , you`re trying to pass some data that contains x type .This type in unicode version don't be same that in 4.6 version .
‎2008 Jun 02 8:11 AM
hi,
go to se38 ->in ur program attributes, select the last check-box that says 'Unicode checks active'.
hope it works!!
regards,
madhu
‎2008 Jun 02 8:16 AM
constants: con_cret type x value '0D', "OK for non Unicode
con_tab type x value '09'. "OK for non Unicode
*If you have Unicode check active in program attributes thnen you will
*need to declare constants as follows
*class cl_abap_char_utilities definition load.
*constants:
con_tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
con_cret type c value cl_abap_char_utilities=>CR_LF.
‎2009 May 19 12:48 PM
‎2009 May 19 12:53 PM
can you check data type and you have to check the structures values are passing fron int to str or char to num that time you will get the unicode problems.