Application Development 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: 

If with more than one argument

Former Member
0 Kudos

Hello @ll,

I just need to write the bellow statement

IF ( plant AND org AND chanel ) IS NOT INITIAL.

But I'll be delivered with the syntax error that AND is unknown. How can I solve the problem. I just need to check if all of the parameters are initial.

Thanks for any help

Kam

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi check this...

data: plant type c value 'X',

org type c value 'X',

channel type c value 'X'.

IF plant is not initial AND org is not initial AND channel IS NOT INITIAL.

endif.

regards,

venkat.

3 REPLIES 3

Former Member
0 Kudos

hi check this...

data: plant type c value 'X',

org type c value 'X',

channel type c value 'X'.

IF plant is not initial AND org is not initial AND channel IS NOT INITIAL.

endif.

regards,

venkat.

S0025444845
Active Participant
0 Kudos

hi,

try this

if ( plant is not initial and

org is not initial and

chanel is not initial) .

regards,

sudha

Former Member
0 Kudos

IF plant IS NOT INITIAL AND org IS NOT INITIAL AND chanel IS NOT INITIAL.