‎2008 Jul 21 10:20 PM
Hi ,
we are upgrading from 4.6 to ecc6
when we run a program getting dump"UC_OBJECTS_NOT_CHARLIKE '
LOOP AT pdfout INTO wa_pdfout.
CLEAR str.
str+l1(134) = wa_pdfout.
len = 134 + l1.
l1 = 134 - STRLEN( wa_pdfout ).
ASSIGN str TO <p> TYPE 'X'.
-
> CONCATENATE p_pdf_xstring <p>(len)
INTO p_pdf_xstring.
ENDLOOP.
any body can tell me how can I handle this. this concatinate is giving issue.
‎2008 Jul 21 10:26 PM
Hi,
You cannot use hexadecimal characters to concatenate. All should be characteres only.
Use CHAR_HEX_CONVERSION func.module to convert from character to hexadecimal.
Regards,
Subramanian
‎2008 Jul 21 10:41 PM
Thanks for the replay.
How do I convert the below coding useing CHAR_HEX_CONVERSION
LOOP AT pdfout INTO wa_pdfout.
CLEAR str.
str+l1(134) = wa_pdfout.
len = 134 + l1.
l1 = 134 - STRLEN( wa_pdfout ).
ASSIGN str TO <p> TYPE 'X'.
CONCATENATE p_pdf_xstring <p>(len)
INTO p_pdf_xstring.
ENDLOOP.
Regards,
Jose
‎2008 Jul 22 2:24 PM
Can you give me a coding how to use that function module using
my coding witch I provide earlier
Regards,
Jose