Cancoon2000
8th December 2006, 17:33
Hello All,

Is any one knows if possible to mark couple of records in a Multi-View-Occ form and Update the selected records only by a click of a button?

My technical problem is how to specify the selected records in the program script to updated/modify it in the main session table.

Thank you for your help.

mark_h
8th December 2006, 18:08
Something like this:

for i = 1 to filled.occ
if(mark.table(i)) then
hold.occu = hold.occu + 1
do.occ(i,store_item)
endif
endfor

Of course this only works for records displayed and marked.

Cancoon2000
8th December 2006, 21:36
Thank you very much Mark_h, your script works great. That what I am looking for........... Best Regards