Click HERE to see how Saviynt Intelligence is transforming the industry. |
10/30/2023 10:26 AM
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,
Solved! Go to Solution.
10/31/2023 07:15 AM
@Miko , you can try by leveraging the inline pre-processor to delete the records in newusers not present in currentusers table.
10/31/2023 07:18 AM
Hi Nimitdave,
Can you please provide me sample inline pre-processor script that I can use?
Thanks,
10/31/2023 07:49 AM
@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)"
]
}
10/31/2023 08:27 AM
Thank you. This is help full