forked from DecisionsDev/odm-transformation-advisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-ota-report.html
736 lines (713 loc) · 31.3 KB
/
sample-ota-report.html
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ODM Repository Analysis</title>
<style>
h1, h2 {
color: #333;
font-family: Verdana, Arial, sans-serif;
}
body {
font: normal 14px Verdana, Arial, sans-serif;
}
em {
color: SaddleBrown
}
ul {
list-style-type: square;
}
p {
color: #333;
font-family: Verdana, Arial, sans-serif;
font-size: 14px;
}
p.summary-head {
display: block;
margin: 0.25rem;
padding: 10px 1rem 10px 1rem;
width: 60%;
background: linear-gradient(#333 0%, #777 100%);
font-weight: bold;
color: white;
border-radius: 5px 5px 0 0;
}
p.summary-body {
display: block;
margin: 0.25rem;
padding: 1rem;
width: 60%;
background: #EFEFEF;
}
table {
color: #333;
font-family: Consolas, Helvetica, Arial, sans-serif;
font-size: 9px;
border-collapse: collapse;
border-spacing: 0;
width: 80%;
}
td, th {
border: 0 none;
padding: 10px;
height: 30px;
}
th {
background: linear-gradient(#333 0%, #444 100%);
color: #FFF;
font-weight: bold;
height: 40px;
}
td {
background: #FAFAFA;
text-align: left;
}
tr:nth-child(even) td {
background: #EEE;
}
tr:nth-child(odd) td {
background: #FDFDFD;
}
tr:first-child th:nth-child(1) {
border-radius: 5px 0 0 0;
}
tr:first-child th:last-child {
border-radius: 0 5px 0 0;
}
</style>
</head>
<body>
<h1>ODM Repository Analysis Result</h1>
Run by <em>rtsAdmin</em> on Sunday, August 30, 2020 at 4:55 PM, against <em>http://localhost:9090/teamserver</em> (datasource default).
<h2>Findings Summary</h2>
<p>A total of 25 notable items have been found and are detailed below.</p>
<div><p class="summary-head">Group using fine-grained permissions <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">Some user groups are associated with fine-grained permissions on repository artifacts (for instance, the custom group <em>UserGroup</em> defines <em>1</em> such permissions). These fine-grained permissions are deprecated in ODM 8.10.0. The migration path is to rely on the assigned authors, testers and approvers in the release and activities from the Governance Framework. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Decision tree defined <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">Some rule projects are using Decision Trees (for example, <em>sample decision tree</em> in project <em>ota-test-governed-rules</em>). Decision Trees have been deprecated since ODM version 8.8.1. You can convert them into sparse Decision Tables or a collection of Action Rules, one per leaf in the Decision Tree.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Business rule template defined <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">Templates for Action Rules and or Decision Tables, such as template <em>sample template</em> in project <em>ota-test-governed-rules</em>, are deprecated since ODM version 8.8.1. Templates cannot be used in the Business Console of Decision Center. It is thus important to avoid using them.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">B2X code using CRE API classes <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">The B2X code for some BOM members seems to be using deprecated CRE API classes which are not usable with the Decision Engine (e.g. IlrContext). One example is <em>com.sample.Person.printInContext1</em> in project <em>ota-test-cre-rules</em>. <br><br><b>2 occurences found</b></p></div>
<br>
<div><p class="summary-head">Project using CRE <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">The use of the Classic Rule Engine (CRE) was detected in some of the rule projects (see your project <em>loanvalidation-rules</em>, for example). The CRE is deprecated since ODM version 8.9.0. Migration to the more efficient Decision Engine is recommended.<br><br><b>2 occurence found</b></p></div>
<br>
<div><p class="summary-head">Classic rule projects <span style="color:Orange;font-size:20px">🔃</span> <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">Some rule projects are organized using Classic Rule Projects (see your project <em>loanvalidation-rules</em>, for example). Classic Rule Projects are deprecated since ODM version 8.8.0. It is recommended that you migrate to projects organized as <em>Decision Services</em>. ODM provides an automated migration tool that will help you perform that project migration.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">BOM with external domain provider <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">Dynamic domains associated with external data sources (reference to a database or web service) such as <em>derbyDataBaseDomainProvider</em> used in a BOM entry from project <em>bomdomainpopulate-rules</em>, cannot be used with ODM on Cloud. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">BOM with valueEditor <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">A BOM entry for project <em>Value Editor Service</em> defines a valueEditor property that points to the class <em>sample.myeditor.editor</em>. This entails the repackaging of the Decision Center EAR, which is not supported for ODM on Cloud.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">BOM with valueInfo <span style="color:OrangeRed;font-size:20px">☁</span></p></div>
<div><p class="summary-body">A BOM entry for project <em>bomdomainpopulate-rules</em> defines a valueInfo property that points to the class <em>ilog.rules.studio.samples.bomdomainpopulate.Stock</em>. This entails the repackaging of the Decision Center EAR, which is not supported for ODM on Cloud.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Smart Folder defined <span style="color:Orange;font-size:20px">🔃</span></p></div>
<div><p class="summary-body">Some rule projects are using Smart Folders (for example, <em>Deployable Rules</em> in project <em>Miniloan Service</em>). Decision Trees have been deprecated since ODM version 8.10.0. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Business rule using priority <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Some rules found in rule projects such as <em>Loan Validation Determination</em>, are using rule priorities. While there is no issue with using rule priorities, they can make rule maintenance more difficult, especially for business users, as they can be easily overlooked, and make the understanding of the rules execution more complex. Relying on a rule flow for orchestration can sometime be a better option.<br><br><b>12 occurences found</b></p></div>
<br>
<div><p class="summary-head">Verbalization in Java format <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">BOM member verbalizations should be in natural language to make rules readable and maintainable. BOM member <em>com.sample.Person.askAbout(java.lang.String)</em> in project <em>ota-test-governed-rules</em> for example, uses a Java-like verbalization, which should be avoided. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">B2X code too long <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">The B2X code for some BOM members is too long. B2X code should ideally be one or two simple statements. If longer code is needed, it is better to define and maintain it as a XOM member. One example is <em>com.sample.Person.printInContext2</em> in project <em>ota-test-cre-rules</em>. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Project defines BOM and rules <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">It is a good practice to define the BOM and the rules in separate rule projects (see project <em>Miniloan Service</em> which defines both a BOM entry <em>miniloan</em> and rules). <br><br><b>7 occurences found</b></p></div>
<br>
<div><p class="summary-head">Project with large number of branches <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">The number of project branches and baselines in the Decision Center repository can quickly build up, reducing Decision Center's performances and taking up significant disk space. For example, we have detected that your project <em>Loan Validation Service</em> has 6 branches in the repository. You can use the ODM archive tool available in ODM version 8.9.2 to easily archive old project branches.<br><br><b>2 occurences found</b></p></div>
<br>
<div><p class="summary-head">Rule using 'else' statement <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Some Action Rules are using the 'else' statement, which can sometimes make rules difficult to debug and to maintain by Business Users. One example is rule <em>checkName</em> in project <em>Loan Validation Check</em>. <br><br><b>8 occurences found</b></p></div>
<br>
<div><p class="summary-head">Rule under root package <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">It is a good practice to define rules under a rule package, instead of directly under the root rule folder. See rule <em>rule under root</em> in project <em>ota-test-governed-rules</em> which is defined directly under the root folder.<br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Flow using different algorithms <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">All the rule tasks in a given rule flow should use the same algorithm whenever possible. For example, tasks in <em>miniloan</em> from project <em>Miniloan Service</em> are using different algorithms: check whether this is needed.<br><br><b>3 occurences found</b></p></div>
<br>
<div><p class="summary-head">Task using Rete algorithm <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Rete algorithm should be selected when inference is required in rule execution. Check its use is appropriate, for example in rule flow <em>computationFlow</em> from project <em>Loan Validation Scoring</em>.<br><br><b>5 occurences found</b></p></div>
<br>
<div><p class="summary-head">Spelling error in verbalization <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Possible spelling errors were detected in the verbalization of some BOM members, for example in project <em>Value Editor Service</em>. <br><br><b>2 occurences found</b></p></div>
<br>
<div><p class="summary-head">Multiple rules with same name <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Multiple rules, under different packages, have the same name. For example, in project <em>ota-test-governed-rules</em>, there are multiple rules with the same name <em>vague name</em>. <br><br><b>2 occurences found</b></p></div>
<br>
<div><p class="summary-head">Task using Exit Criteria <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">The use of Exit Criteria other than the default in rule tasks (see flow <em>test flow</em> in project <em>ota-test-governed-rules</em> for example) may make rule maintenance more delicate. Review its use with care. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Task using Sequential algorithm <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">FastPath is now the default algorithm: you may want to validate the need for the Sequential algorithm (e.g. in rule flow <em>test flow</em> from project <em>ota-test-governed-rules</em>).</p></div>
<br>
<div><p class="summary-head">Business rule defined from template <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Some Action Rule or Decision Tables (for example, <em>sample using template</em> in project <em>ota-test-governed-rules</em>) are defined based on templates, which are deprecated since ODM version 8.8.1. Note that these rules are not bound to follow their template when edited in the Business Console. <br><br><b>1 occurence found</b></p></div>
<br>
<div><p class="summary-head">Technical rule defined <span style="color:LightSkyBlue;font-size:20px">💁</span></p></div>
<div><p class="summary-body">Technical Rules, such as <em>initialize flow</em> in project <em>ota-test-governed-rules</em> are not visible in the Business Console by default, and can usually be rewritten as Action Rules, making them more readable and maintainable, even for technical users. <br><br><b>1 occurence found</b></p></div>
<br>
<h2>Findings Details</h2>
<p>You can copy the information below and paste it in a
spreadsheet to sort and filter.</p>
<table>
<tr>
<th>What Type</th>
<th>Where Found</th>
<th>Which Branch</th>
<th>Which Artifact</th>
<th>N/A for SaaS</th>
<th>Recommendation</th>
<th>Deprecation</th>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Check</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Check&id=brm.ActionRule%3A19%3A19&locale=en_US&datasource=jdbc%2FilogDataSource">checkName</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Check</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Check&id=brm.ActionRule%3A20%3A20&locale=en_US&datasource=jdbc%2FilogDataSource">checkAge</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Check</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Check&id=brm.ActionRule%3A21%3A21&locale=en_US&datasource=jdbc%2FilogDataSource">checkSSNdigits</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Check</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Check&id=brm.ActionRule%3A22%3A22&locale=en_US&datasource=jdbc%2FilogDataSource">checkZipcode</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Check</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Check&id=brm.ActionRule%3A23%3A23&locale=en_US&datasource=jdbc%2FilogDataSource">checkSSNareanumber</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Loan Validation Determination</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Determination&id=brm.ActionRule%3A27%3A27&locale=en_US&datasource=jdbc%2FilogDataSource">approval</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Loan Validation Determination</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Determination&id=brm.DecisionTable%3A26%3A26&locale=en_US&datasource=jdbc%2FilogDataSource">grade</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Loan Validation Determination</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Determination&id=brm.ActionRule%3A27%3A27&locale=en_US&datasource=jdbc%2FilogDataSource">approval</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Loan Validation Determination</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Determination&id=brm.ActionRule%3A29%3A29&locale=en_US&datasource=jdbc%2FilogDataSource">defaultInsurance</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Rete</td>
<td>Loan Validation Scoring</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Scoring&id=brm.Ruleflow%3A3%3A3&locale=en_US&datasource=jdbc%2FilogDataSource">computationFlow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Loan Validation Scoring</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Scoring&id=brm.ActionRule%3A33%3A33&locale=en_US&datasource=jdbc%2FilogDataSource">repayment</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Loan Validation Scoring</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Scoring&id=brm.ActionRule%3A37%3A37&locale=en_US&datasource=jdbc%2FilogDataSource">initialCorporateScore</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Rete</td>
<td>Loan Validation Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Loan+Validation+Service&id=brm.Ruleflow%3A4%3A4&locale=en_US&datasource=jdbc%2FilogDataSource">loanvalidation</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>Miniloan Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Miniloan+Service&id=brm.BOM%3A3%3A3&locale=en_US&datasource=jdbc%2FilogDataSource">miniloan</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Smart Folders</td>
<td>Miniloan Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Miniloan+Service&id=brm.SmartView%3A143%3A143&locale=en_US&datasource=jdbc%2FilogDataSource">Deployable Rules</a></td>
<td></td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Using Different Algorithms</td>
<td>Miniloan Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Miniloan+Service&id=brm.Ruleflow%3A5%3A5&locale=en_US&datasource=jdbc%2FilogDataSource">miniloan</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Rete</td>
<td>Miniloan Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Miniloan+Service&id=brm.Ruleflow%3A5%3A5&locale=en_US&datasource=jdbc%2FilogDataSource">miniloan</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.BOM%3A6%3A6&locale=en_US&datasource=jdbc%2FilogDataSource">purchase</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.ActionRule%3A51%3A51&locale=en_US&datasource=jdbc%2FilogDataSource">effective offers</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.ActionRule%3A50%3A50&locale=en_US&datasource=jdbc%2FilogDataSource">welcome</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.ActionRule%3A51%3A51&locale=en_US&datasource=jdbc%2FilogDataSource">effective offers</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>bomdomainpopulate-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=bomdomainpopulate-rules&id=brm.BOM%3A4%3A4&locale=en_US&datasource=jdbc%2FilogDataSource">domains</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>bomdomainpopulate-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=bomdomainpopulate-rules&id=brm.BOM%3A5%3A5&locale=en_US&datasource=jdbc%2FilogDataSource">model</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>ota-test-cre-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-cre-rules&id=brm.BOM%3A55%3A55&locale=en_US&datasource=jdbc%2FilogDataSource">model</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.BOM%3A54%3A54&locale=en_US&datasource=jdbc%2FilogDataSource">model for governed project</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Exit Criteria</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Ruleflow%3A47%3A47&locale=en_US&datasource=jdbc%2FilogDataSource">test flow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Different Algorithms</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Ruleflow%3A47%3A47&locale=en_US&datasource=jdbc%2FilogDataSource">test flow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Rete</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Ruleflow%3A47%3A47&locale=en_US&datasource=jdbc%2FilogDataSource">test flow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Sequential</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Ruleflow%3A47%3A47&locale=en_US&datasource=jdbc%2FilogDataSource">test flow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Decision Trees</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.DecisionTree%3A94%3A94&locale=en_US&datasource=jdbc%2FilogDataSource">sample decision tree</a></td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Rule Templates</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Template%3A38%3A38&locale=en_US&datasource=jdbc%2FilogDataSource">sample template</a></td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Technical Rules</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.TechnicalRule%3A91%3A91&locale=en_US&datasource=jdbc%2FilogDataSource">initialize flow</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Under Root</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.ActionRule%3A90%3A90&locale=en_US&datasource=jdbc%2FilogDataSource">rule under root</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Same Rule Name</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.ActionRule%3A88%3A88&locale=en_US&datasource=jdbc%2FilogDataSource">vague name</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Same Rule Name</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.ActionRule%3A95%3A95&locale=en_US&datasource=jdbc%2FilogDataSource">vague name</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rules from Template</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.ActionRule%3A89%3A96&locale=en_US&datasource=jdbc%2FilogDataSource">sample using template</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>BOM with Rules</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.BOM%3A1%3A1&locale=en_US&datasource=jdbc%2FilogDataSource">model</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Different Algorithms</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.Ruleflow%3A1%3A1&locale=en_US&datasource=jdbc%2FilogDataSource">loanvalidation</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Using Rete</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.Ruleflow%3A1%3A1&locale=en_US&datasource=jdbc%2FilogDataSource">loanvalidation</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Using Else</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.ActionRule%3A15%3A15&locale=en_US&datasource=jdbc%2FilogDataSource">approval</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.DecisionTable%3A14%3A14&locale=en_US&datasource=jdbc%2FilogDataSource">grade</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.ActionRule%3A2%3A2&locale=en_US&datasource=jdbc%2FilogDataSource">repayment</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.ActionRule%3A6%3A6&locale=en_US&datasource=jdbc%2FilogDataSource">initialCorporateScore</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.ActionRule%3A15%3A15&locale=en_US&datasource=jdbc%2FilogDataSource">approval</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Rule Priorities</td>
<td>loanvalidation-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=loanvalidation-rules&id=brm.ActionRule%3A17%3A17&locale=en_US&datasource=jdbc%2FilogDataSource">defaultInsurance</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Branch Archiving</td>
<td>Loan Validation Service</td>
<td></td>
<td>6</td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Classic Rule Engine</td>
<td></td>
<td></td>
<td>loanvalidation-rules</td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Classic Rule Projects</td>
<td></td>
<td></td>
<td>loanvalidation-rules</td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Branch Archiving</td>
<td>ota-test-governed-rules</td>
<td></td>
<td>4</td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Classic Rule Engine</td>
<td></td>
<td></td>
<td>ota-test-cre-rules</td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Fine Grained Permissions</td>
<td>UserGroup</td>
<td></td>
<td>1</td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>Using Value Editor</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.BOM%3A6%3A6&locale=en_US&datasource=jdbc%2FilogDataSource">sample.myeditor.editor</a></td>
<td>Y</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Verbalizations Spelling</td>
<td>Value Editor Service</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=Value+Editor+Service&id=brm.Vocabulary%3A6%3A6&locale=en_US&datasource=jdbc%2FilogDataSource">impl</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>External Domain Provider</td>
<td>bomdomainpopulate-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=bomdomainpopulate-rules&id=brm.BOM%3A4%3A4&locale=en_US&datasource=jdbc%2FilogDataSource">derbyDataBaseDomainProvider</a></td>
<td>Y</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Using Value Info</td>
<td>bomdomainpopulate-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=bomdomainpopulate-rules&id=brm.BOM%3A5%3A5&locale=en_US&datasource=jdbc%2FilogDataSource">ilog.rules.studio.samples.bomdomainpopulate.Stock</a></td>
<td>Y</td>
<td></td>
<td></td>
</tr>
<tr>
<td>B2X Using CRE API</td>
<td>ota-test-cre-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-cre-rules&id=brm.BOM2XOMMapping%3A53%3A53&locale=en_US&datasource=jdbc%2FilogDataSource">com.sample.Person.printInContext1</a></td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>B2X Using CRE API</td>
<td>ota-test-cre-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-cre-rules&id=brm.BOM2XOMMapping%3A53%3A53&locale=en_US&datasource=jdbc%2FilogDataSource">com.sample.Person.printInContext2</a></td>
<td>Y</td>
<td></td>
<td>Y</td>
</tr>
<tr>
<td>B2X Code Size</td>
<td>ota-test-cre-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-cre-rules&id=brm.BOM2XOMMapping%3A53%3A53&locale=en_US&datasource=jdbc%2FilogDataSource">com.sample.Person.printInContext2</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Verbalizations Spelling</td>
<td>ota-test-cre-rules</td>
<td>[current]</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-cre-rules&id=brm.Vocabulary%3A55%3A55&locale=en_US&datasource=jdbc%2FilogDataSource">printincontext</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
<tr>
<td>Java Verbalization</td>
<td>ota-test-governed-rules</td>
<td>Spring Release</td>
<td><a href="http://localhost:9090/teamserver/faces/explore/details.jsp?project=ota-test-governed-rules&id=brm.Vocabulary%3A54%3A54&locale=en_US&datasource=jdbc%2FilogDataSource">com.sample.Person.askAbout(java.lang.String)</a></td>
<td></td>
<td>Y</td>
<td></td>
</tr>
</table>
</body>
</html>