Skip to main content
Answer

Task parameter ignoring constant value

  • August 17, 2023
  • 1 reply
  • 32 views

Forum|alt.badge.img+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?

Best answer by Timothy Mentowidjojo

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

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+4

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