Missing Manager in Attestation campaign

MK_0o7
New Contributor II
New Contributor II

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??

10 REPLIES 10

pmahalle
Valued Contributor II
Valued Contributor II

Can you provide more details like where it's missing or screenshot of it.


Regards,

Pandharinath Mahalle(Paddy)
If this reply answered your question, please Accept it As Solution to help others who may have a similar problem.

MK_0o7
New Contributor II
New Contributor II

Untitled.png
PFA.

This seems to be an issue with the elastic services. Can you please check if the elastic server is up and running?

 

Thanks,
Devang Gandhi
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

smitg
Regular Contributor III
Regular Contributor III

Hi @MK_0o7 ,

Can you elaborate more on the issue.

what is the type of campaign? Please provide related screenshots if any

Thanks,
Smitha

pmahalle
Valued Contributor II
Valued Contributor II

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.


Regards,

Pandharinath Mahalle(Paddy)
If this reply answered your question, please Accept it As Solution to help others who may have a similar problem.

rushikeshvartak
All-Star
All-Star
  • Does user is manager ?
  • Does manager is active?
  • Does manager have subordinates ?

MK_0o7
New Contributor II
New Contributor II

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())

pmahalle
Valued Contributor II
Valued Contributor II

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.

 


Regards,

Pandharinath Mahalle(Paddy)
If this reply answered your question, please Accept it As Solution to help others who may have a similar problem.

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()

 

Thanks,
Devang Gandhi
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

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;