I would like to store "rules' in a database column so that I can retrieve the rule and run it. The rule can contain a combination of static text and function calls I would like to run.
Example:
following info would be in a database column.
"Get some info: + of_getdata() + here is the info"
I would then retrieve it into a string variable and would like to run it as if was being built as a string like below.
ls_string = "Get some info: " + of_getdata() + " here is the results"
Is there some function or option Similar to Evaluate in a datawindow or Exec Immediate for SQL.
Any Ideas?
Dave V.
ls_data = lds_ds.Describe( "Evaluate('" + ls_yourvariable + " ', 1)")