dhruv_x0
18th January 2011, 08:19
Hi,

I m executing a baan session, after that i am selecting some record.
Now I want to perform some operation on these selected records..
How can i do that in baan iv????


Thanks

sameer.don
18th January 2011, 10:52
what kind of session is it? Maintain/Display/Update/Print?
is it that you are selecting (marking) records on a maintain/display session (with mulit occ form)? or you are executing a update/print session?

mark_h
18th January 2011, 15:29
sameer asked some good questions. Assuming it is a multi-occ session look at or search on do.occ()and mark.table(). You could do something like this:

for i = 1 to filled.occ
if(mark.table(i)) then
do.occ(i,total_order_quantity)
endif
endfor

Hitesh Shah
18th January 2011, 18:33
We have developed a generic sessions which allows multiple selection on quantities like item,itm group , project,customer etc . These sessions lets users select de-select records , select/deselect all records etc . All the selected records are stored in a custom table and marked specially with special characters ***** on screen. Once user exits from this session , the calling session has the multiple selection in his custom table . The records are specific to his login name only.

dhruv_x0
19th January 2011, 12:45
Thank s all for the reply.........
Dear Mark ur code works

Thanks