cancel
Showing results for 
Search instead for 
Did you mean: 

Variant Configuration - Not Specified Syntax

Former Member
0 Kudos

Hi gurus,

I am trying to write a procedure that sets a value based on the condition but only if that value is not already set with something else. Code below:

$SELF.A_1 = 'OK'

IF A_2 = 'GO' AND

A_1 NOT SPECIFIED

A_1 SPECIFIED seems to work, but A_1 NOT SPECIFIED is failing the syntax check. The help notes dictate that NOT SPECIFIED can work in procedures, so maybe someone can tell me what I am doing wrong?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Figured it out, just odd syntax.

SPECIFIED char WORKS

char SPECIFIED WORKS

char NOT SPECIFIED DOES NOT WORK

NOT SPECIFIED char WORKS

Answers (0)