go to post Udo Leimberger · Nov 2, 2022 This should help you:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...See GRANT object-privilege section
go to post Udo Leimberger · Dec 29, 2021 You can use %Library.ScrollableResultSet or Execute the query again.
go to post Udo Leimberger · Dec 16, 2019 If you have an array you can: set txt(1)="1 ... set txt(n)="n ClassMethod write(txt As %ArrayOfDataTypes) { set arg1=$get(txt(1)) ... set arg2=$get(txt(n) or set l="" for i=1:1 { set l=$order(txt(l)) quit:l="" set arg(i)=txt(l) } and call it with the array ByRef: do ..write(.txt)
go to post Udo Leimberger · Nov 26, 2019 Hey Duncan, you also can use $CLASSMETHOD or $METHOD. Follow the links for IRIS documentation.