APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM. Copyright 2004 Collard 1 & Company Appendix 1 1

Size: px
Start display at page:

Download "APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM. Copyright 2004 Collard 1 & Company Appendix 1 1"

Transcription

1 APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM Cpyright 2004 Cllard 1 & Cmpany 1

2 N bk n sftware testing is cmplete withut a discussin f the triangle prblem. Ed Kit. (This is meant as a jke, because this prblem has been thrughly wrked and re-wrked ver the years. Nevertheless, this prblem still retains its educatinal value.) At least six self-prclaimed experts have develped answers fr the triangle prblem (including this self-prclaimed expert, the authr), and each answer is different. When experts d nt agree n the answer t a seemingly simple prblem, perhaps this tells us smething abut the state f the art f testing. The triangle prblem was mentined in Chapter III. Using intuitive, ff-the-cuff techniques, systems prfessinals were able t identify nly abut half the test cases fr the triangle prblem. This prblem prvides an pprtunity t see hw the functinal analysis, path analysis, bundary value and risk assessment methds can be applied. Re-Statement f the Prblem Develp a set f test cases t adequately test a prgram, which wrks as fllws: The prgram reads three input numbers that represent the lengths f the three sides f a triangle. Based n these three input values, the prgram determines whether the triangle is scalene (that is, it has three unequal sides), issceles (tw equal sides), r equilateral (three equal sides). The prgram displays the result n the screen. Glen Meyers riginally described this prblem in his bk, The Art f Sftware Testing. Exercise (Allw 15 t 20 minutes fr this exercise.) There is n ne crrect theretical answer t any testing prblem. The answer depends n the assumptins and judgement calls which the test planner makes. Review and critique the fllwing set f test cases fr the triangle prblem. Hw d yu suggest that we imprve them? Cpyright 2004 Cllard 2 & Cmpany 2

3 Suggested Answer (A) Minimal Test Fr the functinality specified in the exercise, sme peple may argue that a ttal f fur test cases like the fllwing are sufficient t test adequately. Fr example: Test Case Input Values Expected Results 1. 3, 3, 3 Equilateral Triangle 2. 3, 3, 2 Issceles Triangle 3. 3, 4, 5 Scalene Triangle 4. 3, 3,? Invalid Input There are pssible defects that wuld nt be detected by this set f fur test cases, hwever, s ther peple may advcate a mre thrugh test. The questin: "which ne is the crrect r mre apprpriate set f test cases?", can nly be answered in terms f the perceived risk in the situatin and the amunt f effrt we are willing t expend t avid that risk. The right amunt f testing depends n the trade-ff between the risk and ecnmics. If the risk is fairly lw, the abve minimal set f fur test cases may be adequate. If the risk is high, a mre extensive test will be needed. Tw mre extensive test plans fllw n the next several pages. Cpyright 2004 Cllard 3 & Cmpany 3

4 Suggested Answer (B) Autmated Test Given that hardware tday is s fast and cheap it is virtually free, an innvative tester has written the fllwing test prgram t exhaustively and autmatically test the triangle prgram. Review this test prgram and frm an pinin whether this autmated testing is a gd idea. If autmatin is wrthwhile, is the test prgram acceptable as written? fr i = minval t maxval by increment d fr j = minval t maxval by increment d fr k = minval t maxval by increment d enter { i, j, k } capture { result } if [ i = j = k ] and result = equilateral r if [ ( i = j ) and ( i nt = k ) and result = issceles ] r if [ ( j = k ) and ( j nt = i ) and result = issceles ] r if [ ( k = i ) and ( k nt = j ) and result = issceles ] r if [ ( i nt = j ) and ( j nt = k ) and ( k nt = i ) and result = scalene ] then k else write errr_lg [ i, j, k, result ] end end end In this test cde, minval and maxval are set t the minimum and maximum valid input data values, and increment is the smallest numerical increment recgnized by the triangle prgram (e.g., 0.01). enter is the name f a functin which drives the triangle sftware by entering values i, j and k. capture is the name f a functin which captures the result f the triangle sftware cmputatin. errr_lg is the accumulated list f defects fund in testing. Cpyright 2004 Cllard 4 & Cmpany 4

5 Is the abve autmated testing prgram effective? N -- fr tw reasns. First, many equivalent (and thus redundant) test cases are mindlessly included. Fr example, if we are willing t assume that the system behaves in the same if the input data is ( 2, 2, 2 ) r is ( 3, 3, 3 ), then we d nt have t test bth f these situatins. Secnd, there are many negative test cases (i.e., nes based n invalid input data) which have nt been identified and included in this autmated test prgram. See the next sectins fr examples f negative test cases. Cpyright 2004 Cllard 5 & Cmpany 5

6 D yu cnsider the fllwing autmated Mnte Carl test r mnkey test t be wrthwhile? d while we_want_t_keep_testing i = randm ( i ) j = randm ( j ) k = randm ( k ) enter { i, j, k } capture { result } if [ i = j = k ] and result = equilateral r if [ ( i = j ) and ( i nt = k ) and result = issceles ] r if [ ( j = k ) and ( j nt = i ) and result = issceles ] r if [ ( k = i ) and ( k nt = j ) and result = issceles ] r if [ ( i nt = j ) and ( j nt = k ) and ( k nt = i ) and result = scalene ] then k else write errr_lg [ i, j, k, result ] end where randm is a randm number generatr which is used in each iteratin t create new randm values f i, j and k, with each value within the range frm minval t maxval. The answer is that this mnkey test may be useful, prvided that we_want_t_keep_testing is nt set t a pintlessly high value, as an insurance plicy in case the assumptin f equivalence is nt crrect. I.e., the system des nt in fact behave in the same if the input data is ( 2, 2, 2 ) r ( 3, 3, 3 ), r des nt behave in the same way if the input data is ( 3, 4, 5 ) r ( 5, 12, 13 ), and s n. In additin, negative test cases are still inadequately represented. This lack f negative test cases culd be partly cvered by extending the range f randmly generated numbers t belw minval and abve maxval. Cpyright 2004 Cllard 6 & Cmpany 6

7 Suggested Answer (C) Extensive Test Validatin f the Specificatins The first step in any black-bx (i.e., specificatin-based) test planning is t validate the specificatin itself. At least 50% f system errrs riginate in the specificatins, and we cannt simply assume that the specs. are cmplete and crrect as they are presented. In this case, there is at least ne missin in the specificatin -- it des nt state whether r nt negative triangles are acceptable. Fr example, shuld the expected valid respnse t a test case f a triangle with sides f -3, -5, and -3 respectively be "issceles" r "errr"? If this system is designed fr Ph.D. mathematicians, it might allw triangles with negative sides r even unreal (cmplex number) sides. If it is designed fr furth graders, thugh, negative triangles culd be banned. This uncertainty needs t be reslved befre we can cmplete ur test case planning. The Need fr Assumptins Assumptins are critical t test planning, since the set f test cases which are needed will vary based n which assumptins are made. Assumptins need t be dcumented. The mst dangerus assumptins are thse which are nt dcumented but which are simply assumed t be true. Simply assuming that "the wrld has t wrk this way" gets testers int truble. Assumptins als need t be reviewed and cnfirmed with the subject matter expert r the final authrity n the applicatin functinality. Undcumented assumptins tend t be embedded invisibly inside test plans and are nt reviewed with the subject matter expert. Definitin f a Triangle The mst imprtant assumptin t be made is the definitin f the wrd triangle. The client fr the sftware may be a PhD mathematician (r a pre-schl child), whse definitin is different frm ur everyday, cmmn sense definitin. Cpyright 2004 Cllard 7 & Cmpany 7

8 Assumptins (cntinued) ANALYZING THE TRIANGLE PROBLEM The Oxfrd English Dictinary (OED) defines a triangle as a figure (especially plane) bunded by three (especially straight) lines. Webster s Dictinary defines a triangle as a plygn having three sides, and it further defines a plygn as a clsed plane figure bund by straight lines. The Webster s definitin is stricter and mre limiting than the OED s, because Webster s requires a plane (flat) surface and straight lines. We will use the Webster s definitin. Other Imprtant Assumptins The ther assumptins that have been made in develping the fllwing list f test cases are: The input numbers may nt have been previusly edited and cannt be assumed t be "clean", i.e., invalid values such as "?" r "A" may ccur in the input lengths f the sides f a triangle. Negative lengths are nt valid fr the sides f a triangle. Scientific ntatin is nt acceptable. (E.g., lengths cannt be entered in the frm 1.234E6, which stands fr 1,234,000 in scientific ntatin, r in the frm 1.234D6, which stands fr the same number in duble-precisin arithmetic.) If three input numbers are valid lengths fr the sides f a triangle, but d nt tgether describe a triangle that can clse, the input is invalid. (By clsing, we mean a triangle where all six ends n the three sides can meet.) Fr example, the input numbers 1, 10 and 1 may each be valid lengths in themselves, but tgether they d nt describe a triangle. Instead, they make up ne lng side (the ne with length 10) and tw shrt flaps. Cpyright 2004 Cllard 8 & Cmpany 8

9 Assumptins (cntinued) ANALYZING THE TRIANGLE PROBLEM The smallest allwable input length is assumed t be , and the largest allwable input length is assumed t be (Ideally, the functinal spec. in the exercise shuld have defined the smallest and largest allwable input numbers, s we wuld nt need t make an assumptin.) Nte: smetimes the size limits are language- and machine dependent, fr example, the limits may be based n the size f a shrt wrd n a particular platfrm. The precisin f measurement is assumed t be In ther wrds, differences between tw numbers which are less than this cannt be recgnized. All the numbers between and , fr example, are assumed t be runded t the same value, Thus a triangle with side lengths f , and will be accepted as equilateral. The three input numbers are expressed in the same units f measurement. Fr example, if the first number was expressed in feet but the last tw were expressed in inches, the input set f numbers 1, 12 and 12 wuld define an equilateral triangle. Fr extra credit: can yu find any hidden assumptins that are buried in the fllwing set f test cases fr the triangle prblem? Are any f these assumptins nt likely t be bvius t the general reader? (If we are cnfident that an assumptin will be bvius t everyne, it is nt t dangerus fr this assumptin t be undcumented. The dangerus nes are thse assumptins which are bth undcumented and nt bvius.) Cpyright 2004 Cllard 9 & Cmpany 9

10 Suggested Test Cases: I. INPUT VALIDATION 1. Verify that invalid inputs are rejected as expected. Cnfirm that nly three valid numbers can be entered as the lengths f the three sides f the triangle. (These three numbers will be referred t here as i, j, and k.) Three series f tests are needed, fr i, j and k respectively: (a) i is nt valid (i) i is nt numeric alpha; upper and lwer case numeric-alpha mix (e.g., "9A9") nn-alphanumeric (e.g., "?", blank) characters which may have special meaning in the system envirnment (e.g., Escape, Enter, Backspace) scientific ntatin (e.g., 1.2E6 r 4.56D7) (ii) (iii) i is negative (i.e., less than zer) i is zer (iv) i is abve the largest allwable input number (e.g., 999,999,999.99) (v) the number f decimal places input fr i exceeds the maximum allwed (e.g., i = when nly 2 places are allwed) Cpyright 2004 Cllard 10 & Cmpany 10

11 (vi) cmmn r likely keybard data entry "flubs" (errrs), such as a duble decimal pint (i.e., "..") (vii) i cntains leading and embedded blanks (e.g., 1 2 7" instead f 127") (Nte: in each f the abve cases, an apprpriate, clear errr message shuld be displayed.) The abve test cases are negative test cases (i.e., test cases with unacceptable input values), fr the first input number, i. Hw many negative tests are enugh? Fr example, many negative data values are nt included in the abve test cases, such as an input number cntaining an embedded blank like "1 0". Alternatively, are the abve set f test cases t many, i.e., verkill? The answer t the questin (f hw many negative test cases are apprpriate fr the input length i), depends n tw factrs: (i) (ii) The degree f risk inherent in the situatin: if the triangle functin carries a high level f averse cnsequences, lgically mre test cases are justified. The perceived hstility f the input envirnment. If the quantity f incming "garbage" is likely t be high, mre tests are justified. Cnversely, if the input lengths are nt likely t cntain many errrs, then less tests are justified. Can we utilize the cncept f equivalence t trim the number f test cases t be executed, withut materially increasing the risk that defects will nt be detected? If there is a frnt-end filter r edit which is reliable, then it is physically impssible fr invalid values f i t be received. If we are willing t assume that the input has been filtered reliably, then the number f negative test cases needed here is zer. If there is nt a reliable frnt-end edit, but we are willing t assume that all inputs fall int nly tw equivalence classes (numeric and nn-numeric), then nly ne negative test is needed. In ther wrds, if we are willing t assume that if a nn-numeric value fr i such as * is detected and rejected, then the system shuld behave in the same way fr any ther nn-numeric input value (e.g., X,? ). In this situatin (where there is ne equivalence class fr all pssible nn-numeric values), nly ne negative test case wuld be needed. Cpyright 2004 Cllard 11 & Cmpany 11

12 Is the rati f negative t psitive test cases apprpriate? Nte that the number f negative test cases listed (in item 1(a) abve, and in the remainder f items (1), (2) and (3) belw), ttal mre than 50% f all the test cases. The test cases listed in items 4 thrugh 9 are primarily psitive test cases, i.e., have acceptable input values. The answer is the right mix f negative and psitive test cases depends n the situatin. Only if the triangle sftware must have high reliability and rbustness is the number f negative test cases likely t exceed the psitive nes. Otherwise the psitive test cases shuld utnumber the negative nes. Cpyright 2004 Cllard 12 & Cmpany 12

13 1. Verify that invalid inputs are rejected as expected (cntinued). (b) j is nt valid The same types f tests are needed as fr j as were needed fr i. (c) k is nt valid The same types f tests are needed as fr k as were needed fr i. Hw much testing f the secnd and third input lengths, j and k, is apprpriate? If we can assume that the sftware engineer wh develped the triangle sftware is reasnably cmpetent, we can als assume with cnfidence that the sftware engineer wuld have prvided ne cmmn subrutine t edit all f i, j and k at the time they are input. In this situatin, a cmprehensive set f test cases fr j and k, fllwing the cmprehensive set f tests fr i, is unnecessary. The first set f test cases fr i will already have extensively exercised the cmmn edit rutine, s re-testing fr several values f j and k wuld be redundant. If the sftware wrks fr i, it shuld als wrk fr j and fr k. Only ne additinal test case is needed fr j, and als ne fr k, t duble-check that the sftware engineer at least remembered t call r access the cmmn edit rutine fr j and k as well as fr i. A better apprach (instead f many negative test cases fr i, fllwed by nly ne each fr j and k), is t spread the set f negative test cases equally amng i, j and k. Hwever, if we are paranid, we will be willing t assume nthing. Since this is a black bx test, we d nt knw fr sure hw the sftware was cnstructed internally. Althugh it may be an incmpetent practice, the sftware engineer may have written three separate input edit rutines, ne each fr i, j and k. In this circumstance, the fact that the first set f tests fr i wrk crrectly will predict nthing abut the behavir f j and k. Cpyright 2004 Cllard 13 & Cmpany 13

14 In ther wrds, the answer t the questin (f hw much testing is enugh fr j and k), depends n what assumptins we are willing t make. 2. Verify that nly and exactly three numbers can be entered successfully. (a) (b). Verify that n mre than three input lengths can be entered, r if they can be, that the system queries as t which three f multiple input numbers represent the actual three sides f the triangle. Verify that a triangle cmputatin cannt be perfrmed if nly tw values are entered (representing nly tw sides f the triangle). The user interface may well be designed in a way that makes it physically impssible t test fr nly tw numbers r fr fur numbers t be entered. In this circumstance, the abve tests are unnecessary. There is n pint in testing fr situatins which we knw cannt ccur. Hwever, in the functinal spec. (i.e., in the exercise narrative), we are nt tld anything abut the user interface. S the prudent apprach is t include these test cases, then delete them later if and when they are fund t be unnecessary. 3. Verify that the triangle must clse. Verify that invalid triangles, where the sum f any tw sides is nt large enugh t exceed the length f the third side, are detected and identified. In ther wrds, check that the input is rejected with an apprpriate errr message if any f the three fllwing cnditins d nt ccur: (a) (b) i + j = > k (and all three are numeric and psitive) (i) i + j = k (ii) i + j > k j + k = > i (and all three are numeric and psitive) (The same tw tests are needed as fr i + j = > k, abve) Cpyright 2004 Cllard 14 & Cmpany 14

15 (c) k + i = > j (and all three are numeric and psitive) (The same tw tests are needed as fr i + j = > k, abve) Of all the test cases in this answer, the mst verlked by peple wh wrk thrugh this triangle prblem is the pssibility that three numbers are entered which are independently valid but which tgether d nt frm a triangle. (Fr example, the numbers ( 1, 10 and 1 ) d nt frm a triangle.) Peple miss this pssibility either because they are mildly math-phbic, they fell asleep in high schl gemetry class, r d nt wrk with triangles as part f their day-t-day wrk. In any situatin, there is a backgrund level f knwledge that is needed in rder t identify the test cases cmpetently. In this particular situatin, peple d nt test fr a triangle that des nt clse simply because they d nt recgnize that the pssibility exists. What abut the situatin where a triangle des clse, but is flat with zer area? This ccurs with sets f input numbers like ( 3, 3 and 6), r ( 1, 2 and 3 ). Are these legitimate triangles r nt? Like the citizens f Lilliput (wh went t war ver which end f their biled eggs t break pen, the pinted end r the rund end), we prbably will have sme peple wh say yes and thers wh say n. In additin, we are assuming traditinal Euclidean gemetry, the kind we learned in high schl, where triangles are drawn n surfaces which are flat. Ph. D. mathematicians als utilize ther types f gemetry, with names like Lbatchevsky and Riemannian gemetries, which can have curved surfaces. With curved surfaces, a triangle culd have lengths f ( 1, 10 (n a wrap-arund surface), and 1 ), and still have all the ends meet s that the triangle clses. Cpyright 2004 Cllard 15 & Cmpany 15

16 If we wish t becme really esteric, there is anther unstated assumptin that we need t challenge. S far, we have assumed, withut really thinking abut it, a tw-dimensinal (flat) r three-dimensinal universe. Physicists say that the physical universe has fur dimensins, including time (and maybe mre than fur). A triangle exists in any tw r three f these fur dimensins, which means we need t ask nt nly if the edges f a triangle meet, but als when they meet. Cpyright 2004 Cllard 16 & Cmpany 16

17 II. TYPE OF TRIANGLE (internal flw lgic) The fllwing tests are based n an assumed internal lgical sftware design, as shwn by the paths n the fllwing graph. While there is n guarantee the internal sftware design actually cnfrms t this graph, the test cases based n the assumed internal flw lgic are as fllws: 4. Verify that equilateral triangles are prcessed crrectly. Verify that the displayed result is "Equilateral" when the three sides are equal (i = j = k). 5. Verify that issceles triangles are prcessed crrectly. Verify that the displayed result is "Issceles" when any tw sides are equal. This requires three tests: (a) (b) (c) i = j, and i nt equal t k (and all three inputs are numeric and psitive) j = k, and j nt equal t i (and all three are numeric and psitive) k = i, and k nt equal t j (and all three are numeric and psitive) D we need t test all three f these cnditins, 5(a), 5(b) and 5(c). If we assume equivalence, in the sense that the rder f data entry des nt matter, then any ne f these three will suffice. Fr example, we are willing t assume that if the input sequence [ 3,3,2 ] is recgnized as issceles, then s will be the sequences [ 3,2,3 ] and [ 2,3,3 ]. Hwever, what abut an input sequence like [ 2,2,10 ]? A paranid persn might wnder whether the sftware first determines that this triangle must be at least an issceles ne, based n i = j = 2, but then simply assumes that the same triangle cannt be equilateral because the third side is nt equal (it has a length f 10). Thus, the final determinatin is that [ 2,2,10 ] is by default issceles, which is an incrrect cnclusin. Cpyright 2004 Cllard 17 & Cmpany 17

18 6. Verify that scalene triangles are prcessed crrectly. Verify that if a triangle has three unequal sides, the displayed result is "Scalene". In additin t the abve set f test cases fr equilateral, issceles and scalene triangles, d we need t test fr any special types r shapes f triangles? Fr example, d we need t test specifically fr a right-angled triangle, r can we just assume that this is already cvered by the earlier, mre general test cases? Similarly, d we need t test fr any special shape (fr example a triangle with angles f 30, 60 and 90 )? The answer t this questin lies in an analysis f cmmnality versus differences. Is there anything distinct r unusual abut a right-angled triangle, fr example, that means the results f any test f a issceles r scalene triangle wuld nt als apply t the rightangled triangle? There is nthing apparently different -- if the sftware wrks fr any samples f scalene and issceles triangles, lgically it shuld als wrk fr the rightangled ne. If we have a hunch, thugh, that smething strange may ccur with the right-angled triangle, it is a gd idea still t test it, n matter what ratinal lgic tells us. III. BOUNDARY VALUES 7. Verify that extreme lengths are prcessed crrectly. Verify that bth very large and very small triangles are prcessed crrectly. Fr example, if the smallest and lngest allwable lengths f the sides are and respectively, then try the fllwing bundary values: (a) (b) (c) i = j = k = (shuld be accepted as equilateral). i = j = k = (shuld be accepted as equilateral). i = ; j = k = (shuld be accepted as issceles). Cpyright 2004 Cllard 18 & Cmpany 18

19 (d) i = , j = and k = (shuld be accepted as equilateral). These test cases may reveal defects caused by internal arithmetic verflws r runding errrs in the cmputatins. Cpyright 2004 Cllard 19 & Cmpany 19

20 IV. ASSUMED LOGIC 8. Verify that the prcess exits and shuts dwn withut any prblems. The functinal specificatin prvided in the exercise says nthing abut the pssibility f prcessing anther triangle after the first ne has been analyzed. It is likely, thugh, that this prcessing is intended t ccur in an iterative cycle. Presumably, the sftware shuld inquire at the end f prcessing ne triangle whether the user wants t d anther ne r t shut dwn. This assumptin can be plitically dangerus, because we are nw testing fr features beynd what the functinal spec. calls fr. This assumptin adds anther test case (number 8 abve). Fr example, if after prcessing ne triangle the system prmpts: "D yu want t analyze anther triangle?" and a respnse f "N" r "Escape" causes the system t freeze, this is a defect. If a respnse f "Y" r "y" des nt initialize the system ready fr the next set f inputs, this is a defect. Als, test the result when the query is answered with an input the is nt any f "Y", "y", "N" and "n". 9. Verify that the result is displayed n the screen in an acceptable manner. The exercise states that the result f the prcess must be displayed "n the screen". If the prgram prints the right result but cannt crrectly display it n the screen, it des nt meet the required functinality. T test the screen display, we need additinal infrmatin which is nt prvided in the exercise itself: What GUI display mechanisms must be supprted? (E.g., Windws, Mac, X- Windws, OS/2, CICS?) What screen technlgies must be supprted? (E.g., VGA, Super VGA, mnchrme vs. clr, different types f screen sizes?) What display frmat is acceptable? Cpyright 2004 Cllard 20 & Cmpany 20

21 If a diagram f the triangle is displayed, calculated frm the three numbers entered n the keybard (which may be suitable fr a children's math tutrial package), is its shape crrect? What if the rapidity f the input data entry exceeds the system s ability t receive and prcess the data? What abut testing fr usability? Fr example, are the instructins and errr messages meaningful t the typical user? If the delimiter amng the input data fields is the Enter key, des it wrk as expected? What if it is hit multiple times? What if the tab is used instead f the enter key? What abut testing fr internatinal users? What if the system messages are in German but mst users speak nly English? What abut the sftware dcumentatin? It is nt gd practice t deliver sftware withut adequate dcumentatin. The dcumentatin test addresses these types f questins: - Des the dcumentatin describe crrectly hw the sftware wrks? - Is the dcumentatin readable and usable? * * * * * * * * * * * * * There are ther tests that may be apprpriate t. Fr example, if the data entry f the three numbers can be perfrmed either by keystrkes r muse clicks, a reasnable test is t check that bth input methds wrk crrectly. What ther test cases can yu find? Cpyright 2004 Cllard 21 & Cmpany 21

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

Success in Mathematics

Success in Mathematics Success in Mathematics Tips n hw t study mathematics, hw t apprach prblem-slving, hw t study fr and take tests, and when and hw t get help. Math Study Skills Be actively invlved in managing the learning

More information

How much life insurance do I need? Wrong question!

How much life insurance do I need? Wrong question! Hw much life insurance d I need? Wrng questin! We are ften asked this questin r sme variatin f it. We believe it is NOT the right questin t ask. What yu REALLY need is mney, cash. S the questin shuld be

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Talking to parents about child protection

Talking to parents about child protection Talking t parents abut child prtectin Adapted fr NI frm Prtecting Children Update, April 2009 Jenni Whitehead discusses the difficulties faced by designated teachers, r child prtectin crdinatrs, in talking

More information

e-qip Online Checklist

e-qip Online Checklist U.S. Custms and Versin 3.03 Brder Prtectin e-qip Online Checklist Please cmplete each step in the rder listed belw befre submitting yur e-qip frms. If yu fail t cmplete these steps in rder, yu will delay

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

A Walk on the Human Performance Side Part I

A Walk on the Human Performance Side Part I A Walk n the Human Perfrmance Side Part I Perfrmance Architects have a license t snp. We are in the business f supprting ur client rganizatins in their quest fr results that meet r exceed gals. We accmplish

More information

How To Measure Call Quality On Your Service Desk

How To Measure Call Quality On Your Service Desk Hw T Measure Call Quality On Yur Service Desk - 1 - Declaratin We believe the infrmatin in this dcument t be accurate, relevant and truthful based n ur experience and the infrmatin prvided t us t date.

More information

INTERMEDIATE CAD FILE MANAGEMENT

INTERMEDIATE CAD FILE MANAGEMENT INTERMEDIATE CAD FILE MANAGEMENT Intrductin File mismanagement is the dwnfall f many brilliant individuals. If yu are wise, yu wn't be ne f the peple wh meet disaster due t pr file management. Cmputers

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

What Does Specialty Own Occupation Really Mean?

What Does Specialty Own Occupation Really Mean? What Des Specialty Own Occupatin Really Mean? Plicy definitins are cnfusing, nt nly t cnsumers but als t many f the insurance prfessinals wh sell them. Belw we will try t prvide an understandable explanatin

More information

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES REFERENCES AND RELATED POLICIES A. UC PPSM 2 -Definitin f Terms B. UC PPSM 12 -Nndiscriminatin in Emplyment C. UC PPSM 14 -Affirmative

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios NAVIPLAN PREMIUM LEARNING GUIDE Analyze, cmpare, and present insurance scenaris Cntents Analyze, cmpare, and present insurance scenaris 1 Learning bjectives 1 NaviPlan planning stages 1 Client case 2 Analyze

More information

Welcome to CNIPS Training: CACFP Claim Entry

Welcome to CNIPS Training: CACFP Claim Entry Welcme t CNIPS Training: CACFP Claim Entry General Cmments frm SCN CACFP claiming begins with submissin f the Octber claim due by Nvember 15, 2012. Timelines/Due Dates With CNIPS, SCN will cntinue t enfrce

More information

Statistical Analysis (1-way ANOVA)

Statistical Analysis (1-way ANOVA) Statistical Analysis (1-way ANOVA) Cntents at a glance I. Definitin and Applicatins...2 II. Befre Perfrming 1-way ANOVA - A Checklist...2 III. Overview f the Statistical Analysis (1-way tests) windw...3

More information

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar Class Ntes: February 2, 2006 Tpic: User Testing II Lecturer: Jeremy Hyland Scribe: Rachel Shipman Why Can t Jhnny Encrypt? A Usability Evaluatin f PGP 5.0 Alma Whitten and J.D. Tygar This article has three

More information

TIPS FOR DEALING WITH ADRs, PROBE EDITS, AND THE MEDICARE APPEALS PROCESS

TIPS FOR DEALING WITH ADRs, PROBE EDITS, AND THE MEDICARE APPEALS PROCESS TIPS FOR DEALING WITH ADRs, PROBE EDITS, AND THE MEDICARE APPEALS PROCESS Key Pints: The Centers fr Medicare & Medicaid Services ("CMS") and its cntractrs have brad ability t perfrm pre-payment and pst-payment

More information

GED MATH STUDY GUIDE. Last revision July 15, 2011

GED MATH STUDY GUIDE. Last revision July 15, 2011 GED MATH STUDY GUIDE Last revisin July 15, 2011 General Instructins If a student demnstrates that he r she is knwledgeable n a certain lessn r subject, yu can have them d every ther prblem instead f every

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Existing insurance coverage

NAVIPLAN PREMIUM LEARNING GUIDE. Existing insurance coverage NAVIPLAN PREMIUM LEARNING GUIDE Existing insurance cverage Cntents Existing insurance cverage 1 Learning bjectives 1 NaviPlan planning stages 1 Client case 2 Enter yur clients existing life, disability,

More information

Hartford Seminary s. Online Application Instructions

Hartford Seminary s. Online Application Instructions Hartfrd Seminary s Online Applicatin Instructins Hartfrd Seminary is pleased t annunce that nline applicatin is nw pssible fr mst f ur prgrams as fllws: Dctr f Ministry: Use nline applicatin Master f Arts:

More information

Aim The aim of a communication plan states the overall goal of the communication effort.

Aim The aim of a communication plan states the overall goal of the communication effort. Develping a Cmmunicatin Plan- Aim Aim The aim f a cmmunicatin plan states the verall gal f the cmmunicatin effrt. Determining the Aim Ask yurself r yur team what the verall gal f the cmmunicatin plan is.

More information

Disk Redundancy (RAID)

Disk Redundancy (RAID) A Primer fr Business Dvana s Primers fr Business series are a set f shrt papers r guides intended fr business decisin makers, wh feel they are being bmbarded with terms and want t understand a cmplex tpic.

More information

Calling 9-1-1 from a Cell Phone

Calling 9-1-1 from a Cell Phone Calling 9-1-1 frm a Cell Phne When calling 9-1-1 frm a cell phne, yur lcatin may nt autmatically display t the 9-1-1 center as it des when calling frm mst hmes r businesses. Be Prepared t tell the 9-1-1

More information

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance An American Benefits Cnsulting White Paper American Benefits Cnsulting, LLC 99 Park Ave, 25 th Flr New Yrk, NY 10016 212 716-3400 http://www.abcsys.cm Grup Term Life Insurance: Table I Straddle Testing

More information

How To Set Up A General Ledger In Korea

How To Set Up A General Ledger In Korea MODULE 6: RECEIVABLES AND PAYABLES MANAGEMENT: PAYMENT DISCOUNT AND PAYMENT TOLERANCE Mdule Overview Granting payment discunts prvides an incentive fr custmers t quickly pay their utstanding amunts in

More information

April 2011. In addition, we encounter valuation practices that present concerns in certain contexts, including:

April 2011. In addition, we encounter valuation practices that present concerns in certain contexts, including: April 2011 We wanted t take the pprtunity prvided by the AICPA s recent release f the expsure draft Practice Aid t share with ur clients and friends sme bservatins and best practice suggestins n this tpic.

More information

Change Management Process

Change Management Process Change Management Prcess B1.10 Change Management Prcess 1. Intrductin This plicy utlines [Yur Cmpany] s apprach t managing change within the rganisatin. All changes in strategy, activities and prcesses

More information

HIPAA 5010 Implementation FAQs for Health Care Professionals

HIPAA 5010 Implementation FAQs for Health Care Professionals HIPAA 5010 Implementatin FAQs fr Health Care Prfessinals Updated September 27, 2012 Key Messages In January 2009, the Department f Health and Human Services published the final rule cntaining the requirements

More information

Merchant Management System. New User Guide CARDSAVE

Merchant Management System. New User Guide CARDSAVE Merchant Management System New User Guide CARDSAVE Table f Cntents Lgging-In... 2 Saving the MMS website link... 2 Lgging-in and changing yur passwrd... 3 Prcessing Transactins... 4 Security Settings...

More information

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling Persnal Selling Lessn 22 Persnal Selling When yu want t buy smething yu usually g t a cncerned shp and purchase it frm there. But, smetimes yu find peple bring certain gds r prducts and make them available

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

Electronic Data Interchange (EDI) Requirements

Electronic Data Interchange (EDI) Requirements Electrnic Data Interchange (EDI) Requirements 1.0 Overview 1.1 EDI Definitin 1.2 General Infrmatin 1.3 Third Party Prviders 1.4 EDI Purchase Order (850) 1.5 EDI PO Change Request (860) 1.6 Advance Shipment

More information

Space Exploration Classroom Activity

Space Exploration Classroom Activity Space Explratin Classrm Activity The Classrm Activity intrduces students t the cntext f a perfrmance task, s they are nt disadvantaged in demnstrating the skills the task intends t assess. Cntextual elements

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

Using PayPal Website Payments Pro UK with ProductCart

Using PayPal Website Payments Pro UK with ProductCart Using PayPal Website Payments Pr UK with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 2 What is Website Payments Pr?... 2 Website Payments Pr and Website Payments Standard...

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

Internet and E-Mail Policy User s Guide

Internet and E-Mail Policy User s Guide Internet and E-Mail Plicy User s Guide Versin 2.2 supprting partnership in mental health Internet and E-Mail Plicy User s Guide Ver. 2.2-1/5 Intrductin Health and Scial Care requires a great deal f cmmunicatin

More information

Create a Non-Catalog Requisition

Create a Non-Catalog Requisition Create a Nn-Catalg Requisitin Jb Aid This jb aid describes hw t create a standard nn-catalg (i.e., nn-ibuynu) purchase request. REFER TO ADDITIONAL TRAINING GUIDES If yu need t create a special requisitin

More information

ONGOING FEEDBACK AND PERFORMANCE MANAGEMENT. A. Principles and Benefits of Ongoing Feedback

ONGOING FEEDBACK AND PERFORMANCE MANAGEMENT. A. Principles and Benefits of Ongoing Feedback ONGOING FEEDBACK AND PERFORMANCE MANAGEMENT A. Principles and Benefits f Onging Feedback While it may seem like an added respnsibility t managers already "full plate," managers that prvide nging feedback

More information

Virtual Meetings and Virtual Teams Using Technology to Work Smarter

Virtual Meetings and Virtual Teams Using Technology to Work Smarter http://www.psu.edu/president/pia/innvatin/ INNOVATION INSIGHT SERIES NUMBER 9 Virtual Meetings and Virtual Teams Using Technlgy t Wrk Smarter Yu need t have a meeting. Sme f the peple yu d like t include

More information

What are the qualifications for teachers and paraprofessionals who are hired to work in a preschool program?

What are the qualifications for teachers and paraprofessionals who are hired to work in a preschool program? FAQ n Indiana Title I Preschls Qualificatins What are the qualificatins fr teachers and paraprfessinals wh are hired t wrk in a preschl prgram? Preschl teachers and assistants are expected t meet the highest

More information

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation TO: FROM: HR Officers & Human Resurces Representatives Chris Chirn, Interim Senir Directr, Emplyee & Management Relatins Jessica Mre, Senir Directr, Classificatin & Cmpensatin DATE: May 26, 2015 RE: Annual

More information

Multiple Choice Questions Some Key Principles

Multiple Choice Questions Some Key Principles Multiple Chice Questins can be an efficient way t check students recall f factual knwledge and their ability t perfrm rutine prcedures. They ften wrk well fr frmative self-assessments and plling. Advantages

More information

Service Desk Self Service Overview

Service Desk Self Service Overview Tday s Date: 08/28/2008 Effective Date: 09/01/2008 Systems Invlved: Audience: Tpics in this Jb Aid: Backgrund: Service Desk Service Desk Self Service Overview All Service Desk Self Service Overview Service

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

Contents. Extra copies of this booklet are available on the Study Skills section of the school website (www.banbridgehigh.co.

Contents. Extra copies of this booklet are available on the Study Skills section of the school website (www.banbridgehigh.co. Banbridge High Schl Revisin & Examinatins Cntents Hw t Plan Yur Revisin... 2 A sample timetable:... 3 Sample Revisin Timetable... 4 Hw t Create the Right Envirnment: Setting Up My Space... 5 Think Abut

More information

Importance and Contribution of Software Engineering to the Education of Informatics Professionals

Importance and Contribution of Software Engineering to the Education of Informatics Professionals Imprtance and Cntributin f Sftware Engineering t the Educatin f Infrmatics Prfessinals Dr. Tick, József Budapest Plytechnic, Hungary, tick@bmf.hu Abstract: As a result f the Blgna prcess a new frm f higher

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

Understanding Federal Direct Consolidation Loans. 2012 Spring MASFAA Conference

Understanding Federal Direct Consolidation Loans. 2012 Spring MASFAA Conference Understanding Federal Direct Cnslidatin Lans 2012 Spring MASFAA Cnference UNDERSTANDING FEDERAL DIRECT & SPECIAL CONSOLIDATION LOANS Amy M. Mser, Reginal Directr Nelnet Educatin Lan Services 2 Nelnet Educatin

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Issue Brief. SBC Distribution Rules for Employer Sponsored Health Plans October 2012. Summary. Which Plans Are Required to Provide the SBC?

Issue Brief. SBC Distribution Rules for Employer Sponsored Health Plans October 2012. Summary. Which Plans Are Required to Provide the SBC? Issue Brief SBC Distributin Rules fr Emplyer Spnsred Health Plans Octber 2012 Summary The Affrdable Care Act (ACA) expands ERISA's disclsure requirements by requiring that a summary f benefits and cverage

More information

CU Payroll Data Entry

CU Payroll Data Entry Lg int PepleSft Human Resurces: Open brwser G t: https://cubshr9.clemsn.edu/psp/hpprd/?cmd=lgin Enter yur Nvell ID and Passwrd Click Sign In A. Paysheets are created by the Payrll Department. B. The Payrll

More information

NASDAQ BookViewer 2.0 User Guide

NASDAQ BookViewer 2.0 User Guide NASDAQ BkViewer 2.0 User Guide NASDAQ BkViewer 2.0 ffers a real-time view f the rder depth using the NASDAQ Ttalview prduct fr NASDAQ and ther exchange-listed securities including: The tp buy and sell

More information

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items WHITE PAPER Vendr Managed Inventry (VMI) is Nt Just fr A Items Why it s Critical fr Plumbing Manufacturers t als Manage Whlesalers B & C Items Executive Summary Prven Results fr VMI-managed SKUs*: Stck-uts

More information

Economic Justification: Measuring Return on Investment (ROI) and Cost Benefit Analysis (CBA)

Economic Justification: Measuring Return on Investment (ROI) and Cost Benefit Analysis (CBA) Advancing Statewide Spatial Data Infrastructures in Supprt f the Natinal Spatial Data Infrastructure (NSDI) Ecnmic Justificatin: Measuring Return n Investment (ROI) and Cst Benefit Analysis (CBA) Intrductin

More information

DIRECT DATA EXPORT (DDE) USER GUIDE

DIRECT DATA EXPORT (DDE) USER GUIDE 2 ND ANNUAL PSUG-NJ CONFERNCE PSUG-NJ STUDENT MANAGEMENT SYSTEM DIRECT DATA EXPORT (DDE) USER GUIDE VERSION 7.6+ APRIL, 2013 FOR USE WITH POWERSCHOOL PREMIER VERSION 7.6+ Prepared by: 2 TABLE OF CONTENTS

More information

March 2016 Group A Payment Issues: Missing Information-Loss Calculation letters ( MILC ) - deficiency resolutions: Outstanding appeals:

March 2016 Group A Payment Issues: Missing Information-Loss Calculation letters ( MILC ) - deficiency resolutions: Outstanding appeals: The fllwing tpics were discussed in the March 24, 2016 meeting with law firms representing VCF claimants. Grup A Payment Issues: We cntinue t fcus n paying Grup A claims in full and are meeting the schedule

More information

WEB APPLICATION SECURITY TESTING

WEB APPLICATION SECURITY TESTING WEB APPLICATION SECURITY TESTING Cpyright 2012 ps_testware 1/7 Intrductin Nwadays every rganizatin faces the threat f attacks n web applicatins. Research shws that mre than half f all data breaches are

More information

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates This paper discusses the fllwing features f Revit Building Shared Crdinates Named lcatins Publish and acquire Vs Saving lcatins Shared Crdinates and wrkset enabled files Revisin 1 (Versin 9.0) David Driver.

More information

CSAT Account Management

CSAT Account Management CSAT Accunt Management User Guide March 2011 Versin 2.1 U.S. Department f Hmeland Security 1 CSAT Accunt Management User Guide Table f Cntents 1. Overview... 1 1.1 CSAT User Rles... 1 1.2 When t Update

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

Archiving IVTVision Video (Linux)

Archiving IVTVision Video (Linux) Archiving IVTVisin Vide (Linux) 1 Intrductin Because IVTVisin Server recrds vide using a straightfrward perating system file structure, archiving vide shuld be simple fr any IT prfessinal. This dcument

More information

Annuities and Senior Citizens

Annuities and Senior Citizens Illinis Insurance Facts Illinis Department f Insurance January 2010 Annuities and Senir Citizens Nte: This infrmatin was develped t prvide cnsumers with general infrmatin and guidance abut insurance cverages

More information

Lesson Study Project in Mathematics, Fall 2008. University of Wisconsin Marathon County. Report

Lesson Study Project in Mathematics, Fall 2008. University of Wisconsin Marathon County. Report Lessn Study Prject in Mathematics, Fall 2008 University f Wiscnsin Marathn Cunty Reprt Date: December 14 2008 Students: MAT 110 (Cllege Algebra) students at UW-Marathn Cunty Team Members: Paul Martin Clare

More information

INSTRUCTIONS ON HOW TO IMPORT (Attach) DOCUMENTS TO TRANSACTIONS IN THE EMPLOYEE REIMBURSEMENT SYSTEM

INSTRUCTIONS ON HOW TO IMPORT (Attach) DOCUMENTS TO TRANSACTIONS IN THE EMPLOYEE REIMBURSEMENT SYSTEM INSTRUCTIONS ON HOW TO IMPORT (Attach) DOCUMENTS TO TRANSACTIONS IN THE EMPLOYEE REIMBURSEMENT SYSTEM In the Emplyee Reimbursement System, users with verifier and apprver/prxy access rights have the ability

More information

Integrate Marketing Automation, Lead Management and CRM

Integrate Marketing Automation, Lead Management and CRM Clsing the Lp: Integrate Marketing Autmatin, Lead Management and CRM Circular thinking fr marketers 1 (866) 372-9431 www.clickpintsftware.cm Clsing the Lp: Integrate Marketing Autmatin, Lead Management

More information

Defining Sales Campaign Automation How e-mail, the Killer App, is best applied to marketing

Defining Sales Campaign Automation How e-mail, the Killer App, is best applied to marketing Defining Sales Campaign Autmatin Hw e-mail, the Killer App, is best applied t marketing Summary: Cmpanies tday are steadily adpting strategies and technlgies t reach prspects, custmers, and partners thrugh

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

Phi Kappa Sigma International Fraternity Insurance Billing Methodology

Phi Kappa Sigma International Fraternity Insurance Billing Methodology Phi Kappa Sigma Internatinal Fraternity Insurance Billing Methdlgy The Phi Kappa Sigma Internatinal Fraternity Executive Bard implres each chapter t thrughly review the attached methdlgy and plan nw t

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

HSBC Online Home Loan Application Process

HSBC Online Home Loan Application Process HSBC Online Hme Lan Applicatin Prcess Versin 1.0 Nvember 2005 Cpyright. HSBC Bank Australia Limited 2005 ALL RIGHTS RESERVED N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted,

More information

Accident Investigation

Accident Investigation Accident Investigatin APPLICABLE STANDARD: 1960.29 EMPLOYEES AFFECTED: All emplyees WHAT IS IT? Accident investigatin is the prcess f determining the rt causes f accidents, n-the-jb injuries, prperty damage,

More information

Topic: Import MS Excel data into MS Project Tips & Troubleshooting

Topic: Import MS Excel data into MS Project Tips & Troubleshooting Tpic: Imprt MS Excel data int MS Prject Tips & Trubleshting by Ellen Lehnert, MS Prject MVP, PMP, MCT, MCP www.lehnertcs.cm April, 2014 There are several things yu shuld be aware f regarding the imprt

More information

5.2.1 Passwords. Information Technology Policy. Policy. Purpose. Policy Statement. Applicability of this Policy

5.2.1 Passwords. Information Technology Policy. Policy. Purpose. Policy Statement. Applicability of this Policy Infrmatin Technlgy Plicy 5.2.1 Passwrds Plicy Area: 5.2 Security Title: 5.2.1 Passwrds Issued by: Assistant Vice-President/CIO, ITS Date Issued: 2006 July 24 Last Revisin Date: 2011 Octber 19 Apprved by:

More information

Philadelphia Pittsburgh www.elc- pa.org

Philadelphia Pittsburgh www.elc- pa.org Philadelphia Pittsburgh www.elc- pa.rg The Schl District Financial Recvery Law (Act 141) and Basic Educatin Funding Frmulas Act 141, the Schl District Financial Recvery Law ( financially distressed schl

More information

STUDIO DESIGNER. Accounting 3 Participant

STUDIO DESIGNER. Accounting 3 Participant Accunting 3 Participant Thank yu fr enrlling in Accunting 3 fr Studi Designer and Studi Shwrm. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them

More information

Design for securability Applying engineering principles to the design of security architectures

Design for securability Applying engineering principles to the design of security architectures Design fr securability Applying engineering principles t the design f security architectures Amund Hunstad Phne number: + 46 13 37 81 18 Fax: + 46 13 37 85 50 Email: amund@fi.se Jnas Hallberg Phne number:

More information

WRHA Health Interpreter Guidelines 1 for Message Relay, Reminder Call and Conference Call

WRHA Health Interpreter Guidelines 1 for Message Relay, Reminder Call and Conference Call WRHA Health Interpreter Training Prgram WRHA Health Interpreter Guidelines 1 fr Message Relay, Reminder Call and Cnference Call 2011 1 Develped by Dnna Jyette, Jyette Cnsulting Services, adapted fr WRHA

More information

Identifying Disabilities in Children with Limited English Proficiency

Identifying Disabilities in Children with Limited English Proficiency Page 38 Identifying Disabilities in Children with Limited English Prficiency Alisn Beier Elementary General Educatin, Senir, Indiana University ABSTRACT Research shws there is a disprprtinal number f limited

More information

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide HarePint HelpDesk fr SharePint Fr SharePint Server 2010, SharePint Fundatin 2010 User Guide Prduct versin: 14.1.0 04/10/2013 2 Intrductin HarePint.Cm (This Page Intentinally Left Blank ) Table f Cntents

More information

Durango Merchant Services QuickBooks SyncPay

Durango Merchant Services QuickBooks SyncPay Durang Merchant Services QuickBks SyncPay Gateway Plug-In Dcumentatin April 2011 Durang-Direct.cm 866-415-2636-1 - QuickBks Gateway Plug-In Dcumentatin... - 3 - Installatin... - 3 - Initial Setup... -

More information

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ What is the Knwledge Base? - The Knwledge Base (r KB) is a searchable database in which different dcument types f technical dcumentatin are aggregated. These vary

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

CHAPTER 26: INFORMATION SEARCH

CHAPTER 26: INFORMATION SEARCH Chapter 26: Infrmatin Search CHAPTER 26: INFORMATION SEARCH AVImark allws yu t lcate r target a variety f infrmatin in yur data including clients, patients, Medical Histry, and accunting. The data can

More information

LOUISIANA TECH UNIVERSITY Division of Student Financial Aid Post Office Box 7925 Ruston, LA 71272

LOUISIANA TECH UNIVERSITY Division of Student Financial Aid Post Office Box 7925 Ruston, LA 71272 LOUISIANA TECH UNIVERSITY Divisin f Student Financial Aid Pst Office Bx 7925 Rustn, LA 71272 Dear Financial Aid Applicant, Accrding t yur 2011-2012 Student Aid Reprt (SAR), yu did nt include any parental

More information

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet Custm Prtlets an unbiased review f the greatest Practice CS feature ever Andrew V. Gamet Descriptin In Practice CS, the firm can use any f the fur dashbards t quickly display relative infrmatin. The Firm,

More information

1.3. The Mean Temperature Difference

1.3. The Mean Temperature Difference 1.3. The Mean Temperature Difference 1.3.1. The Lgarithmic Mean Temperature Difference 1. Basic Assumptins. In the previus sectin, we bserved that the design equatin culd be slved much easier if we culd

More information

Health and Safety Training and Supervision

Health and Safety Training and Supervision Intrductin: Health and Safety Training and Supervisin University f Nttingham is cmmitted t maintaining and develping standards f excellence in all aspects f its business. T that end, the University aspires

More information

RECONCILIATION OF FUNDS

RECONCILIATION OF FUNDS RECONCILIATION OF FUNDS ROLES Departmental Staff f Interest Accuntants Office Managers Business Managers Prgram Assistants OVERVIEW S why d we need t recncile? Gd general business practices determine that

More information

Research Findings from the West Virginia Virtual School Spanish Program

Research Findings from the West Virginia Virtual School Spanish Program Research Findings frm the West Virginia Virtual Schl Spanish Prgram Funded by the U.S. Department f Educatin Cnducted by R0cKMAN ETAL San Francisc, CA, Chicag, IL, and Blmingtn, IN Octber 4, 2006 R0cKMAN

More information

Group 3 Flip Chart Notes

Group 3 Flip Chart Notes MDH-DLI Sympsium -- Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin Electrnic Health Care Transactins -- Nvember 5, 2014 Grup 3 Flip Chart Ntes Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin

More information

Counselor in Training Program

Counselor in Training Program Tukwila Parks and Recreatin Cunselr in Training Prgram D yu want t be a camp cunselr in the future? Then the Cunselr in Training (CIT) prgram is just fr yu! CITs wrk alng side camp cunselrs where they

More information