Can we pass a list of numbers to input parameter of SP? Is it possible.
a!storedProcedureInput( name: "group_ids", value:local!groupids (It is a list of number) ),
It's not working as input parameter is defined as INT on DB side but we are passing list of integers.
Discussion posts and replies are publicly visible
Hello ashutoshs4646,You can pass array values. Try the using {}/{ local!groupIds } in your value parameter.
Have tried this.Even tried by passing 2 values in {}. It's not working.
Also, already a list so no need of {}
How do I pass a list as a parameter in a stored procedure?