B 
		
				
			
		Bharat
Guest
I use below non indexed field query in order to see srt file in my system. But I am not sure this file is generating. I am using 10.2B version.
	
	
	
		
Continue reading...
				
			
		Code:
	
	DEFINE QUERY qcust FOR customer   SCROLLING.
OPEN QUERY qcust FOR EACH customer WHERE comments CONTAINS "customer" 
                                   OR comments CONTAINS "C.O.D.".
 REPEAT:
  GET NEXT qcust.
    IF NOT AVAILABLE customer THEN LEAVE.
      DISPLAY customer EXCEPT comments WITH FRAME q-frame 13000 DOWN.
 END.
	Continue reading...