07/13/2023 08:45 AM
Hi Team,
Need some help with attestation module in Saviynt.
I see that Manager is missing in the campaign for one of the campaigns. Can someone help me in understanding the issue here. Is this a bug in the version??
07/13/2023 08:50 AM
Can you provide more details like where it's missing or screenshot of it.
07/13/2023 08:50 AM
PFA.
07/13/2023 09:04 AM
This seems to be an issue with the elastic services. Can you please check if the elastic server is up and running?
07/13/2023 08:51 AM - edited 07/13/2023 08:53 AM
Hi @MK_0o7 ,
Can you elaborate more on the issue.
what is the type of campaign? Please provide related screenshots if any
Thanks,
Smitha
07/13/2023 08:56 AM
Hi @MK_0o7 ,
Seems like no certification got selected in your Campaign. Are you launching it for specific certifier who is not manager of active users? Or are you providing any advanced queries which are not giving any users to be certified
Can you provide Campaign configuration.
07/13/2023 08:17 PM
08/06/2023 10:46 PM
Hi @rushikeshvartak , @dgandhi @pmahalle @smitg ,
Manager is active and subordinate is active.
Same is happening with other subordinates as well. This is a user manager campaign.
Below is the advanced query that is being user to find the users.
username in (select username from users where regioncode ='AFR' and employeeType in ('Third Party') and customproperty46 = curdate())
08/06/2023 11:29 PM
Hi @MK_0o7 ,
Try below query to find users and check once.
username in (select username from users where regioncode ='AFR' and employeeType in ('Third Party') and datediff(STR_TO_DATE(USR3.CUSTOMPROPERTY46,"%m-%d-%Y"), curdate())=0)
If not worked, let me know in which format you are storing date in CP46.
08/07/2023 11:05 AM
Did you run this query in data analyser and if yes do you get expected result?
select username from users where regioncode ='AFR' and employeeType in ('Third Party') and customproperty46 = curdate()
08/08/2023 05:03 AM
Please Try below query:-
SELECT username
FROM users
WHERE regioncode = 'AFR'
AND employeeType = 'Third Party'
AND DATEDIFF(CURDATE(), STR_TO_DATE(CUSTOMPROPERTY46, '%m-%d-%Y')) = 0;