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

Re:Reab table

Former Member
0 Likes
640

Hi all,

I am writing a statement like below,

but its giving me a error message like use' =' instead of '<>'

But i have to use this condition ,

please help me

Read table i_jest into wa_jest with key

objnr = zafvc_tab-objnr

stat = 'I0009'

inact <> 'X'

BINARYSEARCH.

Regards

sasi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
624

Hello,

make this change:


Read table i_jest into wa_jest with key
objnr = zafvc_tab-objnr
stat = 'I0009'
inact = 'X' " Check here include = symbol
BINARYSEARCH.

Cheers,

Vasanth

Hi all,

I am writing a statement like below,

but its giving me a error message like use' =' instead of '<>'

But i have to use this condition ,

please help me

Read table i_jest into wa_jest with key

objnr = zafvc_tab-objnr

stat = 'I0009'

inact <> 'X'

BINARYSEARCH.

Regards

sasi

3 REPLIES 3
Read only

gopi_narendra
Active Contributor
0 Likes
624
Read table i_jest into wa_jest with key
objnr = zafvc_tab-objnr
stat = 'I0009'
inact = 'X' " Equals sign missing
BINARYSEARCH.

Regards

Gopi

Read only

Former Member
0 Likes
625

Hello,

make this change:


Read table i_jest into wa_jest with key
objnr = zafvc_tab-objnr
stat = 'I0009'
inact = 'X' " Check here include = symbol
BINARYSEARCH.

Cheers,

Vasanth

Read only

Former Member
0 Likes
624

Write as

Read table i_jest into wa_jest with key

objnr = zafvc_tab-objnr

stat = 'I0009'

inact = 'X' <----


change here ...

BINARYSEARCH.