Advertisement
Advertisement
| 05.27.2008 at 08:17AM PDT, ID: 23435103 |
|
[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: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: |
<ajax:UpdatePanel ID="upOne" runat="server" ChildrenAsTriggers="True" UpdateMode="Always" RenderMode="Block">
<ContentTemplate>
<asp:DropDownList ID="ddClaimDecision" runat="server" Style="z-index: 123; left: 480px;
position: absolute; top: 240px" Width="288px" Height="32px" OnSelectedIndexChanged="ddClaimDecision_SelectedIndexChanged" AutoPostBack="True" >
</asp:DropDownList>
<asp:DropDownList ID="ddAppealDecision" runat="server" Style="z-index: 157; left: 152px;
position: absolute; top: 544px" Width="232px" >
</asp:DropDownList>
<asp:DropDownList ID="ddType" runat="server" AutoPostBack="True" Style="z-index: 126; left: 128px; position: absolute;
top: 216px" Width="200px" OnSelectedIndexChanged="ddType_SelectedIndexChanged">
</asp:DropDownList>
</ContentTemplate>
</ajax:UpdatePanel>
Protected Sub ddType_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddType.SelectedIndexChanged
'declare variables and assign them to controls
Dim chkDeclined As CheckBox = FormView1.FindControl("chkDeclined")
Dim txt5253Amt As TextBox = FormView1.FindControl("txt5253Amt")
Dim txtWOAmt As TextBox = FormView1.FindControl("txtWOAmt")
'if fraud type is skimming set the decision code drop down list based on the decision grids
If ddType.SelectedValue = "S" Then
FillDecision(ddClaimDecision, " where [Claims / Appeals Decision Code] in ('E','F','Z')")
If CurrentDecision() = "E" Or CurrentDecision() = "F" Then
ddClaimDecision.SelectedValue = CurrentDecision()
Else
ddClaimDecision.SelectedValue = "Z"
End If
'if fraud type is LS and decline box is ticked then can only pick declined codes from CNIP
ElseIf ddType.SelectedValue = "LS" And chkDeclined.Checked = True Then
FillDecision(ddClaimDecision, " where [Claims / Appeals Decision Code] in ('A1','A2','A3','A4','A5','A6','A7','A8','A9','B1','B2','B3','B4','B5','B6','B7','B8','C1','C8','C9','C10','C11','C12','C13','C14','Z')")
If CurrentDecision() = "A1" Or CurrentDecision() = "A2" Or CurrentDecision() = "A3" Or CurrentDecision() = "A4" Or CurrentDecision() = "A5" Or CurrentDecision() = "A6" Or CurrentDecision() = "A7" Or CurrentDecision() = "A8" Or CurrentDecision() = "A9" _
Or CurrentDecision() = "B1" Or CurrentDecision() = "B2" Or CurrentDecision() = "B3" Or CurrentDecision() = "B4" Or CurrentDecision() = "B5" Or CurrentDecision() = "B6" Or CurrentDecision() = "B7" Or CurrentDecision() = "B8" _
Or CurrentDecision() = "C1" Or CurrentDecision() = "C8" Or CurrentDecision() = "C9" Or CurrentDecision() = "C10" Or CurrentDecision() = "C11" Or CurrentDecision() = "C12" Or CurrentDecision() = "C13" Or CurrentDecision() = "C14" Then
ddClaimDecision.SelectedValue = CurrentDecision()
Else
ddClaimDecision.SelectedValue = "Z"
End If
Else
'populate the claims Decision drop down box with all codes
FillDecision(ddClaimDecision, "")
If IsDBNull(CurrentDecision()) Or CurrentDecision() = "" Then
ddClaimDecision.SelectedValue = "Z"
Else
ddClaimDecision.SelectedValue = CurrentDecision()
End If
End If
End Sub
|