hello ,
my dataset is defined on clint side , i m passing it to server side with
by-reference , at server side i m tring to save data to database but there is problem,
how use FOR EACH statment if we have handle of TEMP-Table.
Grab the Temp-table's buffer using the DEFAULT-BUFFER-HANDLE syntax, then create a dynamic query against that buffer..
...or you could have the server side received the dataset into a static structure. There's nothing about BY-REFERENCE which means it must be dynamic.
Incidentally, passing a parameter BY-REFERENCE will still pass the whole dataset if it's an AppServer call. This is required as the AppServer has a different memory space. That's the real reason that you want to define the parameter as a dataset and not as a handle.