This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
bw:call_bizweaver_from_sql [2020/07/23 11:13] runger [Calling Bizweaver from SAP Business One] |
bw:call_bizweaver_from_sql [2020/07/23 11:14] (current) runger [Procedure Variables] |
||
|---|---|---|---|
| Line 38: | Line 38: | ||
| * // | * // | ||
| - | * This value is left " | ||
| * // | * // | ||
| Line 76: | Line 75: | ||
| </ | </ | ||
| - | =====Calling Bizweaver Using GET==== | ||
| - | |||
| - | <code sql> | ||
| - | |||
| - | -- | ||
| - | -- Code to call workflow | ||
| - | -- | ||
| - | IF @object_type = ' | ||
| - | BEGIN | ||
| - | set @Arguments = ' | ||
| - | -- | ||
| - | EXECUTE [dbo].[spCallBizweaverWS] | ||
| - | @wsMethod=' | ||
| - | |||
| - | -- add your URL. Be sure to use http or https as appropriate. | ||
| - | |||
| - | , | ||
| - | |||
| - | , | ||
| - | |||
| - | , | ||
| - | |||
| - | -- Add your workflow ID from Bizweaver | ||
| - | |||
| - | , | ||
| - | |||
| - | , | ||
| - | |||
| - | , | ||
| - | |||
| - | -- Add your port number | ||
| - | |||
| - | , | ||
| - | END | ||
| - | </ | ||