Hi, how to write nested if in serverside script and check whther value is greater than specific valu

Yatam_ Annapurna November 2, 2017

Question 1: How to write nested if (If filed1 equal to "Ready for WOC" and field3 equal to Provider SSCR", then Field2 should be mandatory)

def field1 = getFieldByName("Current Status")
def field2 = getFieldByName("SSCR #")
def field3 = getFieldByName("Type")

if(field1.getValue().equals("Ready for WOC") ) // tried "AND", "&&", "&" but didn't work

  if(field3.getValue().equals("Provider SSCR"))
   

{ field2.setRequired(true) }
else { field2.setRequired(false) }

 

Question 2: How to check if the value is greater than a specific value (If filed1 equal to "Ready for WOC" and field3 greater than 44.52, then Field2 should be mandatory)

def field1 = getFieldByName("Current Status")
def field2 = getFieldByName("Justification for High Blended Rate")
def field3 = getFieldByName("Actual Blended Rate")

if(field1.getValue().equals("Ready for WOC") ) 
   
if(field3.getValue().equals("44.52")) // not able to understand how to say greater than
  
  

{ field2.setRequired(true) }
else { field2.setRequired(false) }

 

Question 3:

How to say "not equal to". I tried "!=" didn't work.

I am trying to say field1 not equal to empty. and field1 is string.

 

Thanks in advance for your help!

 

 

1 answer

0 votes
Praveen November 10, 2017

Hi Anna,

For Q1: Try this

def field1 = getFieldByName("Current Status")
def field2 = getFieldByName("SSCR #")
def field3 = getFieldByName("Type")
if((field1.getValue().equals("Ready for WOC"))&&(field3.getValue().equals("Provider SSCR"))){}

Praveen November 10, 2017

Hi Anna

For Q3: Try this

if (field1 != null){}

Suggest an answer

Log in or Sign up to answer