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

IF statement.

Former Member
0 Likes
387

if ( wa_ta-a and wa_ta-b ) = ' 1'.

I'm getting an error " Rational operator AND is not supported" with this syntax can anybody help please.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
363

try this...

if (wa_ta-a = '1' and wa_ta-b = '1').

regds,

kiran

2 REPLIES 2
Read only

Former Member
0 Likes
364

try this...

if (wa_ta-a = '1' and wa_ta-b = '1').

regds,

kiran

Read only

0 Likes
363

thanks a million