spMFSynchronizeUserAccount

Signature

EXEC dbo.spMFSynchronizeUserAccount
    @VaultSettings = N'<settings>',
    @Debug = 0,
    @Out = NULL OUTPUT,
    @ProcessBatch_ID = NULL OUTPUT;

Returns

INT: 1 on success; -1 on error.

Parameters

@VaultSettings
  • Type: NVARCHAR(4000)

  • Required: Yes

  • Description: Vault settings string (e.g., from fnMFVaultSettings()).

@Debug
  • Type: SMALLINT

  • Required: No (default = 0)

  • Description: Debug level. - 1 = Standard Debug Mode

@Out
  • Type: NVARCHAR(MAX)

  • Required: No (OUTPUT)

  • Description: Listing of user accounts from MF for the vault.

@ProcessBatch_ID
  • Type: INT

  • Required: No (OUTPUT)

  • Description: References the ID of the ProcessBatch logging table.

Purpose

Procedure is used in other procedures

Changelog

Date

Author

Description

2024-06-05

LC

add processbatch_id for logging

2023-10-12

LC

Change to update insert of rows and consolidate procedures

2019-08-30

JC

Added documentation

2016-09-26

DevTean2

Removed vault settings parameters and pass them as comma separated string in @VaultSettings parameter.

2018-04-04

DevTeam

Addded License module validation code