saumya
13th November 2009, 06:10
Hi all,

I have marked two records in my display session :

for j = 1 to filled.occ
if(mark.table(j)) then
do.occ(j, check.all.marked)
endif
endfor

but for all occurance, its reading only first record selected.
Plz help.

saumya
13th November 2009, 06:29
i want to read two marked record and process them

sameer.don
13th November 2009, 07:18
can u post your code,
this code is not sufficient
--
alternately you can achieve this as follows:
|** Code:
do.all.occ(check.all.marked)
.
.
.
Fucntions:
function check.all.marked()
{
if(mark.table(actual.occ)) then
|* Your Code here
endif
}

saumya
13th November 2009, 10:32
thanks.

I already resolve this. I was checking record inside wrong place.
for j = 1 to filled.occ
if(mark.table(j)) then
|i was checking here. but when checked inside
function check.all.marked, it works.
do.occ(j, check.all.marked)
if data.incomp = true then
choice.again()
endif
endif
endfor