cancel
Showing results for 
Search instead for 
Did you mean: 

Formarted search for service calls

Former Member
0 Kudos

Hi,

I want to achieve a due date on service calls using formarted search any one with an idea how to ?  That is if the priority is high the due date is after a day, if the priority is medium the due date is after two days and if the priority is low then the due date is after three days.

Please help.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Timothy,

Try this one.

SELECT case $[$42.0.0]  when 'H' then $[$71.0.Date] +1

when 'M' then $[$71.0.Date] +2

when 'L' then $[$71.0.Date] +3 end

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

check with this

SELECT case $[$42.0.0]  when 'H' then $[$71.0.Date] +1

when 'M' then $[$71.0.Date] +2

when 'L' then $[$71.0.Date] +3 end