As you can see above i have a list of jobs posted.
And this view is the summary view as you might already know and i have an saperate action apply beside the job details tab which is for applying the candidate for the particular job.
But when i click apply, the candidates that i have applied for other jobs also are visible.
I want to know how can i use the queryfilter option so that when i come to the summary view of a particular job and click on apply i can only see the candidates that have applied for that particular job.
Ex: I have a job posting called coforge with an job posting id of "00004" and when i go on its summary view i can see the whole job details and when i click on the apply tab , i should only see the candidates that have applied for the coforge job only. Is that possible using the queryfilter function. Please guide me through it.
Discussion posts and replies are publicly visible
yes, query filter can help you in achieving the expected filtered list of candidates. In the rule for this 'Apply' view you must have a queryRecord(). Within the query code try adding a filter where recordtype!record.jobPostingId = Coforge's job id and then check. ( after testing replace the filter code with job id field from record) .
a!queryFilter( field: recordType!Add Details.fields.jobpostingId, operator: "=", value: "" ) } )
Is this the right format.
If not can you please help me out with the code a little to get me started, I have no idea where and how to implement it in the project.
Can you share the code you currently have for this Apply view as well as the record field configuration so that we can understand your data structure
I didnt understand. You mean the code of the interface which is used to add the candidates ?