|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 06/12/2009 at 04:49AM PDT, ID: 24486295 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
Select Distinct iaaFirst.InterviewerEmail, iaaSecond.InterviewerEmail, iaaThird.InterviewerEmail,
'This is a reminder that you have the below interview on ' + CONVERT(NVARCHAR(19), aai.InterviewDate, 103) + ':' + CHAR(13) + CHAR(13) + 'Vacancy Title: ' + vvd.Title + CHAR(13) + 'Job Level: ' + vjll.JobLevelDescription + CHAR(13) + 'Job Status: ' + vjsl.JobStatusDescription + CHAR(13) + 'Job Type: ' + vjtl.JobTypeDescription + CHAR(13) + 'Division: ' + vdl.DivisionDescription + CHAR(13) + 'Office: ' + vol.OfficeDescription + CHAR(13) + 'Closing Date: ' + CONVERT(NVARCHAR(10), vvd.ClosingDate, 103) + CHAR(13) + CHAR(13) + 'Applicant: ' + aad.Salutation + ' ' + aad.FirstName + ', ' + aad.LastName + CHAR(13) + 'Address: ' + aad.Address + CHAR(13) + 'Phone Number: ' + aad.Phone + CHAR(13) + 'Email Address: ' + aad.Email + CHAR(13) + CHAR(13) + 'First Interviewer: ' + iaaFirst.Salutation + ' ' + iaaFirst.InterviewerFirstName + ', ' + iaaFirst.InterviewerLastName + '(Email: mailto:' + iaaFirst.InterviewerEmail + ' ' + 'Phone: ' + iaaFirst.InterviewerPhone + ')' + CHAR(13) + 'Second Interviewer: ' + iaaSecond.Salutation + ' ' + iaaSecond.InterviewerFirstName + ', ' + iaaSecond.InterviewerLastName + '(Email: mailto:' + iaaSecond.InterviewerEmail + ' ' + 'Phone: ' + iaaSecond.InterviewerPhone + ')' + CHAR(13) + 'Third Interviewer: ' + iaaThird.Salutation + ' ' + iaaThird.InterviewerFirstName + ', ' + iaaThird.InterviewerLastName + '(Email: mailto:' + iaaThird.InterviewerEmail + ' ' + 'Phone: ' + iaaThird.InterviewerPhone + ')'
From Applicant.ApplicantDetails aad
INNER JOIN Applicant.ApplicantInterviews aai ON aad.ApplicantID = aai.ApplicantID
INNER JOIN Applicant.ApplicantInterviewers iaaFirst ON aai.FirstInterviewer = iaaFirst.InterviewerID
INNER JOIN Applicant.ApplicantInterviewers iaaSecond ON aai.SecondInterviewer = iaaSecond.InterviewerID
INNER JOIN Applicant.ApplicantInterviewers iaaThird ON aai.ThirdInterviewer = iaaThird.InterviewerID
INNER JOIN Vacancy.VacancyDetails vvd ON aad.VacancyID = vvd.VacancyID
INNER JOIN Vacancy.JobLevelLookups vjll ON vvd.JobLevelCode = vjll.JobLevelCode
INNER JOIN Vacancy.JobStatusLookups vjsl ON vvd.JobStatusCode = vjsl.JobStatusCode
INNER JOIN Vacancy.JobTypeLookups vjtl ON vvd.JobTypeCode = vjtl.JobTypeCode
INNER JOIN Vacancy.DivisionLookups vdl ON vvd.DivisionCode = vdl.DivisionCode
INNER JOIN Vacancy.OfficeLookups vol ON vvd.OfficeCode = vol.OfficeCode
|
Advertisement