No data in browser when using smartobjects with temp-tables

punterweger

New Member
When working with 9.1d you could create a temp-table and a sdo against the temp-table in tempdb.db.

To load data you would have a procedure called 'LoadTT' or some name that would create records into the temp-table. This would be in the sdo. In the sdo on initialize-object 'SetOpenonInit' to false.

You would create a fucntion in the sdo called 'OpenQuery' in the sdo. you would run 'LoadTT' then 'run super()'. This would load data into your smart browser.

From the window you could use 'Dynamic-function('openquery' in sdo-handle) on value-changed to repopulate whenever data changed.

This does not work in 10.1A. Does someone know of another method to reload data. When calling 'OpenQuery' progress freezes.
 
Top