Create - and use - custom setting in BPL
I try to add custom setting in BPL process by adding parameter SETTINGS = "Scope" and property Scope As %String. But how do I access instance property in BPL process? I get error that method or property Scope is not found.
Discussion (2)2
Comments
Properties defined in the BPL class can be accessed as process.PropertyName, or as in your case, process.Scope.
That works. Thank you, Jeffrey