Hi experts.
I'm trying to read an internal table to two values but apparently i can't use the keyword OR.
Here is what i tryed. Can anybody tell me what is the correct instruction to use ?
Thanks for your help.
* Test 1
READ TABLE lt_status INTO wa_status
WITH KEY txt04 = ( c_wait_exp OR c_expert ).
*Test 2
READ TABLE lt_status INTO wa_status
WITH KEY txt04 = c_wait_exp.
OR txt04 = c_expert.
Both are incorrects.