Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

UNICODE ERROR with SEARCH statement

Former Member
0 Likes
649

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
607

Hi Anoop Mukundan,

Try this code :

<b>SEARCH ITAB1 FOR 'ITAB2-FIELDNAME' and mark.</b>

Regards,

Hemant

4 REPLIES 4
Read only

Former Member
0 Likes
608

Hi Anoop Mukundan,

Try this code :

<b>SEARCH ITAB1 FOR 'ITAB2-FIELDNAME' and mark.</b>

Regards,

Hemant

Read only

Former Member
0 Likes
607

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

Read only

Former Member
0 Likes
607

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

Read only

Former Member
0 Likes
607

You can go to your reports attributes and uncheck the option for Unicode checks active.

Hope this helps.