Advertisement
Advertisement
| 10.01.2008 at 02:02PM PDT, ID: 23779715 |
|
[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: |
SELECT a.TSK_ID, a.PREF, a.SFX, b.LVL, a.SD_NO, a.TITLE, a.RCVD_DT AS RECEIVED, b.DUE_DT AS SCHEDULED, b.EST_CST, a.ACTL_CST, a.PCTCOMPLETE, a.SCHEDULECODE, a.COSTCODE, a.TECHCODE, a.NOTE_1 AS [Report Comments], c1.Manager, c2.Engineer, c3.ALCOPR, c4.GovtEngineer, a.ACTIVE_IND, a.STAT_ID FROM ESIS_TSK AS a, esis_rev AS b, rptqryActiveESTManagers AS c1, rptqryActiveESTEngineers AS c2, rptqryActiveESTALCOPRs AS c3, rptqryActiveESTGovtEngineers AS c4 WHERE (((a.TSK_ID)=[c1].[tsk_id] And (a.TSK_ID)=[c2].[tsk_id] And (a.TSK_ID)=[c3].[tsk_id] And (a.TSK_ID)=[c4].[tsk_id]) AND ((b.LVL)=(select max(lvl) from esis_rev d where a.tsk_id = d.tsk_id)) AND ((a.ACTIVE_IND)="Y") AND ((a.STAT_ID)=1) AND ((a.TASKTYPE)=2) AND ((b.TSK_ID)=[a].[tsk_id])) ORDER BY b.due_dt DESC; |