Click HERE to see how Saviynt Intelligence is transforming the industry. |
03/28/2024 11:34 AM - edited 04/28/2024 08:51 PM
I am getting the above error when trying to request for an account in the target application which is a disconnectedapplication. The status of the account 'PRAJEN2' is 'Manually Suspended' and since we have the account name rule set for unique accounts inside the endpoint, I changed the account name using Enhanced Query Execution to include the word '-Deleted' but I am still getting the same error. What can be done to fix this? Thank you for taking a look
Solved! Go to Solution.
03/28/2024 07:19 PM
change account status to SUSPENDED FROM IMPORT SERVICE
03/28/2024 08:00 PM
I changed the status to SUSPENDED FROM IMPORT SERVICE, but I am still getting the same error
03/28/2024 08:35 PM
Disable below option as shown below
03/29/2024 05:25 AM
We have a usecase to leave this button ON. Is there a way to write a custom query at endpoint level or elsewhere that would allow creation of new accounts when they are in 'Manually Suspended' or 'Suspended from Import Service' status
03/29/2024 05:59 AM
Use enhanced query
SELECT accountkey as accounts__primarykey,
CONCAT(name, ' -Deleted on ', timestamp) AS accounts__name,
'SUSPENDED FROM IMPORT SERVICE' As accounts__status
FROM
accounts
WHERE
status = 'Manually Suspended' AND
Endpointkey = '1';
change endpointkey as per need
03/29/2024 08:00 AM
Thank you for your help
03/29/2024 10:00 AM
Please click the 'Accept As Solution' button on the reply (or replies) that best answered your original question.
05/07/2024 09:56 PM
I'm facing the same issue. Status and name is updated properly from import as *deleted* and suspended from import. Also have the endpoint config "Disable New Account Request if Account Already Exists" ON. But when user goes to request again, gets error. Any suggestions?
05/07/2024 10:07 PM
Remove mapping from user to account from User -- Account - Remove Mapping
05/07/2024 10:39 PM - edited 05/07/2024 10:39 PM
without removing the user from account it should work correct?