HI,
I am trying to create business rule engine in my application where rules are given an ID and stored in DB table. Rule's coding done using nvo function. I wanted to see if I can store that function name in a DB table and call it dynamically depending which rule is configured. Is this possible in PowerBuilder?
Table structure more like
Tbale - RuleId, RuleName, PBFunction
Values - 1, ClaimNoReq, nvo_ruleengine.ClaimNoRequired()
Call the above function for rule id 1.
Thanks.