PLATFORMS SOLUTIONS BLOGS CONTACT


Simple Employee Onboarding Process Automation using SQL

October 2019



Build powerful process automated systems using the power of the SQL language, and leverage Enzo to eliminate the complex API layers that usually stand in the way without using ODBC drivers.

Let’s build a new Employee Onboarding process using SQL Server that will detect a new employee provisioning request in a SharePoint List, send a SMS message to your phone when a new employee has been added, and create a SQL Server login account for the user automatically. In order to follow along, you will need to download and install Enzo Server on a virtual machine in your environment (or hosted by a cloud provider such as an AWS EC2 or an Azure VM instance).

Conceptually the onboarding process works like this: a new employee added to a SharePoint list triggers a process that sends an SMS message, creates a new SQL Server login, and updates the record status in SharePoint. The process is essentially event-driven, using simple SQL coding logic that listens for changes in SharePoint, which can be easily modified.

This blog uses the following Enzo technologies:

Implementing this process requires three things:



Create Configuration Settings



Let’s first create the configuration settings for the SharePoint environment we want Enzo to point to. This can be an on-prem SharePoint server, or a SharePoint Online environment. In addition you will need to create a configuration setting for the Messaging adapter, a Central Connection String, and a SQL Server adapter configuration setting.

If you prefer to use Enzo Manager to configure these adapters, configure the Central Connection String, SharePoint adapter, SQLServer adapter and Messaging adapter. Make sure the settings are all set as the default for the 'sa' account.

NOTE: Make sure you connect to Enzo Server directly from SQL Server Management Studio (SSMS) to execute the following commands.
  1. Open SQL Server Management Studio and connect to Enzo Server
    By default Enzo Server listens on port 9550; if you run SSMS on the same server where Enzo was installed, the server name for Enzo is localhost,9550.


  2. Execute the SharePoint._createConfig command; it takes 6 parameters (replace YOURSITE, USERNAME and PASSWORD with your own values):

    EXEC SharePoint._configCreate 
    	'spconfig',   					-- config name
    	1,                  				-- set as default
    	'USERNAME@YOURSITE.onmicrosoft.com',  	-- username
    	'YOURPWD',   					-- password
    	'https://YOURSITE.sharepoint.com/teamsite/',	-- sharepoint site url
    	1     						-- user lookup IDs 
    

  3. Create the Messaging configuration setting (which will be used to send a text message); the following example shows valid settings for Office365.

    EXEC Messaging._configCreate
    	'msgconfig',		-- config name
    	1,			-- set as default
    	'smtp',
    	'YOUR_NAME',		-- Your name
    	'FROM_EMAIL',		-- FROM email
    	'smtp.office365.com',	-- Email server 
    	587,			-- Server port
    	'USERID',		-- Email address used to authenticate
    	'PASSWORD',		-- Email server password
    	1			-- Specify 1 for SSL
    

  4. Create a Central Connection String, which securely stores a database connection string in Enzo (replace the connection string with your own, so that Enzo can connect to a database server).

    EXEC sys.vault.ConnectionStringCreate 
    	'sqlconnection',
    	'Data Source=localhost;User ID=sa;Password=PASSWORD',
    	0,
    	''
    

  5. Finally let’s create a SQLServer configuration setting; this setting uses the previously created connection string. This is the adapter that is used to create a login account in the destination database.

    EXEC SQLServer._configCreate
    	'sqlconfig',
    	1,
    	'sqlconnection',	-- Central Connection String to use
    	'master',		-- Database to connect to
    	'Enzo Server',
    	0,			-- SSL
    	1,			-- Retries
    	15			-- Connection timeout
    

At this point you have completed the configuration of Enzo Server; the connection settings are stored in Enzo, allowing you to program against a SharePoint site, a Messaging system and a SQL Server database.

Create SharePoint List


The first thing we need to do is to create a new SharePoint list that will host the new employee records. Three fields are needed in this example: Title, Status, UserId. The Title field will host the employee name; the Status field will indicate the status of the process, and the UserId will hold the user name of the employee that will be created in SQL Server.

NOTE: Make sure you connect to Enzo Server directly from SQL Server Management Studio (SSMS) to execute the following commands.

The easy way to create the SharePoint list and the necessary fields is to use Enzo Server directly. Assuming you have provided credentials with enough permissions for SharePoint, you can run the following T-SQL command against Enzo Server to configure the list:

  1. Open SQL Server Management Studio and connect to Enzo Server.
    By default Enzo Server listens on port 9550; if you run SSMS on the same server where Enzo was installed, the server name for Enzo is localhost,9550
  2. Execute the following commands to create the SharePoint list and add the necessary fields.

    -- Create the list
    EXEC SharePoint.CreateList 'newemployees', 'GenericList', 'New employee automation'
    -- Add the Status field of type Text, and set a default value of NEW
    EXEC sharepoint.addfield 'newemployees', 'Status', 'Text', 'NEW'
    -- Add a UserId field of type Text without a default value
    EXEC sharepoint.addfield 'newemployees', 'UserId', 'Text'
    

  3. Let’s make sure the following command works; no records should be returned at this point:

    SELECT ID, Title, Status, UserId, Created, Modified FROM SharePoint.[list@newemployees]
    


SQL Automation Process

At this point we are ready to write your automated process using pure T-SQL commands, without the need for any ODBC drivers, executing commands through a Linked Server connection to Enzo.

NOTE: Make sure you connect to SQL Server in this example, using SQL Server Management Studio (SSMS). A Linked Server called [localhost,9550] must first be created. See the Linked Server help section on the website for more information.
DECLARE @id int
DECLARE @userId nvarchar(255)

--
-- GET FIRST RECORD TO PROCESS
--
SELECT TOP 1 @id=ID, @userId=UserId FROM [localhost,9550].bsc.SharePoint.[List@newemployees] WHERE Status='new'

-- ANYTHING TO DO?
WHILE (ISNULL(@id, 0) > 0)
BEGIN

	SELECT @id, @userId   -- output the current record being worked on
	
	--
	-- CREATE SQL SERVER LOGIN
	--
	-- TODO: Add logic to create a strong password
	IF (@userId IS NOT NULL)
	BEGIN
		DECLARE @pwd nvarchar(50) = '123456'
		DECLARE @sql nvarchar(255) = 'IF (NOT EXISTS(SELECT * from master..syslogins WHERE name = ''' + @userId + ''')) CREATE LOGIN ' + @userId + ' WITH PASSWORD = ''' + @pwd + ''' '
		EXEC [localhost,9550].bsc.SQLServer.Run @sql
	END

	--
	-- UPDATE SHAREPOINT
	--
	-- Update the SharePoint list item's status using the UpdateListItemRaw method
	DECLARE @where nvarchar(50)
	SET @where = 'ID=' + CAST(@id as nvarchar(40))
	EXEC [localhost,9550].bsc.sharepoint.updatelistitemraw 'newemployees', '{ ''Status'': ''ready'' }', @where

	--
	-- SEND COMPLETION TEXT MESSAGE
	--
	-- send message to phone using Messaging adapter
	EXEC [localhost,9550].bsc.messaging.sendText 'tmobile', '5612362025', 'New user created in SQL Server!', @userId
   
	--
	-- MORE RECORDS?
	--
	-- Check for next item to process in sharepoint
	SET @id = NULL
	SET @userId = NULL
	SELECT TOP 1 @id=ID, @userId=UserId FROM [localhost,9550].bsc.SharePoint.[List@newemployees] WHERE Status='new'

END
NOTE: To make this a fully automated process you would simply need to create a SQL Agent Job that executes the above T-SQL command on a regular basis (for example every 5 minutes).

This blog shows you how you can easily program against the Enzo platform, by leveraging the power of the T-SQL language, and implement business and IT process automation. The ability to encapsulate business processes as simple SQL commands makes the logic easy to review, test, and check-in as regular code.








601 21st St Suite 300
Vero Beach, FL 32960
United States

(561) 921-8669
info@enzounified.com
terms of service
privacy policy

PLATFORM

ENZO SERVER
ENZO DATAZEN

SOLUTIONS

SOLUTIONS OVERVIEW
INTEGRATION
SaaS
CLOUD ANALYTICS

RESOURCES

DOWNLOAD
BLOGS & VIDEOS
IN THE NEWS
ENZO ADAPTERS
ONLINE DOCUMENTATION
TCO CALCULATOR

COMPANY

LEADERSHIP TEAM
PARTNERS


© 2023 - Enzo Unified