This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
bizweaver:exec_sql [2024/09/09 14:30] dlee [Create Control Procedure] |
bizweaver:exec_sql [2024/09/09 14:35] (current) dlee [Create Control Procedure] |
||
|---|---|---|---|
| Line 68: | Line 68: | ||
| * @wsTaskId: workflow id | * @wsTaskId: workflow id | ||
| * @wsStartAfter: | * @wsStartAfter: | ||
| - | * @wsParameters: | + | * @wsParameters: |
| * Example: the variable name in the Bizweaver workflow is vgo_BatchID (case sensitive) | * Example: the variable name in the Bizweaver workflow is vgo_BatchID (case sensitive) | ||
| <code sql> | <code sql> | ||
| Line 79: | Line 79: | ||
| <code sql> | <code sql> | ||
| - | set @Arguments = ' | + | DECLARE @Arguments NVARCHAR(MAX) |
| + | SET @Arguments = ' | ||
| EXECUTE [dbo].[spCallBizweaverWS] | EXECUTE [dbo].[spCallBizweaverWS] | ||
| - | @wsMethod=' | + | |
| - | + | , | |
| - | -- add your URL. Be sure to use http or https as appropriate. | + | , |
| - | + | , | |
| - | , | + | , |
| - | + | , | |
| - | , | + | , |
| - | + | , | |
| - | -- Add your Auth Token from Bizweaver | + | |
| - | + | ||
| - | , | + | |
| - | + | ||
| - | -- Add your workflow ID from Bizweaver | + | |
| - | + | ||
| - | , | + | |
| - | , | + | |
| - | + | ||
| - | , | + | |
| - | -- Add your port number | ||
| - | , | ||
| END | END | ||
| </ | </ | ||