Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

How to prevent creating a user profile from SAV schema based import file. Only updating attributes

Miko
Regular Contributor
Regular Contributor

Hello Saviynt Team,

We have requirement only to update Saviynt user profile from import csv file. We need to prevent creating a user using schema based import file. How can we achieve this on .SAV file?

#USER_NOT_IN_FILE_ACTION=NOACTION
#FILENAME=xxx
#DELIMITER=,
#SKIP_NUMBER_OF_LINES=1
#ZERODAYPROVISIONING=TRUE
#userReconcillationField=UserName
#GENERATESYSTEMUSERNAME=FALSE
#GENERATEEMAIL=TRUE
#EMAILTEMPLATE="Email Template Name"
#CHECKRULES=TRUE

Thanks,

4 REPLIES 4

nimitdave
Saviynt Employee
Saviynt Employee

@Miko , you can try by leveraging the inline pre-processor to delete the records in newusers not present in currentusers table.

Miko
Regular Contributor
Regular Contributor

Hi Nimitdave,

Can you please provide me sample inline pre-processor script that I can use?

Thanks,

nimitdave
Saviynt Employee
Saviynt Employee

@Miko , pls see if below helps:

{
"ADDITIONALTABLES": {
"USERS": "SELECT USERNAME,EMPLOYEEID FROM USERS"
},
"COMPUTEDCOLUMNS": [
"title"
],
"PREPROCESSQUERIES": [
"delete from NEWUSERDATA where EMPLOYEEID not in (select EMPLOYEEID from CURRENTUSERS)"
]
}

Miko
Regular Contributor
Regular Contributor

Thank you. This is help full