A Catalog of Business Logic Tables
Broadly speaking, logic tables will fit into a couple of basic types. In this chapter, we identify four types of logic tables:
Simple lookup table
Input table with multiple parameters (decision table)
Compound decision table
Expression decision table
For each of these types, we will explore what they look like, discuss when they may be applicable, and step through some of the implementation details for proper implementations.
Simple Lookup Table
Lookup tables are often overlooked as a repository for business logic. Often they are viewed as nothing ...