T
Tim Kuehn
Guest
I was in a .p file and wanted to call an IP in the .p like so: run SomeIPName(BUFFER tt_name). Normally I'd have a DEFINE PARAMETER BUFFER tt_name FOR tt_name. and I'd be good to go. But not in this case where tt_name was a REFERENCE-ONLY tt because they can't be parameters. In this case I passed a ROWID to SomeIPName and then did this: run SomeIPName(rowid(tt_name)). PROCEDURE tt_name: define input parameter rowid_parameter_name as rowid no-undo. DEFINE BUFFER tt_name FOR tt_name. FIND tt_name WHERE ROWID(tt_name) = rowid_parameter_name. and it didn't work..
Continue reading...
Continue reading...