Written by

Integration Engineer at Cognosante
Question Oliver Wilms · Oct 3, 2024

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.

Comments

Jeffrey Drumm · Oct 3, 2024

Properties defined in the BPL class can be accessed as process.PropertyName, or as in your case, process.Scope.

0
Oliver Wilms  Oct 4, 2024 to Jeffrey Drumm

That works. Thank you, Jeffrey

0