|
|
| Author |
Message |
Anand78
Active User
Joined: 06 Mar 2006 Posts: 51 Location: PUNE
|
|
|
|
Hi All,
Please help me how to handle less than or equal to condition in search all.
SEARCH ALL GROSS-DISC-TBLE
AT END
MOVE 'N' TO GROSS-DISC-ENTRY
WHEN FFH-SEQUENCE-NUMBER = GRS-FEE-SEQ (GRS-IDX)
AND FFH-TABLE-RECID = GRS-FEE-RECID (GRS-IDX)
AND GRS-FEE-PROD (GRS-IDX) >= 75
MOVE 'Y' TO GROSS-DISC-ENTRY
END-SEARCH. |
|
| Back to top |
|
 |
References
|
Posted: Wed May 07, 2008 9:56 am Post subject: Re: Handle less than or equal to condition in search all |
 |
|
|
 |
nabarundas
New User
Joined: 21 Jun 2007 Posts: 19 Location: pune
|
|
|
|
Hi Anand78,
| Quote: |
| AND GRS-FEE-PROD (GRS-IDX) >= 75 |
We can't use '>=' in SEARCH ALL only we can use '=' . If your requirement is to use '>=' then go for SEARCH not SEARCH ALL.
Regards |
|
| Back to top |
|
 |
sri_mf
Active User
Joined: 31 Aug 2006 Posts: 169 Location: At my Desk
|
|
| Back to top |
|
 |
|
|