Hi all,
In the below code, even the data is in the table projSchedRole.ProjId matches with the data in the projTable.ProjId and projSchedRole.Worker == _worker
projSchedRole is not selecting any record.
Its working on test env. but not working in live.
Can you anyone help and tell why its not working in live env.
PSAProjSchedRole projSchedRole; if(event == "RoleStart" || event == "RoleEnd") { select * from projSchedRole where projSchedRole.ProjId == projTable.ProjId && projSchedRole.Worker == _worker; if(projSchedRole) { if(projSchedRole && (event == "RoleStart" || event == "RoleEnd")) { resourceName = HcmWorker::find(projSchedRole.Worker).name(); } } }
Thanks and regards
Siddhant Singh