2008 Feb 05 9:45 AM
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
2008 Feb 05 9:48 AM
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
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
2008 Feb 05 9:48 AM
Read table i_jest into wa_jest with key
objnr = zafvc_tab-objnr
stat = 'I0009'
inact = 'X' " Equals sign missing
BINARYSEARCH.Regards
Gopi
2008 Feb 05 9:48 AM
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
2008 Feb 05 9:49 AM
Write as
Read table i_jest into wa_jest with key
objnr = zafvc_tab-objnr
stat = 'I0009'
inact = 'X' <----
change here ...
BINARYSEARCH.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |