spMFSynchronizeWorkflow¶
Signature¶
EXEC dbo.spMFSynchronizeWorkflow
@VaultSettings = N'<settings>',
@Debug = 0,
@Out = NULL OUTPUT,
@IsUpdate = 0;
Returns¶
INT: 1 on success; -1 on error.
Parameters¶
- @VaultSettings
Type: NVARCHAR(4000)
Required: Yes
Description: Vault settings (e.g., from
fnMFVaultSettings()
).
- @Debug
Type: SMALLINT
Required: No (default = 0)
Description: Debug level. - 1 = Standard Debug Mode - 101 = Advanced Debug Mode
- @Out
Type: NVARCHAR(MAX)
Required: No (OUTPUT)
Description: Output (XML).
- @IsUpdate
Type: SMALLINT
Required: No (default = 0)
Description: When set to 1 performs a full update.
Purpose¶
Procedure is used in other procedures
Changelog¶
Date |
Author |
Description |
2024-06-05 |
LC |
add processbatch_id for logging |
2023-07-30 |
LC |
Improve logging and productivity of procedure |
2019-08-30 |
JC |
Added documentation |
2018-04-04 |
DevTeam2 |
Added License module validation code |
2015-03-27 |
Dev |
Create procedure |