‎2007 May 11 11:54 AM
Hi,
I am getting a Unicode error, working in ECC6.0 from a SEARCH statement.
SEARCH ITAB1 FOR ITAB2-FIELDNAME.
Kindly suggest on how to remove the error.
Regards,
Anoop
‎2007 May 11 12:03 PM
Hi Anoop Mukundan,
Try this code :
<b>SEARCH ITAB1 FOR 'ITAB2-FIELDNAME' and mark.</b>
Regards,
Hemant
‎2007 May 11 12:03 PM
Hi Anoop Mukundan,
Try this code :
<b>SEARCH ITAB1 FOR 'ITAB2-FIELDNAME' and mark.</b>
Regards,
Hemant
‎2007 May 11 12:06 PM
You could try the addition IN BYTE MODE.
SEARCH ITAB1 FOR ITAB2-FIELDNAME <b>IN BYTE MODE</b>.
Without this addition, the search is done in the character mode, which might not be successful if the line has non-character fields.
Hope this helps.
Sudha
‎2007 May 11 12:24 PM
Hi,
Use the syntax given below:
SEARCH dobj FOR pattern [IN { BYTE | CHARACTER } MODE]
[STARTING AT p1] [ENDING AT p2]
[ABBREVIATED]
[AND MARK].
Regards,
Pulokesh
‎2007 May 11 12:27 PM
You can go to your reports attributes and uncheck the option for Unicode checks active.
Hope this helps.