Premahari
27th February 2019, 08:29
Hi,i have one customization it will process selected order. But i want to select multiple orders and process. When i select multiple records the form command is disabled it's allowing for only one order. Can anyone tell how to process multiple records.
Thanks in advance

tmannais
27th February 2019, 12:56
Which form command you are using?

Ajesh
28th February 2019, 14:36
In the Form Command details, you can find a field named COmmand Availability @ the End. It should be ticked "One Record Selected" in your case. CHange it to ALl the time selected

Premahari
1st March 2019, 07:07
Thanks for your reply. I changed the form command from one record selected to all. Still not processing anything. Processing through update session i have used sel.num.selected () but it's returning zero. It has to show number of records selected.

Ajesh
1st March 2019, 09:44
Whats your TIV ??

Ajesh
1st March 2019, 11:35
Try this type of Code(From Programmers guide) in the function in which you were calling.



for counter = 1 to filled.occ
if mark.table(counter) then
restore.rcd.main(counter)
do.it()
endif
endfor

Premahari
4th March 2019, 07:32
My TIV is 2200