Solved

Task parameter ignoring constant value

  • 17 August 2023
  • 1 reply
  • 21 views

Userlevel 1
Badge +4

Hey all,

I have a task where the parameter ignores the constant value even after the creation.

 

here is the domain:

 

This is the only default assigned to the task:

declare @print_qty int = (select top 1 cast(setting_value as int) from setting where setting_name = 'default_no_print_copies')

if (@no_of_copies is null) begin
    set @no_of_copies = @print_qty
end

 

This is the process variable

 

Any idea what could be causing the issue?

icon

Best answer by Timothy Mentowidjojo 17 August 2023, 13:52

View original

This topic has been closed for comments

1 reply

Userlevel 1
Badge +4

i resolved it, it was a little oversight on my part.