Selection in grid

Herman

Member
Is there anyway i can use a multiple selection in a grid instead of > 2000 can i say >2000 & < 3000

thanks for your answers
Herman
 
hi
You can use "Set Selection" system function
Thnaks with regards
Bal
 
Thanks for your answer but where can i find the
Set Selection" system function

Herman
 
from what I understand he asks that can he do >2000 and <3000 in QBE (query by Example). Answer is nope you cannot do that.
 
Hi
1. Go to the form where you want to filter the records
2. In Form ER, select Dialog Initilized Event
3. From System Function Select Grid and continue with as given below using Set Selection Append Flag and Set Selection System Function:

Set Selection Append Flag(FC Grid, <Yes>)
Set Selection(FC Grid, "F5701", "CRL", <Greater Than or Equal To>, "3000", <And>)
Set Selection(FC Grid, "F5701", "CRL", <Less Than or Equal To>, "5000", <And>)

Hope this will help to solve your problem.

Regards
Bal
 
Back
Top