Queues: Q1: "START": Initial bucket for all applications. Q2: "Incomplete": Applications still needing information wait here. Q3: "Complete": Applications ready to process wait here. Q4: "Credit Approval": Applications needing credit approval wait here. Q5: "Fulfillment": Tasks awaiting fulfillment wait here. Q6: "DONE": Completed tasks sit here until deleted/archived/etc. Rules: R1: "?Form completed?" Input queues (Q1) Move item to Q2 if missing any of: (Name, Phone, Address, Product Selected) R2: "?Big order?" Input queues (Q3) Move item to Q4 if value_of(Product Selected) > $500 R3: "?Form completed?" Input queues (Q1, Q2) Move item to Q3 unless missing any of: (Name, Phone, Address, Product Selected) R4: "?Approved?" Input queues (Q4) Move item to Q5 if approved R5: "?Rejected?" Input queues (Q4) Move item to Q6 if !approved ... etc. ...